summaryrefslogtreecommitdiffstats
path: root/ksim/ksimpref.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit6335dc55802871b5a43492f217b6edbb420204c4 (patch)
tree50c6c8672a52687568edea475614dfe3d98e62e5 /ksim/ksimpref.cpp
parent9b8c9f1f9e974ff0176108cfbd8852cd99ea68c8 (diff)
downloadtdeutils-6335dc55802871b5a43492f217b6edbb420204c4.tar.gz
tdeutils-6335dc55802871b5a43492f217b6edbb420204c4.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksim/ksimpref.cpp')
-rw-r--r--ksim/ksimpref.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksim/ksimpref.cpp b/ksim/ksimpref.cpp
index 9115fea..b379540 100644
--- a/ksim/ksimpref.cpp
+++ b/ksim/ksimpref.cpp
@@ -119,7 +119,7 @@ void KSim::ConfigDialog::reload()
void KSim::ConfigDialog::removePage(const TQCString &name)
{
- const KSim::Plugin &plugin = KSim::PluginLoader::self().tqfind(name);
+ const KSim::Plugin &plugin = KSim::PluginLoader::self().find(name);
if (plugin.isNull() || !plugin.configPage()) {
KMessageBox::sorry(0, i18n("Failed to remove %1's config page due to the "
"plugin not being loaded or the config page has not been created").tqarg(name.data()));
@@ -139,7 +139,7 @@ void KSim::ConfigDialog::removePage(const TQCString &name)
void KSim::ConfigDialog::createPage(const TQCString &name)
{
- const KSim::Plugin &plugin = KSim::PluginLoader::self().tqfind(name);
+ const KSim::Plugin &plugin = KSim::PluginLoader::self().find(name);
createPage(plugin);
}
@@ -193,7 +193,7 @@ void KSim::ConfigDialog::saveConfig(bool reload)
info.libName(true), item->text(0), info.location(),
findPlugin(item->text(0)).isEnabled()));
- KSim::PluginLoader::self().tqfind(info).setEnabled(item->isOn());
+ KSim::PluginLoader::self().find(info).setEnabled(item->isOn());
}
m_currentPlugins = changedPlugins;