diff options
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r-- | doc/html/movies-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html index d786858b2..61ec709e1 100644 --- a/doc/html/movies-example.html +++ b/doc/html/movies-example.html @@ -55,7 +55,7 @@ The Movies example displays MNG and animated GIF files using the <a href="tqmovi #include <<a href="tqpainter-h.html">tqpainter.h</a>> #include <<a href="qmessagebox-h.html">ntqmessagebox.h</a>> #include <<a href="tqmovie-h.html">tqmovie.h</a>> -#include <<a href="qvbox-h.html">ntqvbox.h</a>> +#include <<a href="tqvbox-h.html">tqvbox.h</a>> class MovieScreen : public <a href="tqframe.html">TQFrame</a> { @@ -235,14 +235,14 @@ private slots: } }; -class MoviePlayer : public <a href="ntqvbox.html">TQVBox</a> { +class MoviePlayer : public <a href="tqvbox.html">TQVBox</a> { MovieScreen* movie; public: MoviePlayer(const char* fname, TQMovie m, TQWidget* p=0, const char* name=0, WFlags f=0) : - <a href="ntqvbox.html">TQVBox</a>(p,name,f) + <a href="tqvbox.html">TQVBox</a>(p,name,f) { movie = new MovieScreen(fname, m, this); - <a href="ntqhbox.html">TQHBox</a>* hb = new <a href="ntqhbox.html">TQHBox</a>(this); + <a href="tqhbox.html">TQHBox</a>* hb = new <a href="tqhbox.html">TQHBox</a>(this); <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="tqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="tqmovie.html#restart">restart</a>())); |