summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/traninfo.h
authordrw <drw>2002-12-04 02:12:25 (UTC)
committer drw <drw>2002-12-04 02:12:25 (UTC)
commitd000538b68b3411a409e829c4e68f42f9646b940 (patch) (side-by-side diff)
tree72abee0785a595ef9d5edf9ecd20743a9ff16559 /noncore/apps/checkbook/traninfo.h
parent9b23bf789c15bcc84dabc400f16fa38ff3a34ebd (diff)
downloadopie-d000538b68b3411a409e829c4e68f42f9646b940.zip
opie-d000538b68b3411a409e829c4e68f42f9646b940.tar.gz
opie-d000538b68b3411a409e829c4e68f42f9646b940.tar.bz2
Abstracted checkbook storage, added new main window display/configuration options.
Diffstat (limited to 'noncore/apps/checkbook/traninfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/traninfo.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/noncore/apps/checkbook/traninfo.h b/noncore/apps/checkbook/traninfo.h
index 59cfe14..5f67262 100644
--- a/noncore/apps/checkbook/traninfo.h
+++ b/noncore/apps/checkbook/traninfo.h
@@ -53,18 +53,18 @@ class TranInfo
const QString &category() const { return c; }
float amount() const { return a; }
float fee() const { return f; }
- const QString &number() const { return cn; }
+ const QString &number() const { return cn; }
const QString &notes() const { return n; }
void setDesc( const QString &desc ) { d = desc; }
- void setDate( const QDate &date ) { td = date; }
- void setWithdrawal( bool withdrawal ) { w = withdrawal; }
+ void setDate( const QDate &date ) { td = date; }
+ void setWithdrawal( bool withdrawal ) { w = withdrawal; }
void setType( const QString &type ) { t = type; }
void setCategory( const QString &cat ) { c = cat; }
- void setAmount( float amount ) { a = amount; }
- void setFee( float fee ) { f = fee; }
- void setNumber( const QString &num ) { cn = num; }
- void setNotes( const QString &notes ) { n = notes; }
+ void setAmount( float amount ) { a = amount; }
+ void setFee( float fee ) { f = fee; }
+ void setNumber( const QString &num ) { cn = num; }
+ void setNotes( const QString &notes ) { n = notes; }
void write( Config *, int );
@@ -87,6 +87,4 @@ class TranInfoList : public QList<TranInfo>
int compareItems( QCollection::Item, QCollection::Item );
};
-//typedef TranList<TranInfo> TranInfoList;
-
#endif