summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-06-01 19:06:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-06-01 19:06:17 +0900
commit4d73ba8bd7ef0ebe1d1d376350c47fc1d16e8c98 (patch)
treea99eff7965b11d2e9d9dfb920d90d29edda7af60
parentaeadadeb0f4680e978bf950e265993f362370160 (diff)
downloadkipi-plugins-4d73ba8bd7ef0ebe1d1d376350c47fc1d16e8c98.tar.gz
kipi-plugins-4d73ba8bd7ef0ebe1d1d376350c47fc1d16e8c98.zip
Adjusted to use new TQStringVariantMap type.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--kipi-plugins/flickrexport/flickrwindow.cpp2
-rw-r--r--kipi-plugins/picasawebexport/picasawebwindow.cpp2
-rw-r--r--kipi-plugins/sendimages/sendimages.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/kipi-plugins/flickrexport/flickrwindow.cpp b/kipi-plugins/flickrexport/flickrwindow.cpp
index c306d9e..d67a9a0 100644
--- a/kipi-plugins/flickrexport/flickrwindow.cpp
+++ b/kipi-plugins/flickrexport/flickrwindow.cpp
@@ -467,7 +467,7 @@ void FlickrWindow::slotUser1()
}
// Tags from the database
- TQMap <TQString, TQVariant> attribs = info.attributes();
+ TQStringVariantMap attribs = info.attributes();
TQStringList tagsFromDatabase;
if(m_exportHostTagsCheckBox->isChecked())
diff --git a/kipi-plugins/picasawebexport/picasawebwindow.cpp b/kipi-plugins/picasawebexport/picasawebwindow.cpp
index 76fb780..d3f8fb3 100644
--- a/kipi-plugins/picasawebexport/picasawebwindow.cpp
+++ b/kipi-plugins/picasawebexport/picasawebwindow.cpp
@@ -464,7 +464,7 @@ void PicasawebWindow::slotUploadImages()
}
//Tags from the database
- TQMap <TQString, TQVariant> attribs = info.attributes();
+ TQStringVariantMap attribs = info.attributes();
TQStringList tagsFromDatabase;
if(m_exportApplicationTags->isChecked())
diff --git a/kipi-plugins/sendimages/sendimages.cpp b/kipi-plugins/sendimages/sendimages.cpp
index 5cd9f47..cfd100e 100644
--- a/kipi-plugins/sendimages/sendimages.cpp
+++ b/kipi-plugins/sendimages/sendimages.cpp
@@ -342,7 +342,7 @@ void SendImages::makeCommentsFile(void)
//Tags from the database
if (m_interface->hasFeature(KIPI::HostSupportsTags))
{
- TQMap <TQString, TQVariant> attribs=info.attributes();
+ TQStringVariantMap attribs=info.attributes();
if (attribs["tags"].asStringList().count() > 0)
{
ImageCommentsText += i18n("Tags: %2\n").arg(attribs["tags"].asStringList().join(","));