diff options
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r-- | doc/html/movies-example.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html index 8b0e9ee2e..2d92124fc 100644 --- a/doc/html/movies-example.html +++ b/doc/html/movies-example.html @@ -50,7 +50,7 @@ The Movies example displays MNG and animated GIF files using the <a href="tqmovi #include <<a href="qapplication-h.html">ntqapplication.h</a>> #include <<a href="tqfiledialog-h.html">tqfiledialog.h</a>> -#include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> +#include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="tqpainter-h.html">tqpainter.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> @@ -243,14 +243,14 @@ public: { movie = new MovieScreen(fname, m, this); <a href="ntqhbox.html">TQHBox</a>* hb = new <a href="ntqhbox.html">TQHBox</a>(this); - <a href="ntqpushbutton.html">TQPushButton</a>* btn; - btn = new <a href="ntqpushbutton.html">TQPushButton</a>("<<", hb); + <a href="tqpushbutton.html">TQPushButton</a>* btn; + btn = new <a href="tqpushbutton.html">TQPushButton</a>("<<", hb); <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="tqmovie.html#restart">restart</a>())); - btn = new <a href="ntqpushbutton.html">TQPushButton</a>("||", hb); + btn = new <a href="tqpushbutton.html">TQPushButton</a>("||", hb); <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(togglePause())); - btn = new <a href="ntqpushbutton.html">TQPushButton</a>(">|", hb); + btn = new <a href="tqpushbutton.html">TQPushButton</a>(">|", hb); <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="tqmovie.html#step">step</a>())); - btn = new <a href="ntqpushbutton.html">TQPushButton</a>(">>|", hb); + btn = new <a href="tqpushbutton.html">TQPushButton</a>(">>|", hb); <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(step10())); } }; @@ -289,11 +289,11 @@ void <a name="f259"></a>MovieStarter::startMovie(const <a href="tqstring.html">T WDestructiveClose))->show(); } -<a name="x495"></a>void MovieStarter::<a href="ntqdialog.html#done">done</a>( int r ) +<a name="x495"></a>void MovieStarter::<a href="tqdialog.html#done">done</a>( int r ) { if (r != Accepted) tqApp-><a href="ntqapplication.html#quit">quit</a>(); // end on Cancel - <a href="ntqdialog.html#setResult">setResult</a>( r ); + <a href="tqdialog.html#setResult">setResult</a>( r ); // And don't hide. } @@ -322,7 +322,7 @@ int main(int argc, char **argv) // "GUI" mode - open a chooser for movies // MovieStarter* fd = new MovieStarter("."); -<a name="x494"></a> fd-><a href="ntqdialog.html#show">show</a>(); +<a name="x494"></a> fd-><a href="tqdialog.html#show">show</a>(); } // Go! |