[Gnucash-changes] r13697 - gnucash/trunk - Add toolbar icons for Postpone and Cancel. Fixes 114267.

David Hampton hampton at cvs.gnucash.org
Fri Mar 24 17:16:55 EST 2006


Author: hampton
Date: 2006-03-24 17:16:54 -0500 (Fri, 24 Mar 2006)
New Revision: 13697
Trac: http://svn.gnucash.org/trac/changeset/13697

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/gnome/ui/gnc-reconcile-window-ui.xml
   gnucash/trunk/src/gnome/window-reconcile.c
Log:
Add toolbar icons for Postpone and Cancel.  Fixes 114267.


Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2006-03-24 22:14:00 UTC (rev 13696)
+++ gnucash/trunk/ChangeLog	2006-03-24 22:16:54 UTC (rev 13697)
@@ -1,3 +1,12 @@
+2006-03-24  David Hampton  <david at 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 at asynchronous.org>
 
 	* src/gnome/dialog-scheduledxaction.c (delete_button_clicked):

Modified: gnucash/trunk/src/gnome/ui/gnc-reconcile-window-ui.xml
===================================================================
--- gnucash/trunk/src/gnome/ui/gnc-reconcile-window-ui.xml	2006-03-24 22:14:00 UTC (rev 13696)
+++ gnucash/trunk/src/gnome/ui/gnc-reconcile-window-ui.xml	2006-03-24 22:16:54 UTC (rev 13697)
@@ -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>

Modified: gnucash/trunk/src/gnome/window-reconcile.c
===================================================================
--- gnucash/trunk/src/gnome/window-reconcile.c	2006-03-24 22:14:00 UTC (rev 13696)
+++ gnucash/trunk/src/gnome/window-reconcile.c	2006-03-24 22:16:54 UTC (rev 13697)
@@ -1899,13 +1899,13 @@
 	  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)},
 



More information about the gnucash-changes mailing list