Scheduled Transaction Dialog Patch

Matt Martin matt.martin@ieee.org
Mon, 29 Oct 2001 22:23:59 -0700


This is a multi-part message in MIME format.
--------------81A13FB4D3042CEB123D5644
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Just a quick one,

The scheduled transaction dialog wasn't stepping through all of the
transactions.
Changing a "break" to a "continue" seems to do the trick.

Cheers.

--

 Matt Martin
matt.martin@ieee.org
600 West Grove Parkway  #1042,Tempe, AZ, 85283
Visit my homepage at http://matthewmartin.org
Or give me a call: (480) 775 2660



--------------81A13FB4D3042CEB123D5644
Content-Type: text/plain; charset=us-ascii;
 name="schedtrans.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="schedtrans.patch"

--- gnucash/src/gnome/dialog-sxsincelast.c	Mon Oct 29 22:11:27 2001
+++ /home/matt/dialog-sxsincelast.c	Mon Oct 29 22:09:57 2001
@@ -1012,7 +1012,7 @@ sxsincelast_populate( sxSinceLastData *s
                                     &sxsld->toRemoveList );
 
                 if ( instanceList == NULL ) {
-                        break;
+                        continue;
                 }
 
                 xaccSchedXactionGetAutoCreate( sx, &autocreateState,

--------------81A13FB4D3042CEB123D5644--