diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 902ba103f2215bcefa22d62b1c9138aa4b88891c (patch) | |
tree | 63ef88424b9be33a31e5a8de61343fb8d7633937 /kmymoney2/wizards/newuserwizard | |
parent | 7e51b6d5ddc01fc3bc69f30bc5d3933a7709dbf2 (diff) | |
download | kmymoney-902ba103f2215bcefa22d62b1c9138aa4b88891c.tar.gz kmymoney-902ba103f2215bcefa22d62b1c9138aa4b88891c.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmymoney2/wizards/newuserwizard')
-rw-r--r-- | kmymoney2/wizards/newuserwizard/knewuserwizard.cpp | 4 | ||||
-rw-r--r-- | kmymoney2/wizards/newuserwizard/knewuserwizard.h | 2 | ||||
-rw-r--r-- | kmymoney2/wizards/newuserwizard/knewuserwizard_p.h | 14 |
3 files changed, 10 insertions, 10 deletions
diff --git a/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp b/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp index d8607fc..c1159d9 100644 --- a/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp +++ b/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp @@ -68,8 +68,8 @@ using namespace NewUserWizard; static int stepCount; -NewUserWizard::Wizard::Wizard(TQWidget *tqparent, const char *name, bool modal, WFlags flags) : - KMyMoneyWizard(tqparent, name, modal, flags), +NewUserWizard::Wizard::Wizard(TQWidget *parent, const char *name, bool modal, WFlags flags) : + KMyMoneyWizard(parent, name, modal, flags), m_introPage(0) { bool isFirstTime = KMyMoneyGlobalSettings::firstTimeRun(); diff --git a/kmymoney2/wizards/newuserwizard/knewuserwizard.h b/kmymoney2/wizards/newuserwizard/knewuserwizard.h index 25e010f..5de23dd 100644 --- a/kmymoney2/wizards/newuserwizard/knewuserwizard.h +++ b/kmymoney2/wizards/newuserwizard/knewuserwizard.h @@ -67,7 +67,7 @@ class Wizard : public KMyMoneyWizard Q_OBJECT TQ_OBJECT public: - Wizard(TQWidget* tqparent = 0, const char* name = 0, bool modal = false, WFlags flags = 0); + Wizard(TQWidget* parent = 0, const char* name = 0, bool modal = false, WFlags flags = 0); /** * Returns the personal information of the user (e.g. name, address, etc.) */ diff --git a/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h b/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h index ea1910a..ed7036f 100644 --- a/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h +++ b/kmymoney2/wizards/newuserwizard/knewuserwizard_p.h @@ -46,7 +46,7 @@ class IntroPage : public KIntroPageDecl, public WizardPage<Wizard> Q_OBJECT TQ_OBJECT public: - IntroPage(Wizard* tqparent, const char* name = 0); + IntroPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; }; @@ -60,7 +60,7 @@ class GeneralPage : public UserInfo, public WizardPage<Wizard> Q_OBJECT TQ_OBJECT public: - GeneralPage(Wizard* tqparent, const char* name = 0); + GeneralPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; protected slots: @@ -79,7 +79,7 @@ class CurrencyPage : public Currency, public WizardPage<Wizard> Q_OBJECT TQ_OBJECT public: - CurrencyPage(Wizard* tqparent, const char* name = 0); + CurrencyPage(Wizard* parent, const char* name = 0); void enterPage(void); KMyMoneyWizardPage* nextPage(void) const; }; @@ -92,7 +92,7 @@ class AccountPage : public KAccountPageDecl, public WizardPage<Wizard> Q_OBJECT TQ_OBJECT public: - AccountPage(Wizard* tqparent, const char* name = 0); + AccountPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; virtual bool isComplete(void) const; @@ -108,7 +108,7 @@ class CategoriesPage : public Accounts, public WizardPage<Wizard> Q_OBJECT TQ_OBJECT public: - CategoriesPage(Wizard* tqparent, const char* name = 0); + CategoriesPage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; TQValueList<MyMoneyTemplate> selectedTemplates(void) const; }; @@ -123,7 +123,7 @@ class PreferencePage : public KPreferencePageDecl, public WizardPage<Wizard> Q_OBJECT TQ_OBJECT public: - PreferencePage(Wizard* tqparent, const char* name = 0); + PreferencePage(Wizard* parent, const char* name = 0); KMyMoneyWizardPage* nextPage(void) const; }; @@ -137,7 +137,7 @@ class FilePage : public KFilePageDecl, public WizardPage<Wizard> Q_OBJECT TQ_OBJECT public: - FilePage(Wizard* tqparent, const char* name = 0); + FilePage(Wizard* parent, const char* name = 0); virtual bool isComplete(void) const; }; |