summaryrefslogtreecommitdiffstats
path: root/kexi/kexidb/utils.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
commit04766b207afba7961d4d802313e426f5a2fbef63 (patch)
treec888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /kexi/kexidb/utils.cpp
parentb6edfe41c9395f2e20784cbf0e630af6426950a3 (diff)
downloadkoffice-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/kexidb/utils.cpp')
-rw-r--r--kexi/kexidb/utils.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/kexidb/utils.cpp b/kexi/kexidb/utils.cpp
index d3d1361c0..9fa9ca018 100644
--- a/kexi/kexidb/utils.cpp
+++ b/kexi/kexidb/utils.cpp
@@ -382,10 +382,10 @@ void ConnectionTestThread::run()
m_dlg->error(0);
}
-ConnectionTestDialog::ConnectionTestDialog(TQWidget* tqparent,
+ConnectionTestDialog::ConnectionTestDialog(TQWidget* parent,
const KexiDB::ConnectionData& data,
KexiDB::MessageHandler& msgHandler)
- : KProgressDialog(tqparent, "testconn_dlg",
+ : KProgressDialog(parent, "testconn_dlg",
i18n("Test Connection"), i18n("<qt>Testing connection to <b>%1</b> database server...</qt>")
.tqarg(data.serverInfoString(true)), true /*modal*/)
, m_thread(new ConnectionTestThread(this, data))
@@ -483,10 +483,10 @@ void ConnectionTestDialog::slotCancel()
KProgressDialog::slotCancel();
}
-void KexiDB::connectionTestDialog(TQWidget* tqparent, const KexiDB::ConnectionData& data,
+void KexiDB::connectionTestDialog(TQWidget* parent, const KexiDB::ConnectionData& data,
KexiDB::MessageHandler& msgHandler)
{
- ConnectionTestDialog dlg(tqparent, data, msgHandler);
+ ConnectionTestDialog dlg(parent, data, msgHandler);
dlg.exec();
}