remove catagories

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@363 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-01-05 02:00:55 +00:00
parent 93bc71914b
commit 9fe1e142d4
4 changed files with 1 additions and 5 deletions

View File

@ -62,7 +62,7 @@
* description ::== String *
* memo ::== String *
* action ::== String *
* catagory ::== int *
* catagory ::== int (obsolete) *
* reconciled ::== char *
* amount ::== double *
* share_price ::== double *

View File

@ -606,7 +606,6 @@ char * xaccReadQIFTransaction (int fd, Account *acc)
trans -> description = 0x0; /* string */
trans -> memo = 0x0; /* string */
trans -> action = 0x0; /* string */
trans -> catagory = 0; /* category is int */
trans -> damount = 0.0; /* amount is double */
trans -> share_price= 1.0; /* share_price is double */
trans -> reconciled = NREC; /* reconciled is byte */

View File

@ -130,7 +130,6 @@ initTransaction( Transaction * trans )
trans->description = XtNewString("");
trans->memo = XtNewString("");
trans->action = XtNewString("");
trans->catagory = 0;
trans->splits = (Split **) _malloc (sizeof (Split *));
trans->splits[0] = NULL;
@ -190,7 +189,6 @@ implemented and tested.
trans->description = 0x0;
trans->memo = 0x0;
trans->action = 0x0;
trans->catagory = 0;
trans->reconciled = NREC;
trans->damount = 0.0;
trans->share_price = 1.0;

View File

@ -470,7 +470,6 @@ xferCB( Widget mw, XtPointer cd, XtPointer cb )
trans->memo = XmTextGetString(xferData->memo);
trans->description = XmTextGetString(xferData->desc);
trans->catagory = 0;
trans->reconciled = NREC;
/* make note of which accounts this was transfered from & to */