[grisbi-cvs] grisbi/src utils_files.c,1.45,1.46
Gunee
guneemwelloeux at users.sourceforge.net
Tue Dec 1 23:34:55 CET 2009
- Previous message: [grisbi-cvs] grisbi/src accueil.c, 1.218, 1.218.2.1 balance_estimate_tab.c, 1.23, 1.23.2.1 etats_affiche.c, 1.108, 1.108.2.1 etats_calculs.c, 1.133, 1.133.2.1 export_csv.c, 1.25, 1.25.2.1 file_obfuscate.c, 1.12, 1.12.2.1 gsb_account.c, 1.47, 1.47.2.1 gsb_account_property.c, 1.48, 1.48.2.1 gsb_autofunc.c, 1.24, 1.24.2.1 gsb_currency.c, 1.54, 1.54.2.1 gsb_currency_link_config.c, 1.18, 1.18.2.1 gsb_data_account.c, 1.91, 1.91.2.1 gsb_data_archive_store.c, 1.16, 1.16.2.1 gsb_data_budget.c, 1.54, 1.54.2.1 gsb_data_category.c, 1.71, 1.71.2.1 gsb_data_currency_link.c, 1.17, 1.17.2.1 gsb_data_partial_balance.c, 1.10, 1.10.2.1 gsb_data_payee.c, 1.50, 1.50.2.1 gsb_data_reconcile.c, 1.20, 1.20.2.1 gsb_data_report_amout_comparison.c, 1.14, 1.14.2.1 gsb_data_scheduled.c, 1.30, 1.30.2.1 gsb_data_transaction.c, 1.76, 1.76.2.1 gsb_debug.c, 1.14, 1.14.2.1 gsb_file_load.c, 1.192, 1.192.2.1 gsb_file_save.c, 1.143, 1.143.2.1 gsb_form.c, 1.137, 1.137.2.1 gsb_form_transaction.c, 1.51, 1.51.2.1 gsb_real.c, 1.59, 1.59.2.1 gsb_reconcile.c, 1.42, 1.42.2.1 gsb_rec oncile_config.c, 1.30, 1.30.2.1 gsb_reconcile_list.c, 1.10, 1.10.2.1 gsb_scheduler_list.c, 1.74, 1.74.2.1 gsb_transactions_list.c, 1.189, 1.189.2.1 gsb_transactions_list_sort.c, 1.21, 1.21.2.1 import.c, 1.308, 1.308.2.1 meta_budgetary.c, 1.37, 1.37.2.1 meta_categories.c, 1.48, 1.48.2.1 meta_payee.c, 1.35, 1.35.2.1 transaction_list.c, 1.52, 1.52.2.1 utils_editables.c, 1.32, 1.32.2.1
- Next message: [grisbi-cvs] grisbi/src utils_files.c,1.45,1.45.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/grisbi/grisbi/src
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv19381
Modified Files:
utils_files.c
Log Message:
Fixed charset problem with import filenames on Windows
Index: utils_files.c
===================================================================
RCS file: /cvsroot/grisbi/grisbi/src/utils_files.c,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- utils_files.c 3 Nov 2009 17:32:07 -0000 1.45
+++ utils_files.c 1 Dec 2009 22:34:53 -0000 1.46
@@ -280,7 +280,11 @@
*/
G_MODULE_EXPORT FILE* utf8_fopen(const gchar* utf8filename,gchar* mode)
{
- return fopen(g_filename_from_utf8(utf8filename,-1,NULL,NULL,NULL),mode);
+#ifdef _MSC_VER
+ return fopen(g_locale_from_utf8(utf8filename, -1, NULL, NULL, NULL),mode);
+#else
+ return fopen(g_filename_from_utf8(utf8filename, -1, NULL, NULL, NULL),mode);
+#endif
}
- Previous message: [grisbi-cvs] grisbi/src accueil.c, 1.218, 1.218.2.1 balance_estimate_tab.c, 1.23, 1.23.2.1 etats_affiche.c, 1.108, 1.108.2.1 etats_calculs.c, 1.133, 1.133.2.1 export_csv.c, 1.25, 1.25.2.1 file_obfuscate.c, 1.12, 1.12.2.1 gsb_account.c, 1.47, 1.47.2.1 gsb_account_property.c, 1.48, 1.48.2.1 gsb_autofunc.c, 1.24, 1.24.2.1 gsb_currency.c, 1.54, 1.54.2.1 gsb_currency_link_config.c, 1.18, 1.18.2.1 gsb_data_account.c, 1.91, 1.91.2.1 gsb_data_archive_store.c, 1.16, 1.16.2.1 gsb_data_budget.c, 1.54, 1.54.2.1 gsb_data_category.c, 1.71, 1.71.2.1 gsb_data_currency_link.c, 1.17, 1.17.2.1 gsb_data_partial_balance.c, 1.10, 1.10.2.1 gsb_data_payee.c, 1.50, 1.50.2.1 gsb_data_reconcile.c, 1.20, 1.20.2.1 gsb_data_report_amout_comparison.c, 1.14, 1.14.2.1 gsb_data_scheduled.c, 1.30, 1.30.2.1 gsb_data_transaction.c, 1.76, 1.76.2.1 gsb_debug.c, 1.14, 1.14.2.1 gsb_file_load.c, 1.192, 1.192.2.1 gsb_file_save.c, 1.143, 1.143.2.1 gsb_form.c, 1.137, 1.137.2.1 gsb_form_transaction.c, 1.51, 1.51.2.1 gsb_real.c, 1.59, 1.59.2.1 gsb_reconcile.c, 1.42, 1.42.2.1 gsb_rec oncile_config.c, 1.30, 1.30.2.1 gsb_reconcile_list.c, 1.10, 1.10.2.1 gsb_scheduler_list.c, 1.74, 1.74.2.1 gsb_transactions_list.c, 1.189, 1.189.2.1 gsb_transactions_list_sort.c, 1.21, 1.21.2.1 import.c, 1.308, 1.308.2.1 meta_budgetary.c, 1.37, 1.37.2.1 meta_categories.c, 1.48, 1.48.2.1 meta_payee.c, 1.35, 1.35.2.1 transaction_list.c, 1.52, 1.52.2.1 utils_editables.c, 1.32, 1.32.2.1
- Next message: [grisbi-cvs] grisbi/src utils_files.c,1.45,1.45.2.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs
mailing list