diff options
Diffstat (limited to 'libkcal/calformat.cpp')
-rw-r--r-- | libkcal/calformat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libkcal/calformat.cpp b/libkcal/calformat.cpp index 5035622b3..e506b8dfe 100644 --- a/libkcal/calformat.cpp +++ b/libkcal/calformat.cpp @@ -70,9 +70,9 @@ TQString CalFormat::createUniqueId() TQTime::currentTime().minute() + TQTime::currentTime().second() + TQTime::currentTime().msec(); TQString uidStr = TQString("%1-%2.%3") - .tqarg(mApplication) - .tqarg(KApplication::random()) - .tqarg(hashTime); + .arg(mApplication) + .arg(KApplication::random()) + .arg(hashTime); return uidStr; } |