diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-01 19:06:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-01 19:06:17 +0900 |
commit | 4d73ba8bd7ef0ebe1d1d376350c47fc1d16e8c98 (patch) | |
tree | a99eff7965b11d2e9d9dfb920d90d29edda7af60 | |
parent | aeadadeb0f4680e978bf950e265993f362370160 (diff) | |
download | kipi-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.cpp | 2 | ||||
-rw-r--r-- | kipi-plugins/picasawebexport/picasawebwindow.cpp | 2 | ||||
-rw-r--r-- | 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 <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(",")); |