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); }