summaryrefslogtreecommitdiffstats
path: root/tdegtk
diff options
context:
space:
mode:
Diffstat (limited to 'tdegtk')
-rw-r--r--tdegtk/tdegtk-theme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdegtk/tdegtk-theme.cpp b/tdegtk/tdegtk-theme.cpp
index cb0cb6f..4314aa7 100644
--- a/tdegtk/tdegtk-theme.cpp
+++ b/tdegtk/tdegtk-theme.cpp
@@ -178,13 +178,13 @@ int showIconsOnButtons;
int toolbarStyle;
TQString tdeConfigValue(const TQString& section, const TQString& name, const TQString& def) {
- KConfig currentConfig;
+ TDEConfig currentConfig;
currentConfig.setGroup(section);
return currentConfig.readEntry(name, def);
}
bool tdeBoolConfigValue(const TQString& section, const TQString& name, bool def) {
- KConfig currentConfig;
+ TDEConfig currentConfig;
currentConfig.setGroup(section);
return currentConfig.readBoolEntry(name, def);
}