summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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);
}