diff options
Diffstat (limited to 'doc/html/dclock-example.html')
-rw-r--r-- | doc/html/dclock-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/dclock-example.html b/doc/html/dclock-example.html index 97814072a..b232d75c8 100644 --- a/doc/html/dclock-example.html +++ b/doc/html/dclock-example.html @@ -106,7 +106,7 @@ private: // internal data <a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Raised ); <a href="ntqframe.html#setLineWidth">setLineWidth</a>( 2 ); // set frame line width showTime(); // display the current time - normalTimer = <a href="ntqobject.html#startTimer">startTimer</a>( 500 ); // 1/2 second timer events + normalTimer = <a href="tqobject.html#startTimer">startTimer</a>( 500 ); // 1/2 second timer events showDateTimer = -1; // not showing date } @@ -117,7 +117,7 @@ private: // internal data // and another one for switching back from date mode to time mode. // -<a name="x1102"></a>void DigitalClock::<a href="ntqobject.html#timerEvent">timerEvent</a>( <a href="qtimerevent.html">TQTimerEvent</a> *e ) +<a name="x1102"></a>void DigitalClock::<a href="tqobject.html#timerEvent">timerEvent</a>( <a href="qtimerevent.html">TQTimerEvent</a> *e ) { <a name="x1105"></a> if ( e-><a href="qtimerevent.html#timerId">timerId</a>() == showDateTimer ) // stop showing date stopDate(); @@ -151,7 +151,7 @@ void <a name="f372"></a>DigitalClock::showDate() <a href="ntqstring.html">TQString</a> s; <a name="x1103"></a><a name="x1100"></a><a name="x1099"></a> s.<a href="ntqstring.html#sprintf">sprintf</a>( "%2d %2d", date.<a href="qdate.html#month">month</a>(), date.<a href="qdate.html#day">day</a>() ); <a href="ntqlcdnumber.html#display">display</a>( s ); // sets the LCD number/text - showDateTimer = <a href="ntqobject.html#startTimer">startTimer</a>( 2000 ); // keep this state for 2 secs + showDateTimer = <a href="tqobject.html#startTimer">startTimer</a>( 2000 ); // keep this state for 2 secs } // @@ -160,7 +160,7 @@ void <a name="f372"></a>DigitalClock::showDate() void <a name="f373"></a>DigitalClock::stopDate() { - <a href="ntqobject.html#killTimer">killTimer</a>( showDateTimer ); + <a href="tqobject.html#killTimer">killTimer</a>( showDateTimer ); showDateTimer = -1; showTime(); } |