Scott Oonk's patch to activate forward button in XML import druid after having decided on each ambiguous string. Fix #342050.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14098 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler 2006-05-17 21:54:45 +00:00
parent 4ea3753242
commit e306f46288
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2006-05-17 Andreas Köhler <andi5.py@gmx.net>
* src/gnome-utils/druid-gnc-xml-import.c: Scott Oonk's patch to
activate forward button in XML import druid after having decided
on each ambiguous string. Fix #342050.
2006-05-16 Derek Atkins <derek@ihtfp.com>
* lib/libqof/qof/gnc-date.c:

View File

@ -1194,6 +1194,7 @@ gxi_string_combo_changed_cb (GtkComboBox *combo, GncXmlImportData *data)
encoding, for the first time. previous selection is invalid now */
data->n_unassigned--;
gxi_update_summary_label (data);
gxi_update_conversion_forward (data);
}
}
else {
@ -1206,6 +1207,7 @@ gxi_string_combo_changed_cb (GtkComboBox *combo, GncXmlImportData *data)
encoding, for the first time. no previous selection */
data->n_unassigned--;
gxi_update_summary_label (data);
gxi_update_conversion_forward (data);
}
}
}
@ -1219,6 +1221,7 @@ gxi_string_combo_changed_cb (GtkComboBox *combo, GncXmlImportData *data)
default encoding */
data->n_unassigned++;
gxi_update_summary_label (data);
gxi_update_conversion_forward (data);
}
}
/* the missing else clause means pure ignorance of this dialog ;-) */