summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/galleryexport/gallerytalker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/galleryexport/gallerytalker.cpp')
-rw-r--r--kipi-plugins/galleryexport/gallerytalker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kipi-plugins/galleryexport/gallerytalker.cpp b/kipi-plugins/galleryexport/gallerytalker.cpp
index 4b2fda8..8a36c19 100644
--- a/kipi-plugins/galleryexport/gallerytalker.cpp
+++ b/kipi-plugins/galleryexport/gallerytalker.cpp
@@ -509,9 +509,9 @@ void GalleryTalker::parseResponseListPhotos(const TQByteArray &data)
}
else
{
- // Boris the Gallery default URL tqcontains "=" char. So we will split the string only from the first "=" char
+ // Boris the Gallery default URL contains "=" char. So we will split the string only from the first "=" char
TQStringList strlist = TQStringList();
- strlist << line.left(line.tqfind('=')) << line.mid(line.tqfind('=')+1);
+ strlist << line.left(line.find('=')) << line.mid(line.find('=')+1);
if (strlist.count() >= 2)
{
TQString key = strlist[0];
@@ -540,7 +540,7 @@ void GalleryTalker::parseResponseListPhotos(const TQByteArray &data)
}
else if (key.startsWith("baseurl"))
{
- albumURL = value.tqreplace("\\","");
+ albumURL = value.replace("\\","");
}
}
}