summaryrefslogtreecommitdiffstats
path: root/libkipi/libkipi/imagecollectionshared.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkipi/libkipi/imagecollectionshared.cpp')
-rw-r--r--libkipi/libkipi/imagecollectionshared.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libkipi/libkipi/imagecollectionshared.cpp b/libkipi/libkipi/imagecollectionshared.cpp
index c8ebd37..a893b5c 100644
--- a/libkipi/libkipi/imagecollectionshared.cpp
+++ b/libkipi/libkipi/imagecollectionshared.cpp
@@ -76,7 +76,7 @@ KURL KIPI::ImageCollectionShared::uploadRoot()
return KURL( "file:/" );
}
-QString KIPI::ImageCollectionShared::uploadRootName()
+TQString KIPI::ImageCollectionShared::uploadRootName()
{
return (i18n("Images"));
}
@@ -86,28 +86,28 @@ bool KIPI::ImageCollectionShared::isDirectory()
return false;
}
-QString KIPI::ImageCollectionShared::comment()
+TQString KIPI::ImageCollectionShared::comment()
{
kdWarning(51000) << "KIPI::ImageCollectionShared::comment should only be invoked if the host application supports\n"
"the KIPI::Features AlbumsHaveComments - if the host application do support that, then this function should\n"
"have been overriden in the host application.\n";
- return QString::null;
+ return TQString();
}
-QString KIPI::ImageCollectionShared::category()
+TQString KIPI::ImageCollectionShared::category()
{
kdWarning(51000) << "KIPI::ImageCollectionShared::category should only be invoked if the host application supports\n"
"the KIPI::Features AlbumsHaveCategory - if the host application do support that, then this function should\n"
"have been overriden in the host application.\n";
- return QString::null;
+ return TQString();
}
-QDate KIPI::ImageCollectionShared::date()
+TQDate KIPI::ImageCollectionShared::date()
{
kdWarning(51000) << "KIPI::ImageCollectionShared::date should only be invoked if the host application supports\n"
"the KIPI::Features AlbumsHaveCreationDate - if the host application do support that, then this function should\n"
"have been overriden in the host application.\n";
- return QDate();
+ return TQDate();
}