summaryrefslogtreecommitdiffstats
path: root/src/collections/filecatalog.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-02 06:40:27 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-02 06:40:27 +0000
commit2595a15ebeb6fc46b7cb241d01ec0c2460ec2111 (patch)
tree18a8f0f4ac5a86dacfa74c3537551ec39bc85e75 /src/collections/filecatalog.cpp
parent1d90725a4001fab9d3922b2cbcceeee5e2d1686f (diff)
downloadtellico-2595a15ebeb6fc46b7cb241d01ec0c2460ec2111.tar.gz
tellico-2595a15ebeb6fc46b7cb241d01ec0c2460ec2111.zip
TQt4 port tellico
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1239054 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/collections/filecatalog.cpp')
-rw-r--r--src/collections/filecatalog.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/collections/filecatalog.cpp b/src/collections/filecatalog.cpp
index 8d375be..cf67e2d 100644
--- a/src/collections/filecatalog.cpp
+++ b/src/collections/filecatalog.cpp
@@ -21,82 +21,82 @@ namespace {
using Tellico::Data::FileCatalog;
-FileCatalog::FileCatalog(bool addFields_, const QString& title_ /*=null*/)
+FileCatalog::FileCatalog(bool addFields_, const TQString& title_ /*=null*/)
: Collection(title_.isEmpty() ? i18n("My Files") : title_) {
if(addFields_) {
addFields(defaultFields());
}
- setDefaultGroupField(QString::fromLatin1("volume"));
+ setDefaultGroupField(TQString::tqfromLatin1("volume"));
}
Tellico::Data::FieldVec FileCatalog::defaultFields() {
FieldVec list;
FieldPtr field;
- field = new Field(QString::fromLatin1("title"), i18n("Name"));
+ field = new Field(TQString::tqfromLatin1("title"), i18n("Name"));
field->setCategory(i18n(file_general));
field->setFlags(Field::NoDelete);
list.append(field);
- field = new Field(QString::fromLatin1("url"), i18n("URL"), Field::URL);
+ field = new Field(TQString::tqfromLatin1("url"), i18n("URL"), Field::URL);
field->setCategory(i18n(file_general));
list.append(field);
- field = new Field(QString::fromLatin1("description"), i18n("Description"));
+ field = new Field(TQString::tqfromLatin1("description"), i18n("Description"));
field->setCategory(i18n(file_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
list.append(field);
- field = new Field(QString::fromLatin1("volume"), i18n("Volume"));
+ field = new Field(TQString::tqfromLatin1("volume"), i18n("Volume"));
field->setCategory(i18n(file_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
list.append(field);
- field = new Field(QString::fromLatin1("folder"), i18n("Folder"));
+ field = new Field(TQString::tqfromLatin1("folder"), i18n("Folder"));
field->setCategory(i18n(file_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
list.append(field);
- field = new Field(QString::fromLatin1("mimetype"), i18n("Mimetype"));
+ field = new Field(TQString::tqfromLatin1("mimetype"), i18n("Mimetype"));
field->setCategory(i18n(file_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
list.append(field);
- field = new Field(QString::fromLatin1("size"), i18n("Size"));
+ field = new Field(TQString::tqfromLatin1("size"), i18n("Size"));
field->setCategory(i18n(file_general));
list.append(field);
- field = new Field(QString::fromLatin1("permissions"), i18n("Permissions"));
+ field = new Field(TQString::tqfromLatin1("permissions"), i18n("Permissions"));
field->setCategory(i18n(file_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
list.append(field);
- field = new Field(QString::fromLatin1("owner"), i18n("Owner"));
+ field = new Field(TQString::tqfromLatin1("owner"), i18n("Owner"));
field->setCategory(i18n(file_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
list.append(field);
- field = new Field(QString::fromLatin1("group"), i18n("Group"));
+ field = new Field(TQString::tqfromLatin1("group"), i18n("Group"));
field->setCategory(i18n(file_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
list.append(field);
// these dates are string fields, not dates, since the time is included
- field = new Field(QString::fromLatin1("created"), i18n("Created"));
+ field = new Field(TQString::tqfromLatin1("created"), i18n("Created"));
field->setCategory(i18n(file_general));
list.append(field);
- field = new Field(QString::fromLatin1("modified"), i18n("Modified"));
+ field = new Field(TQString::tqfromLatin1("modified"), i18n("Modified"));
field->setCategory(i18n(file_general));
list.append(field);
- field = new Field(QString::fromLatin1("metainfo"), i18n("Meta Info"), Field::Table);
- field->setProperty(QString::fromLatin1("columns"), QChar('2'));
- field->setProperty(QString::fromLatin1("column1"), i18n("Property"));
- field->setProperty(QString::fromLatin1("column2"), i18n("Value"));
+ field = new Field(TQString::tqfromLatin1("metainfo"), i18n("Meta Info"), Field::Table);
+ field->setProperty(TQString::tqfromLatin1("columns"), TQChar('2'));
+ field->setProperty(TQString::tqfromLatin1("column1"), i18n("Property"));
+ field->setProperty(TQString::tqfromLatin1("column2"), i18n("Value"));
list.append(field);
- field = new Field(QString::fromLatin1("icon"), i18n("Icon"), Field::Image);
+ field = new Field(TQString::tqfromLatin1("icon"), i18n("Icon"), Field::Image);
list.append(field);
return list;