diff --git a/ChangeLog b/ChangeLog index 6c7b4f8c63..6bc94f667a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2006-03-24 David Hampton + + * src/gnome/ui/gnc-reconcile-window-ui.xml: + * src/gnome/window-reconcile.c: Add toolbar icons for Postpone and + Cancel. Fixes 114267. + + * configure.in: List the optional components that will be compiled + in the summary at the end of the configure run. + 2006-03-23 Joshua Sled * src/gnome/dialog-scheduledxaction.c (delete_button_clicked): diff --git a/src/gnome/ui/gnc-reconcile-window-ui.xml b/src/gnome/ui/gnc-reconcile-window-ui.xml index 6070b374f0..5e38bc8e56 100644 --- a/src/gnome/ui/gnc-reconcile-window-ui.xml +++ b/src/gnome/ui/gnc-reconcile-window-ui.xml @@ -42,5 +42,7 @@ + + diff --git a/src/gnome/window-reconcile.c b/src/gnome/window-reconcile.c index f7b15819d4..980db6a82c 100644 --- a/src/gnome/window-reconcile.c +++ b/src/gnome/window-reconcile.c @@ -1899,13 +1899,13 @@ static GtkActionEntry recnWindow_actions [] = N_("Change the reconcile information " "including statement date and ending balance."), G_CALLBACK (gnc_ui_reconcile_window_change_cb) }, - { "RecnFinishAction", GTK_STOCK_GO_DOWN, N_("_Finish"), "f", + { "RecnFinishAction", GTK_STOCK_YES, N_("_Finish"), "f", N_("Finish the reconciliation of this account"), G_CALLBACK(recnFinishCB)}, - { "RecnPostponeAction", NULL, N_("_Postpone"), "p", + { "RecnPostponeAction", GTK_STOCK_GO_BACK, N_("_Postpone"), "p", N_("Postpone the reconciliation of this account"), G_CALLBACK(recnPostponeCB)}, - { "RecnCancelAction", NULL, N_("_Cancel"), NULL, + { "RecnCancelAction", GTK_STOCK_CANCEL, N_("_Cancel"), NULL, N_("Cancel the reconciliation of this account"), G_CALLBACK(recnCancelCB)},