mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-29 04:04:07 -06:00
Update function name to match its g2 implementation.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12036 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
061dc52771
commit
bcfe8adfcb
@ -1,5 +1,10 @@
|
||||
2005-11-25 David Hampton <hampton@employees.org>
|
||||
|
||||
* src/gnome-utils/gnc-date-edit.[ch]:
|
||||
* src/gnome/window-reconcile.c:
|
||||
* src/gnome-search/search-date.c: Update function name to match
|
||||
its g2 implementation.
|
||||
|
||||
* src/gnome-utils/dialog-commodity.c: Consistently use the string
|
||||
"currency" in the commodity picker window instead of the string
|
||||
ISO4217. Previous behavior wasn't consistent. Fixes 167388.
|
||||
|
@ -253,7 +253,7 @@ editable_enters (GNCSearchCoreType *fe)
|
||||
|
||||
priv = _PRIVATE(fi);
|
||||
if (priv->entry)
|
||||
gnc_date_editable_enters (GNC_DATE_EDIT (priv->entry), TRUE);
|
||||
gnc_date_activates_default (GNC_DATE_EDIT (priv->entry), TRUE);
|
||||
}
|
||||
|
||||
static GtkWidget *
|
||||
|
@ -980,7 +980,7 @@ gnc_date_edit_get_flags (GNCDateEdit *gde)
|
||||
* clicking the button that has the default.
|
||||
**/
|
||||
void
|
||||
gnc_date_editable_enters (GNCDateEdit *gde, gboolean state)
|
||||
gnc_date_activates_default (GNCDateEdit *gde, gboolean state)
|
||||
{
|
||||
if (!gde)
|
||||
return;
|
||||
|
@ -128,5 +128,5 @@ void gnc_date_edit_set_flags (GNCDateEdit *gde,
|
||||
GNCDateEditFlags flags);
|
||||
int gnc_date_edit_get_flags (GNCDateEdit *gde);
|
||||
|
||||
void gnc_date_editable_enters (GNCDateEdit *gde, gboolean state);
|
||||
void gnc_date_activates_default (GNCDateEdit *gde, gboolean state);
|
||||
#endif
|
||||
|
@ -689,7 +689,7 @@ startRecnWindow(GtkWidget *parent, Account *account,
|
||||
/* need to get a callback on date changes to update the recn balance */
|
||||
g_signal_connect ( G_OBJECT (date_value), "date_changed",
|
||||
G_CALLBACK (gnc_start_recn_date_changed), (gpointer) &data );
|
||||
gnc_date_editable_enters(GNC_DATE_EDIT(date_value), TRUE);
|
||||
gnc_date_activates_default(GNC_DATE_EDIT(date_value), TRUE);
|
||||
|
||||
print_info.use_symbol = 0;
|
||||
gnc_amount_edit_set_print_info (GNC_AMOUNT_EDIT (end_value), print_info);
|
||||
|
Loading…
Reference in New Issue
Block a user