diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 15:59:52 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 15:59:52 -0600 |
commit | 8c5a639e214aa9c24ee2cbaec83f428ed46ffa64 (patch) | |
tree | 3cd4df65f0a57477130894aef4c5970161853460 /kmymoney2/wizards/newuserwizard | |
parent | beb601ba284823aad53b04213fdd7741c4832de5 (diff) | |
download | kmymoney-8c5a639e214aa9c24ee2cbaec83f428ed46ffa64.tar.gz kmymoney-8c5a639e214aa9c24ee2cbaec83f428ed46ffa64.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kmymoney2/wizards/newuserwizard')
-rw-r--r-- | kmymoney2/wizards/newuserwizard/knewuserwizard.h | 2 | ||||
-rw-r--r-- | kmymoney2/wizards/newuserwizard/knewuserwizard_p.h | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/kmymoney2/wizards/newuserwizard/knewuserwizard.h b/kmymoney2/wizards/newuserwizard/knewuserwizard.h index 5de23dd..0124b77 100644 --- a/kmymoney2/wizards/newuserwizard/knewuserwizard.h +++ b/kmymoney2/wizards/newuserwizard/knewuserwizard.h @@ -65,7 +65,7 @@ class Wizard : public KMyMoneyWizard friend class FilePage; Q_OBJECT - TQ_OBJECT + public: Wizard(TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags flags = 0); /** diff --git a/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h b/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h index ed7036f..8431f06 100644 --- a/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h +++ b/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h @@ -44,7 +44,7 @@ namespace NewUserWizard { class IntroPage : public KIntroPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: IntroPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; @@ -58,7 +58,7 @@ public: class GeneralPage : public UserInfo, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: GeneralPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; @@ -77,7 +77,7 @@ protected slots: class CurrencyPage : public Currency, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: CurrencyPage(Wizard* parent, const char* name = 0); void enterPage(void); @@ -90,7 +90,7 @@ public: class AccountPage : public KAccountPageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: AccountPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; @@ -106,7 +106,7 @@ public: class CategoriesPage : public Accounts, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: CategoriesPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; @@ -121,7 +121,7 @@ public: class PreferencePage : public KPreferencePageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: PreferencePage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; @@ -135,7 +135,7 @@ public: class FilePage : public KFilePageDecl, public WizardPage<Wizard> { Q_OBJECT - TQ_OBJECT + public: FilePage(Wizard* parent, const char* name = 0); |