summaryrefslogtreecommitdiffstats
path: root/libkipi/libkipi/imagecollectionshared.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-17 20:54:59 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-17 20:54:59 +0000
commit252b74ae40311e7e3e2ba9f4d4a0ebf2ead24472 (patch)
treedee6bb999e0d45ec90af181c90eae55427a8e24e /libkipi/libkipi/imagecollectionshared.cpp
parent7e1bbd9180475d0b1398d0e9e01919dd068fb56e (diff)
downloadlibkipi-252b74ae40311e7e3e2ba9f4d4a0ebf2ead24472.tar.gz
libkipi-252b74ae40311e7e3e2ba9f4d4a0ebf2ead24472.zip
TQt4 port libkipi
This enables compilation under Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/libraries/libkipi@1232471 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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();
}