summaryrefslogtreecommitdiffstats
path: root/libkcal/calformat.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:50 -0600
commit9cc13dcbb01a96c9e60a07ca63c61d24b374f50d (patch)
treeab537a329b9613e11dce8195761f93ffe82aed24 /libkcal/calformat.cpp
parent3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12 (diff)
downloadtdepim-9cc13dcbb01a96c9e60a07ca63c61d24b374f50d.tar.gz
tdepim-9cc13dcbb01a96c9e60a07ca63c61d24b374f50d.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12.
Diffstat (limited to 'libkcal/calformat.cpp')
-rw-r--r--libkcal/calformat.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libkcal/calformat.cpp b/libkcal/calformat.cpp
index e506b8dfe..be26c3fcf 100644
--- a/libkcal/calformat.cpp
+++ b/libkcal/calformat.cpp
@@ -27,8 +27,8 @@
using namespace KCal;
-TQString CalFormat::mApplication = TQString::fromLatin1("libkcal");
-TQString CalFormat::mProductId = TQString::fromLatin1("-//K Desktop Environment//NONSGML libkcal 3.5//EN");
+TQString CalFormat::mApplication = TQString::tqfromLatin1("libkcal");
+TQString CalFormat::mProductId = TQString::tqfromLatin1("-//K Desktop Environment//NONSGML libkcal 3.5//EN");
CalFormat::CalFormat()
@@ -70,9 +70,9 @@ TQString CalFormat::createUniqueId()
TQTime::currentTime().minute() + TQTime::currentTime().second() +
TQTime::currentTime().msec();
TQString uidStr = TQString("%1-%2.%3")
- .arg(mApplication)
- .arg(KApplication::random())
- .arg(hashTime);
+ .tqarg(mApplication)
+ .tqarg(KApplication::random())
+ .tqarg(hashTime);
return uidStr;
}