summaryrefslogtreecommitdiffstats
path: root/kmymoney2/dialogs/knewinvestmentwizard.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit902ba103f2215bcefa22d62b1c9138aa4b88891c (patch)
tree63ef88424b9be33a31e5a8de61343fb8d7633937 /kmymoney2/dialogs/knewinvestmentwizard.cpp
parent7e51b6d5ddc01fc3bc69f30bc5d3933a7709dbf2 (diff)
downloadkmymoney-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/dialogs/knewinvestmentwizard.cpp')
-rw-r--r--kmymoney2/dialogs/knewinvestmentwizard.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kmymoney2/dialogs/knewinvestmentwizard.cpp b/kmymoney2/dialogs/knewinvestmentwizard.cpp
index 3a963f2..85e6cc9 100644
--- a/kmymoney2/dialogs/knewinvestmentwizard.cpp
+++ b/kmymoney2/dialogs/knewinvestmentwizard.cpp
@@ -45,8 +45,8 @@
#include "../converter/webpricequote.h"
#include "../kmymoneyutils.h"
-KNewInvestmentWizard::KNewInvestmentWizard( TQWidget *tqparent, const char *name ) :
- KNewInvestmentWizardDecl( tqparent, name )
+KNewInvestmentWizard::KNewInvestmentWizard( TQWidget *parent, const char *name ) :
+ KNewInvestmentWizardDecl( parent, name )
{
init1();
slotCheckPage(TQString());
@@ -55,8 +55,8 @@ KNewInvestmentWizard::KNewInvestmentWizard( TQWidget *tqparent, const char *name
connect(m_investmentSymbol, TQT_SIGNAL(lineChanged(const TQString&)), this, TQT_SLOT(slotCheckForExistingSymbol(const TQString&)));
}
-KNewInvestmentWizard::KNewInvestmentWizard( const MyMoneyAccount& acc, TQWidget *tqparent, const char *name ) :
- KNewInvestmentWizardDecl( tqparent, name ),
+KNewInvestmentWizard::KNewInvestmentWizard( const MyMoneyAccount& acc, TQWidget *parent, const char *name ) :
+ KNewInvestmentWizardDecl( parent, name ),
m_account(acc)
{
setCaption(i18n("Investment detail wizard"));
@@ -75,8 +75,8 @@ KNewInvestmentWizard::KNewInvestmentWizard( const MyMoneyAccount& acc, TQWidget
}
-KNewInvestmentWizard::KNewInvestmentWizard( const MyMoneySecurity& security, TQWidget *tqparent, const char *name ) :
- KNewInvestmentWizardDecl( tqparent, name ),
+KNewInvestmentWizard::KNewInvestmentWizard( const MyMoneySecurity& security, TQWidget *parent, const char *name ) :
+ KNewInvestmentWizardDecl( parent, name ),
m_security(security)
{
setCaption(i18n("Security detail wizard"));
@@ -299,8 +299,8 @@ void KNewInvestmentWizard::createObjects(const TQString& parentId)
}
if(m_account.id().isEmpty()) {
- MyMoneyAccount tqparent = file->account(parentId);
- file->addAccount(m_account, tqparent);
+ MyMoneyAccount parent = file->account(parentId);
+ file->addAccount(m_account, parent);
} else
file->modifyAccount(m_account);
}