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 | 04766b207afba7961d4d802313e426f5a2fbef63 (patch) | |
tree | c888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kword/KWMailMergeDataBase.cpp | |
parent | b6edfe41c9395f2e20784cbf0e630af6426950a3 (diff) | |
download | koffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kword/KWMailMergeDataBase.cpp')
-rw-r--r-- | kword/KWMailMergeDataBase.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kword/KWMailMergeDataBase.cpp b/kword/KWMailMergeDataBase.cpp index 244c2006..e477f502 100644 --- a/kword/KWMailMergeDataBase.cpp +++ b/kword/KWMailMergeDataBase.cpp @@ -326,7 +326,7 @@ int KWMailMergeDataBase::version() { KWMailMergeChoosePluginDialog::KWMailMergeChoosePluginDialog( KTrader::OfferList offers ) : KDialogBase( Plain, i18n( "Mail Merge Setup" ), Ok | Cancel, Ok, - /*tqparent*/ 0, "", true ), pluginOffers( offers ) + /*parent*/ 0, "", true ), pluginOffers( offers ) { TQWidget *back = plainPage(); TQVBoxLayout *tqlayout = new TQVBoxLayout( back, 0, spacingHint() ); @@ -382,8 +382,8 @@ void KWMailMergeChoosePluginDialog::pluginChanged( int pos ) * ******************************************************************/ -KWMailMergeConfigDialog::KWMailMergeConfigDialog(TQWidget *tqparent,KWMailMergeDataBase *db) - : KDialogBase(Plain, i18n( "Mail Merge Setup" ), Close, Close, tqparent, "", true ) +KWMailMergeConfigDialog::KWMailMergeConfigDialog(TQWidget *parent,KWMailMergeDataBase *db) + : KDialogBase(Plain, i18n( "Mail Merge Setup" ), Close, Close, parent, "", true ) { db_=db; TQWidget *back = plainPage(); @@ -450,7 +450,7 @@ void KWMailMergeConfigDialog::enableDisableEdit() void KWMailMergeConfigDialog::slotEditClicked() {db_->action=KWSLEdit; - if (db_->plugin) db_->plugin->showConfigDialog((TQWidget*)tqparent(),KWSLEdit); + if (db_->plugin) db_->plugin->showConfigDialog((TQWidget*)parent(),KWSLEdit); } void KWMailMergeConfigDialog::slotCreateClicked() @@ -482,7 +482,7 @@ void KWMailMergeConfigDialog::slotOpenClicked() void KWMailMergeConfigDialog::slotPreviewClicked() { db_->action=KWSLMergePreview; - KMainWindow *mw=dynamic_cast<KMainWindow*>(((TQWidget *)tqparent())->tqtopLevelWidget()); + KMainWindow *mw=dynamic_cast<KMainWindow*>(((TQWidget *)parent())->tqtopLevelWidget()); if (mw) { KAction *ac=mw->actionCollection()->action(KStdAction::stdName(KStdAction::PrintPreview)); @@ -509,9 +509,9 @@ KWMailMergeConfigDialog::~KWMailMergeConfigDialog() * ******************************************************************/ -KWMailMergeVariableInsertDia::KWMailMergeVariableInsertDia( TQWidget *tqparent, KWMailMergeDataBase *db ) +KWMailMergeVariableInsertDia::KWMailMergeVariableInsertDia( TQWidget *parent, KWMailMergeDataBase *db ) : KDialogBase( Plain, i18n( "Mail Merge - Variable Name" ), - Ok | Cancel, Ok, tqparent, "", true ) + Ok | Cancel, Ok, parent, "", true ) { m_db=db; TQWidget *page = plainPage(); |