summaryrefslogtreecommitdiffstats
path: root/korganizer/datechecker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/datechecker.cpp')
-rw-r--r--korganizer/datechecker.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/datechecker.cpp b/korganizer/datechecker.cpp
index 0fdcb302e..0862a8604 100644
--- a/korganizer/datechecker.cpp
+++ b/korganizer/datechecker.cpp
@@ -19,8 +19,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
- with any edition of Qt, and distribute the resulting executable,
- without including the source code for Qt in the source distribution.
+ with any edition of TQt, and distribute the resulting executable,
+ without including the source code for TQt in the source distribution.
*/
#include <tqtimer.h>
@@ -31,8 +31,8 @@
#include "datechecker.h"
-DateChecker::DateChecker( TQObject *parent, const char *name )
- : TQObject( parent, name ), mUpdateTimer( 0 )
+DateChecker::DateChecker( TQObject *tqparent, const char *name )
+ : TQObject( tqparent, name ), mUpdateTimer( 0 )
{
enableRollover( FollowMonth );
}
@@ -87,7 +87,7 @@ void DateChecker::possiblyPastMidnight()
if ( mUpdateTimer ) {
TQTime now = TQTime::currentTime();
TQTime midnight = TQTime( 23, 59, 59 );
- int msecsWait = QMIN( 480000, now.msecsTo( midnight ) + 2000 );
+ int msecsWait = TQMIN( 480000, now.msecsTo( midnight ) + 2000 );
mUpdateTimer->stop();
mUpdateTimer->start( msecsWait, true );