diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-23 14:04:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-27 16:08:54 +0900 |
commit | 04913ce7a46fd027856e83a96205fdc388742a19 (patch) | |
tree | a04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/dclock-example.html | |
parent | c11c0f228b65f7471a26513ef8dbde413e75f8fa (diff) | |
download | tqt-04913ce7.tar.gz tqt-04913ce7.zip |
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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(); } |