Add toolbar icons for Postpone and Cancel. Fixes 114267.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13697 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2006-03-24 22:16:54 +00:00
parent 61e3a57b84
commit 13aaa7ae85
3 changed files with 14 additions and 3 deletions

View File

@@ -1,3 +1,12 @@
2006-03-24 David Hampton <david@hampton-pc.rainbolthampton.net>
* 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 <jsled@asynchronous.org>
* src/gnome/dialog-scheduledxaction.c (delete_button_clicked):

View File

@@ -42,5 +42,7 @@
<toolitem name="AccountOpenAccount" action="AccountOpenAccountAction"/>
<separator name="ToolbarSep3"/>
<toolitem name="RecnFinish" action="RecnFinishAction"/>
<toolitem name="RecnPostpone" action="RecnPostponeAction"/>
<toolitem name="RecnCancel" action="RecnCancelAction"/>
</toolbar>
</ui>

View File

@@ -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"), "<control>f",
{ "RecnFinishAction", GTK_STOCK_YES, N_("_Finish"), "<control>f",
N_("Finish the reconciliation of this account"),
G_CALLBACK(recnFinishCB)},
{ "RecnPostponeAction", NULL, N_("_Postpone"), "<control>p",
{ "RecnPostponeAction", GTK_STOCK_GO_BACK, N_("_Postpone"), "<control>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)},