summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/htmlexport/galleryinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/htmlexport/galleryinfo.cpp')
-rw-r--r--kipi-plugins/htmlexport/galleryinfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kipi-plugins/htmlexport/galleryinfo.cpp b/kipi-plugins/htmlexport/galleryinfo.cpp
index e529213..e84c008 100644
--- a/kipi-plugins/htmlexport/galleryinfo.cpp
+++ b/kipi-plugins/htmlexport/galleryinfo.cpp
@@ -38,7 +38,7 @@ TQString GalleryInfo::getThemeParameterValue(
const TQString& defaultValue) const
{
TQString groupName = THEME_GROUP_PREFIX + theme;
- KConfigGroupSaver saver(config(), groupName);
+ TDEConfigGroupSaver saver(config(), groupName);
return config()->readEntry(parameter, defaultValue);
}
@@ -49,10 +49,10 @@ void GalleryInfo::setThemeParameterValue(
const TQString& value)
{
// FIXME: This is hackish, but config() is const :'(
- KConfig* localConfig = const_cast<KConfig*>(config());
+ TDEConfig* localConfig = const_cast<TDEConfig*>(config());
TQString groupName = THEME_GROUP_PREFIX + theme;
- KConfigGroupSaver saver(localConfig, groupName);
+ TDEConfigGroupSaver saver(localConfig, groupName);
return localConfig->writeEntry(parameter, value);
}