Adjusted to use new TQStringVariantMap type.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/1/head
Michele Calgaro 6 years ago
parent aeadadeb0f
commit 4d73ba8bd7
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -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())

@ -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())

@ -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(","));

Loading…
Cancel
Save