summaryrefslogtreecommitdiffstats
path: root/src/modules/system
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
commit72aaee9802d447ee21340b011856b9b355a58f1a (patch)
treef97a68e4f75e6c25c8492e03fdfe6983fb0aa199 /src/modules/system
parent5d03948cd3558c613fae1fad109635f860babcbb (diff)
downloadkvirc-72aaee9802d447ee21340b011856b9b355a58f1a.tar.gz
kvirc-72aaee9802d447ee21340b011856b9b355a58f1a.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kvirc@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/modules/system')
-rw-r--r--src/modules/system/plugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/system/plugin.cpp b/src/modules/system/plugin.cpp
index 5891c39c..cb711aaf 100644
--- a/src/modules/system/plugin.cpp
+++ b/src/modules/system/plugin.cpp
@@ -397,7 +397,7 @@ bool KviPluginManager::findPlugin(TQString& szPath)
bool KviPluginManager::isPluginLoaded(const TQString& pSingleName)
{
- KviPlugin * p = m_pPluginDict->tqfind(pSingleName);
+ KviPlugin * p = m_pPluginDict->find(pSingleName);
if (!p)
return false;
else
@@ -422,6 +422,6 @@ bool KviPluginManager::loadPlugin(const TQString& szPluginPath)
KviPlugin * KviPluginManager::getPlugin(const TQString& szPluginPath)
{
- KviPlugin * p = m_pPluginDict->tqfind(szPluginPath);
+ KviPlugin * p = m_pPluginDict->find(szPluginPath);
return p;
} \ No newline at end of file