Fix to register xfer field order.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2293 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas
2000-05-10 11:08:12 +00:00
parent d21a781482
commit 96e312fd44
2 changed files with 9 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2000-05-10 Dave Peticolas <peticola@cs.ucdavis.edu>
* src/register/splitreg.c (configLayout): swap mirrored xfer from
and xfer to field in the transaction line of the ledgers.
2000-05-09 Dave Peticolas <peticola@cs.ucdavis.edu>
* src/gnome/dialog-add.c (gnc_ui_accWindow_create_account): insert

View File

@@ -474,8 +474,8 @@ configLayout (SplitRegister *reg)
FANCY (DATE, date, 0, 0);
FANCY (NUM, num, 1, 0);
FANCY (DESC, desc, 2, 0);
FANCY (XTO, xto, 3, 0);
FANCY (XFRM, mxfrm, 4, 0);
FANCY (XTO, mxfrm, 3, 0);
FANCY (XFRM, xto, 4, 0);
BASIC (RECN, recn, 5, 0);
FANCY (DEBT, debit, 6, 0);
FANCY (CRED, credit, 7, 0);
@@ -579,8 +579,8 @@ configLayout (SplitRegister *reg)
FANCY (DATE, date, 0, 0);
FANCY (NUM, num, 1, 0);
FANCY (DESC, desc, 2, 0);
FANCY (XTO, xto, 3, 0);
FANCY (XFRM, mxfrm, 4, 0);
FANCY (XTO, mxfrm, 3, 0);
FANCY (XFRM, xto, 4, 0);
BASIC (RECN, recn, 5, 0);
FANCY (DEBT, debit, 6, 0);
FANCY (CRED, credit, 7, 0);