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 /kexi/main/kexifinddialog.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 'kexi/main/kexifinddialog.cpp')
-rw-r--r-- | kexi/main/kexifinddialog.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kexi/main/kexifinddialog.cpp b/kexi/main/kexifinddialog.cpp index 6f451aef..0aa0cd35 100644 --- a/kexi/main/kexifinddialog.cpp +++ b/kexi/main/kexifinddialog.cpp @@ -48,18 +48,18 @@ class KexiFindDialog::Private } //! Connects action \a action with appropriate signal \a member //! and optionally adds accel that will receive shortcut for \a action - //! at global scope of the dialog \a tqparent. - void setActionAndAccel(KAction *action, TQWidget* tqparent, const char* member) + //! at global scope of the dialog \a parent. + void setActionAndAccel(KAction *action, TQWidget* parent, const char* member) { if (!action) return; - TQObject::connect(tqparent, member, action, TQT_SLOT(activate())); + TQObject::connect(parent, member, action, TQT_SLOT(activate())); if (action->shortcut().isNull()) return; - TQAccel *accel = new TQAccel(tqparent); // we want to handle dialog-wide shortcut as well + TQAccel *accel = new TQAccel(parent); // we want to handle dialog-wide shortcut as well accels.append( accel ); accel->connectItem( - accel->insertItem( action->shortcut() ), tqparent, member ); + accel->insertItem( action->shortcut() ), parent, member ); } TQStringList lookInColumnNames; @@ -75,8 +75,8 @@ class KexiFindDialog::Private //------------------------------------------ -KexiFindDialog::KexiFindDialog( TQWidget* tqparent ) - : KexiFindDialogBase(tqparent, "KexiFindDialog", false/*!modal*/, +KexiFindDialog::KexiFindDialog( TQWidget* parent ) + : KexiFindDialogBase(parent, "KexiFindDialog", false/*!modal*/, TQt::WType_Dialog|TQt::WStyle_NormalBorder|TQt::WStyle_Title |TQt::WStyle_SysMenu|TQt::WStyle_Customize|TQt::WStyle_Tool) , d( new Private() ) |