summaryrefslogtreecommitdiffstats
path: root/kommander/pluginmanager
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:39:24 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:39:24 -0600
commitf9ced3b3f13f3136ef63c33ef163042010d6e80b (patch)
tree293ce93dfb0dcfd79f83674116d7b3bc56f29af2 /kommander/pluginmanager
parent29df04c24350cc76a41e2410d1c92445f9338b98 (diff)
downloadtdewebdev-f9ced3b3f13f3136ef63c33ef163042010d6e80b.tar.gz
tdewebdev-f9ced3b3f13f3136ef63c33ef163042010d6e80b.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kommander/pluginmanager')
-rw-r--r--kommander/pluginmanager/pluginmanager.cpp2
-rw-r--r--kommander/pluginmanager/pluginmanager.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/kommander/pluginmanager/pluginmanager.cpp b/kommander/pluginmanager/pluginmanager.cpp
index 01ffacf5..e5de0841 100644
--- a/kommander/pluginmanager/pluginmanager.cpp
+++ b/kommander/pluginmanager/pluginmanager.cpp
@@ -21,7 +21,7 @@
PluginManager::PluginManager()
{
- m_cfg = new KConfig("kommanderrc");
+ m_cfg = new TDEConfig("kommanderrc");
m_list = new TQStringList(m_cfg->readListEntry("plugins"));
}
diff --git a/kommander/pluginmanager/pluginmanager.h b/kommander/pluginmanager/pluginmanager.h
index 28a7a66e..47d0fa87 100644
--- a/kommander/pluginmanager/pluginmanager.h
+++ b/kommander/pluginmanager/pluginmanager.h
@@ -19,7 +19,7 @@
#include <tqstringlist.h>
-class KConfig;
+class TDEConfig;
class PluginManager
{
@@ -45,7 +45,7 @@ private:
TQString libraryName(const TQString& plugin) const;
TQStringList* m_list;
- KConfig *m_cfg;
+ TDEConfig *m_cfg;
};