summaryrefslogtreecommitdiffstats
path: root/ksim/ksimpref.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
commit625904bd3097f9749450428904ca14ff2531824d (patch)
treea45c43d5de71cb720078fa1272a4339815a919be /ksim/ksimpref.cpp
parent6335dc55802871b5a43492f217b6edbb420204c4 (diff)
downloadtdeutils-625904bd3097f9749450428904ca14ff2531824d.tar.gz
tdeutils-625904bd3097f9749450428904ca14ff2531824d.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/ksimpref.cpp')
-rw-r--r--ksim/ksimpref.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksim/ksimpref.cpp b/ksim/ksimpref.cpp
index b379540..e5bb44a 100644
--- a/ksim/ksimpref.cpp
+++ b/ksim/ksimpref.cpp
@@ -37,9 +37,9 @@
#include <tqframe.h>
KSim::ConfigDialog::ConfigDialog(KSim::Config *config,
- TQWidget *tqparent, const char *name)
+ TQWidget *parent, const char *name)
: KDialogBase(TreeList, i18n("Configure"),
- Help | Ok | Apply | Close, Ok, tqparent, name, true, true)
+ Help | Ok | Apply | Close, Ok, parent, name, true, true)
{
resize(466, 363);
setShowIconsInTreeList(true);
@@ -93,7 +93,7 @@ KSim::ConfigDialog::ConfigDialog(KSim::Config *config,
connect(this, TQT_SIGNAL(applyClicked()), TQT_SLOT(savePrefs()));
connect(this, TQT_SIGNAL(okClicked()), TQT_SLOT(closePrefs()));
connect(this, TQT_SIGNAL(closeClicked()), TQT_SLOT(loadPluginConfig()));
- connect(tqparent, TQT_SIGNAL(reload()), TQT_SLOT(reload()));
+ connect(parent, TQT_SIGNAL(reload()), TQT_SLOT(reload()));
KSim::PluginList::ConstIterator it;
const KSim::PluginList &pluginList = KSim::PluginLoader::self().pluginList();
@@ -127,7 +127,7 @@ void KSim::ConfigDialog::removePage(const TQCString &name)
}
TQWidget *frame = plugin.configPage()->parentWidget();
- // reparent the widget if the tqparent is not null
+ // reparent the widget if the parent is not null
if (frame) {
plugin.configPage()->hide();
plugin.configPage()->reparent(0, TQPoint(0, 0), false);