diff options
Diffstat (limited to 'kpf/src/Utils.cpp')
-rw-r--r-- | kpf/src/Utils.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kpf/src/Utils.cpp b/kpf/src/Utils.cpp index 08f3318a..8dc5c373 100644 --- a/kpf/src/Utils.cpp +++ b/kpf/src/Utils.cpp @@ -61,7 +61,7 @@ namespace KPF return ::mktime(&tempTm); } - QDateTime + TQDateTime toGMT(const TQDateTime & dt) { time_t dtAsTimeT = qDateTimeToTimeT(dt); @@ -105,7 +105,7 @@ namespace KPF TQString dateString() { - return dateString(TQDateTime::currentDateTime()); + return dateString(TQDateTime::tqcurrentDateTime()); } @@ -118,7 +118,7 @@ namespace KPF if (0 == asTm) { kpfDebug << "::gmtime() failed" << endl; - return TQString::null; + return TQString(); } asTm->tm_isdst = -1; @@ -311,7 +311,7 @@ namespace KPF return dt.isValid(); } - QString + TQString translatedResponseName(uint code) { TQString s; @@ -359,7 +359,7 @@ namespace KPF return s; } - QString + TQString responseName(uint code) { TQString s; |