diff options
Diffstat (limited to 'tdegtk/tdegtk-theme.cpp')
-rw-r--r-- | tdegtk/tdegtk-theme.cpp | 4 |
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); } |