diff options
Diffstat (limited to 'kmymoney2/widgets/kmymoneyaccounttreebudget.h')
-rw-r--r-- | kmymoney2/widgets/kmymoneyaccounttreebudget.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/kmymoney2/widgets/kmymoneyaccounttreebudget.h b/kmymoney2/widgets/kmymoneyaccounttreebudget.h index 86c1b07..470a8f8 100644 --- a/kmymoney2/widgets/kmymoneyaccounttreebudget.h +++ b/kmymoney2/widgets/kmymoneyaccounttreebudget.h @@ -21,8 +21,8 @@ // ---------------------------------------------------------------------------- // QT Includes -#include <qtimer.h> -class QDragObject; +#include <tqtimer.h> +class TQDragObject; // ---------------------------------------------------------------------------- // KDE Includes @@ -39,12 +39,13 @@ class KMyMoneyAccountTreeBudgetItem; class KMyMoneyAccountTreeBudget : public KMyMoneyAccountTreeBase { Q_OBJECT + TQ_OBJECT public: - KMyMoneyAccountTreeBudget(QWidget* parent = 0, const char *name = 0); + KMyMoneyAccountTreeBudget(TQWidget* tqparent = 0, const char *name = 0); virtual ~KMyMoneyAccountTreeBudget() {} public slots: - void slotSelectObject(const QListViewItem* i); + void slotSelectObject(const TQListViewItem* i); }; @@ -56,7 +57,7 @@ public: * Constructor to be used to construct an account * entry object for a budget. * - * @param parent pointer to the parent KAccountListView object this entry should be + * @param tqparent pointer to the tqparent KAccountListView object this entry should be * added to. * @param account const reference to MyMoneyAccount for which * the KListView entry is constructed @@ -67,13 +68,13 @@ public: * @param security const reference to the security used to show the value. Usually * one should pass MyMoneyFile::baseCurrency() here. */ - KMyMoneyAccountTreeBudgetItem(KMyMoneyAccountTreeBudgetItem *parent, const MyMoneyAccount& account, const MyMoneyBudget& budget, const QValueList<MyMoneyPrice>& price = QValueList<MyMoneyPrice>(), const MyMoneySecurity& security = MyMoneySecurity()); + KMyMoneyAccountTreeBudgetItem(KMyMoneyAccountTreeBudgetItem *tqparent, const MyMoneyAccount& account, const MyMoneyBudget& budget, const TQValueList<MyMoneyPrice>& price = TQValueList<MyMoneyPrice>(), const MyMoneySecurity& security = MyMoneySecurity()); /** * Constructor to be used to construct an account * entry object for a budget. * - * @param parent pointer to the parent KAccountListView object this entry should be + * @param tqparent pointer to the tqparent KAccountListView object this entry should be * added to. * @param account const reference to MyMoneyAccount for which * the KListView entry is constructed @@ -84,7 +85,7 @@ public: * @param name name of the account to be used instead of the one stored with @p account * If empty, the one stored with @p account will be used. Default: empty */ - KMyMoneyAccountTreeBudgetItem(KListView *parent, const MyMoneyAccount& account, const MyMoneyBudget &budget, const MyMoneySecurity& security = MyMoneySecurity(), const QString& name = QString()); + KMyMoneyAccountTreeBudgetItem(KListView *tqparent, const MyMoneyAccount& account, const MyMoneyBudget &budget, const MyMoneySecurity& security = MyMoneySecurity(), const TQString& name = TQString()); ~KMyMoneyAccountTreeBudgetItem(); |