diff options
Diffstat (limited to 'kipi-plugins/htmlexport/listthemeparameter.cpp')
-rw-r--r-- | kipi-plugins/htmlexport/listthemeparameter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kipi-plugins/htmlexport/listthemeparameter.cpp b/kipi-plugins/htmlexport/listthemeparameter.cpp index 8bae470..e2bb23e 100644 --- a/kipi-plugins/htmlexport/listthemeparameter.cpp +++ b/kipi-plugins/htmlexport/listthemeparameter.cpp @@ -49,8 +49,8 @@ void ListThemeParameter::init(const TQCString& internalName, const KConfigBase* AbstractThemeParameter::init(internalName, configFile); for (int pos=0;; ++pos) { - TQString valueKey = TQString("%1%2").tqarg(ITEM_VALUE_KEY).tqarg(pos); - TQString captionKey = TQString("%1%2").tqarg(ITEM_CAPTION_KEY).tqarg(pos); + TQString valueKey = TQString("%1%2").arg(ITEM_VALUE_KEY).arg(pos); + TQString captionKey = TQString("%1%2").arg(ITEM_CAPTION_KEY).arg(pos); if (!configFile->hasKey(valueKey) || !configFile->hasKey(captionKey)) { break; } |