diff options
Diffstat (limited to 'doc/html/dclock-example.html')
-rw-r--r-- | doc/html/dclock-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/dclock-example.html b/doc/html/dclock-example.html index b232d75c8..e162bc9f0 100644 --- a/doc/html/dclock-example.html +++ b/doc/html/dclock-example.html @@ -57,7 +57,7 @@ class DigitalClock : public <a href="ntqlcdnumber.html">TQLCDNumber</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: - DigitalClock( <a href="ntqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); + DigitalClock( <a href="tqwidget.html">TQWidget</a> *parent=0, const char *name=0 ); protected: // event handlers void timerEvent( <a href="qtimerevent.html">TQTimerEvent</a> * ); @@ -99,7 +99,7 @@ private: // internal data // Constructs a DigitalClock widget with a parent and a name. // -<a name="f371"></a>DigitalClock::DigitalClock( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name ) +<a name="f371"></a>DigitalClock::DigitalClock( <a href="tqwidget.html">TQWidget</a> *parent, const char *name ) : <a href="ntqlcdnumber.html">TQLCDNumber</a>( parent, name ) { showingColon = FALSE; @@ -131,7 +131,7 @@ private: // internal data // Enters date mode when the left mouse button is pressed. // -void DigitalClock::<a href="ntqwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> *e ) +void DigitalClock::<a href="tqwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> *e ) { <a name="x1101"></a> if ( e-><a href="qmouseevent.html#button">button</a>() == TQMouseEvent::LeftButton ) // left button pressed showDate(); @@ -201,10 +201,10 @@ int main( int argc, char **argv ) { <a href="ntqapplication.html">TQApplication</a> a( argc, argv ); DigitalClock *clock = new DigitalClock; - clock-><a href="ntqwidget.html#resize">resize</a>( 170, 80 ); + clock-><a href="tqwidget.html#resize">resize</a>( 170, 80 ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( clock ); - clock-><a href="ntqwidget.html#setCaption">setCaption</a>("TQt Example - Digital Clock"); - clock-><a href="ntqwidget.html#show">show</a>(); + clock-><a href="tqwidget.html#setCaption">setCaption</a>("TQt Example - Digital Clock"); + clock-><a href="tqwidget.html#show">show</a>(); return a.<a href="ntqapplication.html#exec">exec</a>(); } </pre> |