diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 15:59:52 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 15:59:52 -0600 |
commit | 8c5a639e214aa9c24ee2cbaec83f428ed46ffa64 (patch) | |
tree | 3cd4df65f0a57477130894aef4c5970161853460 /kmymoney2/wizards/newaccountwizard | |
parent | beb601ba284823aad53b04213fdd7741c4832de5 (diff) | |
download | kmymoney-8c5a639e214aa9c24ee2cbaec83f428ed46ffa64.tar.gz kmymoney-8c5a639e214aa9c24ee2cbaec83f428ed46ffa64.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kmymoney2/wizards/newaccountwizard')
-rw-r--r-- | kmymoney2/wizards/newaccountwizard/knewaccountwizard.h | 2 | ||||
-rw-r--r-- | kmymoney2/wizards/newaccountwizard/knewaccountwizard_p.h | 22 |
2 files changed, 12 insertions, 12 deletions
diff --git a/kmymoney2/wizards/newaccountwizard/knewaccountwizard.h b/kmymoney2/wizards/newaccountwizard/knewaccountwizard.h index c288d11..414b4cd 100644 --- a/kmymoney2/wizards/newaccountwizard/knewaccountwizard.h +++ b/kmymoney2/wizards/newaccountwizard/knewaccountwizard.h @@ -67,7 +67,7 @@ class Wizard : public KMyMoneyWizard friend class AccountSummaryPage; Q_OBJECT - TQ_OBJECT + public: Wizard(TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags flags = 0); diff --git a/kmymoney2/wizards/newaccountwizard/knewaccountwizard_p.h b/kmymoney2/wizards/newaccountwizard/knewaccountwizard_p.h index 9838cff..2e0a711 100644 --- a/kmymoney2/wizards/newaccountwizard/knewaccountwizard_p.h +++ b/kmymoney2/wizards/newaccountwizard/knewaccountwizard_p.h @@ -62,7 +62,7 @@ namespace NewAccountWizard { class InstitutionPage : public KInstitutionPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: InstitutionPage(Wizard* parent, const char* name = 0); ~InstitutionPage(); @@ -92,7 +92,7 @@ private: class AccountTypePage : public KAccountTypePageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: AccountTypePage(Wizard* parent, const char* name = 0); virtual bool isComplete(void) const; @@ -126,7 +126,7 @@ private: class BrokeragePage : public KBrokeragePageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: BrokeragePage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; @@ -141,7 +141,7 @@ private slots: class CreditCardSchedulePage : public KSchedulePageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: CreditCardSchedulePage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; @@ -157,7 +157,7 @@ private slots: class GeneralLoanInfoPage : public KGeneralLoanInfoPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: GeneralLoanInfoPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; @@ -182,7 +182,7 @@ private: class LoanDetailsPage : public KLoanDetailsPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: LoanDetailsPage(Wizard* parent, const char* name = 0); void enterPage(void); @@ -216,7 +216,7 @@ private slots: class LoanPaymentPage : public KLoanPaymentPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: LoanPaymentPage(Wizard* parent, const char* name = 0); ~LoanPaymentPage(); @@ -258,7 +258,7 @@ private: class LoanSchedulePage : public KLoanSchedulePageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: LoanSchedulePage(Wizard* parent, const char* name = 0); void enterPage(void); @@ -281,7 +281,7 @@ private slots: class LoanPayoutPage : public KLoanPayoutPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: LoanPayoutPage(Wizard* parent, const char* name = 0); void enterPage(void); @@ -302,7 +302,7 @@ private slots: class HierarchyPage : public KHierarchyPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: HierarchyPage(Wizard* parent, const char* name = 0); void enterPage(void); @@ -326,7 +326,7 @@ private: class AccountSummaryPage : public KAccountSummaryPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: AccountSummaryPage(Wizard* parent, const char* name = 0); void enterPage(void); |