summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:07 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:07 -0600
commit76ce0b1e44d7105792de5733e1b147f9892a9347 (patch)
treeee538d97279534bc313066a721693c298e610159 /src
parent96c62f7e356a2d63acc8edb149821a677c4d1bc8 (diff)
downloadgtk-qt-engine-76ce0b1e44d7105792de5733e1b147f9892a9347.tar.gz
gtk-qt-engine-76ce0b1e44d7105792de5733e1b147f9892a9347.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/qt_qt_wrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt_qt_wrapper.cpp b/src/qt_qt_wrapper.cpp
index 8448087..aa37d8a 100644
--- a/src/qt_qt_wrapper.cpp
+++ b/src/qt_qt_wrapper.cpp
@@ -513,14 +513,14 @@ GdkFilterReturn gdkEventFilter(GdkXEvent *xevent, GdkEvent *gevent, gpointer dat
TQString kdeConfigValue(const TQString& section, const TQString& name, const TQString& def)
{
- KConfig currentConfig;
+ TDEConfig currentConfig;
currentConfig.setGroup(section);
return currentConfig.readEntry(name, def);
}
bool kdeBoolConfigValue(const TQString& section, const TQString& name, bool def)
{
- KConfig currentConfig;
+ TDEConfig currentConfig;
currentConfig.setGroup(section);
return currentConfig.readBoolEntry(name, def);
}