summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/traninfo.h
Side-by-side diff
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
@@ -50,24 +50,24 @@ class TranInfo
const QString &datestr();
bool withdrawal() const { return w; }
const QString &type() const { return t; }
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 );
private:
int i;
QString d;
@@ -84,9 +84,7 @@ class TranInfo
class TranInfoList : public QList<TranInfo>
{
protected:
int compareItems( QCollection::Item, QCollection::Item );
};
-//typedef TranList<TranInfo> TranInfoList;
-
#endif