diff options
author | Michele Calgaro <[email protected]> | 2023-07-20 13:36:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-24 21:24:01 +0900 |
commit | 93816e0a2c4477711497263902fe5222483da892 (patch) | |
tree | 662803755443085144e615fae1678f2755eda8fd /kmymoney2/wizards/newuserwizard | |
parent | 7a469553db421dbc62a6eca20fd81fe6fc7bb01a (diff) | |
download | kmymoney-93816e0a2c4477711497263902fe5222483da892.tar.gz kmymoney-93816e0a2c4477711497263902fe5222483da892.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 4a70f1720eb66ddeb89d4340e44c601e3613b837)
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 0124b77..68d475d 100644 --- a/kmymoney2/wizards/newuserwizard/knewuserwizard.h +++ b/kmymoney2/wizards/newuserwizard/knewuserwizard.h @@ -64,7 +64,7 @@ class Wizard : public KMyMoneyWizard friend class PreferencePage; 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 9542c07..9b44351 100644 --- a/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h +++ b/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h @@ -43,7 +43,7 @@ namespace NewUserWizard { class IntroPage : public KIntroPageDecl, public WizardPage<Wizard> { - Q_OBJECT + TQ_OBJECT public: IntroPage(Wizard* parent, const char* name = 0); @@ -57,7 +57,7 @@ public: */ class GeneralPage : public UserInfo, public WizardPage<Wizard> { - Q_OBJECT + TQ_OBJECT public: GeneralPage(Wizard* parent, const char* name = 0); @@ -76,7 +76,7 @@ protected slots: */ class CurrencyPage : public Currency, public WizardPage<Wizard> { - Q_OBJECT + TQ_OBJECT public: CurrencyPage(Wizard* parent, const char* name = 0); @@ -89,7 +89,7 @@ public: */ class AccountPage : public KAccountPageDecl, public WizardPage<Wizard> { - Q_OBJECT + TQ_OBJECT public: AccountPage(Wizard* parent, const char* name = 0); @@ -105,7 +105,7 @@ public: */ class CategoriesPage : public Accounts, public WizardPage<Wizard> { - Q_OBJECT + TQ_OBJECT public: CategoriesPage(Wizard* parent, const char* name = 0); @@ -120,7 +120,7 @@ public: */ class PreferencePage : public KPreferencePageDecl, public WizardPage<Wizard> { - Q_OBJECT + TQ_OBJECT public: PreferencePage(Wizard* parent, const char* name = 0); @@ -134,7 +134,7 @@ public: */ class FilePage : public KFilePageDecl, public WizardPage<Wizard> { - Q_OBJECT + TQ_OBJECT public: FilePage(Wizard* parent, const char* name = 0); |