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.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kipi-plugins/htmlexport/galleryinfo.cpp b/kipi-plugins/htmlexport/galleryinfo.cpp
index 26c26a3..e529213 100644
--- a/kipi-plugins/htmlexport/galleryinfo.cpp
+++ b/kipi-plugins/htmlexport/galleryinfo.cpp
@@ -21,7 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA
// Self
#include "galleryinfo.h"
-// Qt
+// TQt
// KDE
#include <kconfigbase.h>
@@ -32,26 +32,26 @@ namespace KIPIHTMLExport {
static const char* THEME_GROUP_PREFIX="Theme ";
-QString GalleryInfo::getThemeParameterValue(
- const QString& theme,
- const QString& parameter,
- const QString& defaultValue) const
+TQString GalleryInfo::getThemeParameterValue(
+ const TQString& theme,
+ const TQString& parameter,
+ const TQString& defaultValue) const
{
- QString groupName = THEME_GROUP_PREFIX + theme;
+ TQString groupName = THEME_GROUP_PREFIX + theme;
KConfigGroupSaver saver(config(), groupName);
return config()->readEntry(parameter, defaultValue);
}
void GalleryInfo::setThemeParameterValue(
- const QString& theme,
- const QString& parameter,
- const QString& value)
+ const TQString& theme,
+ const TQString& parameter,
+ const TQString& value)
{
// FIXME: This is hackish, but config() is const :'(
KConfig* localConfig = const_cast<KConfig*>(config());
- QString groupName = THEME_GROUP_PREFIX + theme;
+ TQString groupName = THEME_GROUP_PREFIX + theme;
KConfigGroupSaver saver(localConfig, groupName);
return localConfig->writeEntry(parameter, value);
}