From a2277b6bc715464e83882b90c2a058139b8a6b54 Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 23 Jun 2011 01:42:07 +0000 Subject: TQt4 port kdeutils This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1238125 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ark/arkutils.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ark/arkutils.cpp') diff --git a/ark/arkutils.cpp b/ark/arkutils.cpp index bfe496c..94b5bc1 100644 --- a/ark/arkutils.cpp +++ b/ark/arkutils.cpp @@ -69,7 +69,7 @@ #include #include -// Qt includes +// TQt includes #include #include "arkutils.h" @@ -101,7 +101,7 @@ TQString ArkUtils::getTimeStamp(const TQString &_month, TQString year, timestamp; - if (_yearOrTime.contains(":")) + if (_yearOrTime.tqcontains(":")) // it has a timestamp so we have to figure out the year { year.sprintf("%d", ArkUtils::getYear(nMonth, thisYear, thisMonth)); @@ -147,7 +147,7 @@ int ArkUtils::getMonth(const char *strMonth) int ArkUtils::getYear(int theMonth, int thisYear, int thisMonth) { - int monthDiff = QABS(thisMonth - theMonth); + int monthDiff = TQABS(thisMonth - theMonth); if (monthDiff > 6) return (thisYear - 1); else @@ -176,7 +176,7 @@ TQString ArkUtils::fixYear(const TQString& strYear) return TQString::number( y ); } else - return TQString::null; + return TQString(); } bool -- cgit v1.2.3