[grisbi-cvs] grisbi/src balance_estimate_hist.c, 1.5, 1.6 import_csv.c, 1.64, 1.65
Pierre Biava
pbiava at users.sourceforge.net
Mon Feb 22 21:11:31 CET 2010
- Previous message: [grisbi-cvs] grisbi/po cs.po, 1.91, 1.92 da.po, 1.97, 1.98 el.po, 1.61, 1.62 eo.po, 1.54, 1.55 es.po, 1.164, 1.165 fa.po, 1.84, 1.85 fr.po, 1.229, 1.230 grisbi.pot, 1.132, 1.133 he.po, 1.90, 1.91 it.po, 1.90, 1.91 nl.po, 1.89, 1.90 pl.po, 1.95, 1.96 pt_BR.po, 1.92, 1.93 ro.po, 1.91, 1.92 ru.po, 1.89, 1.90 zh_CN.po, 1.85, 1.86
- Next message: [grisbi-cvs] grisbi/po es.po,1.165,1.166
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/grisbi/grisbi/src
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv28371/src
Modified Files:
balance_estimate_hist.c import_csv.c
Log Message:
fixes a bug with importing a CSV file
Index: balance_estimate_hist.c
===================================================================
RCS file: /cvsroot/grisbi/grisbi/src/balance_estimate_hist.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- balance_estimate_hist.c 21 Feb 2010 20:48:38 -0000 1.5
+++ balance_estimate_hist.c 22 Feb 2010 20:11:29 -0000 1.6
@@ -118,6 +118,7 @@
GtkWidget *button_1, *button_2;
GtkWidget *tree_view;
gchar *str_year;
+ gchar *title;
gint year;
devel_debug (NULL);
@@ -139,8 +140,12 @@
gtk_box_pack_start ( GTK_BOX ( hbox ), vbox, FALSE, FALSE, 5) ;
widget = gtk_label_new ( NULL );
- gtk_label_set_markup ( GTK_LABEL ( widget ),
- _("Please Select the data source") );
+ title = g_strdup_printf (
+ _("Please select the data source for the account: \"%s\""),
+ gsb_data_account_get_name (
+ bet_parameter_get_account_selected ( ) ) );
+ gtk_label_set_markup ( GTK_LABEL ( widget ), title );
+ g_free ( title );
gtk_box_pack_start ( GTK_BOX ( vbox ), widget, FALSE, FALSE, 5 );
/* Choix des données sources */
@@ -830,7 +835,7 @@
div = sh -> div;
div_name = bet_data_get_div_name ( div, 0, FALSE );
- account_nb = sh -> account_nb;
+ account_nb = bet_parameter_get_account_selected ( );
titre = g_object_get_data ( G_OBJECT ( bet_container ), "bet_historical_period" );
Index: import_csv.c
===================================================================
RCS file: /cvsroot/grisbi/grisbi/src/import_csv.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- import_csv.c 30 Jan 2010 08:16:49 -0000 1.64
+++ import_csv.c 22 Feb 2010 20:11:29 -0000 1.65
@@ -793,9 +793,6 @@
gtk_combo_box_set_active ( GTK_COMBO_BOX(combobox), i );
g_signal_handlers_unblock_by_func ( combobox, csv_import_combo_changed, entry );
- if ( separator )
- g_free ( separator );
-
return FALSE;
}
- Previous message: [grisbi-cvs] grisbi/po cs.po, 1.91, 1.92 da.po, 1.97, 1.98 el.po, 1.61, 1.62 eo.po, 1.54, 1.55 es.po, 1.164, 1.165 fa.po, 1.84, 1.85 fr.po, 1.229, 1.230 grisbi.pot, 1.132, 1.133 he.po, 1.90, 1.91 it.po, 1.90, 1.91 nl.po, 1.89, 1.90 pl.po, 1.95, 1.96 pt_BR.po, 1.92, 1.93 ro.po, 1.91, 1.92 ru.po, 1.89, 1.90 zh_CN.po, 1.85, 1.86
- Next message: [grisbi-cvs] grisbi/po es.po,1.165,1.166
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cvs
mailing list