From 4d73ba8bd7ef0ebe1d1d376350c47fc1d16e8c98 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 1 Jun 2019 19:06:17 +0900 Subject: [PATCH] Adjusted to use new TQStringVariantMap type. Signed-off-by: Michele Calgaro --- kipi-plugins/flickrexport/flickrwindow.cpp | 2 +- kipi-plugins/picasawebexport/picasawebwindow.cpp | 2 +- kipi-plugins/sendimages/sendimages.cpp | 2 +- 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 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 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 attribs=info.attributes(); + TQStringVariantMap attribs=info.attributes(); if (attribs["tags"].asStringList().count() > 0) { ImageCommentsText += i18n("Tags: %2\n").arg(attribs["tags"].asStringList().join(","));