diff options
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r-- | doc/html/movies-example.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html index 069cfae8b..e5c0317e0 100644 --- a/doc/html/movies-example.html +++ b/doc/html/movies-example.html @@ -47,7 +47,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="tqapplication-h.html">tqapplication.h</a>> #include <<a href="tqfiledialog-h.html">tqfiledialog.h</a>> #include <<a href="tqpushbutton-h.html">tqpushbutton.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> @@ -291,7 +291,7 @@ void <a name="f259"></a>MovieStarter::startMovie(const <a href="tqstring.html">T <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 + tqApp-><a href="tqapplication.html#quit">quit</a>(); // end on Cancel <a href="tqdialog.html#setResult">setResult</a>( r ); // And don't hide. @@ -300,7 +300,7 @@ void <a name="f259"></a>MovieStarter::startMovie(const <a href="tqstring.html">T int main(int argc, char **argv) { - <a href="ntqapplication.html">TQApplication</a> a(argc, argv); + <a href="tqapplication.html">TQApplication</a> a(argc, argv); if (argc > 1) { // Commandline mode - show movies given on the command line @@ -316,7 +316,7 @@ int main(int argc, char **argv) (void)new MovieScreen(argv[arg], TQMovie(argv[arg]), 0, 0, TQt::WDestructiveClose); } - TQObject::<a href="tqobject.html#connect">connect</a>(tqApp, TQ_SIGNAL(<a href="ntqapplication.html#lastWindowClosed">lastWindowClosed</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>())); + TQObject::<a href="tqobject.html#connect">connect</a>(tqApp, TQ_SIGNAL(<a href="tqapplication.html#lastWindowClosed">lastWindowClosed</a>()), tqApp, TQ_SLOT(<a href="tqapplication.html#quit">quit</a>())); } else { // "GUI" mode - open a chooser for movies // @@ -325,7 +325,7 @@ int main(int argc, char **argv) } // Go! - return a.<a href="ntqapplication.html#exec">exec</a>(); + return a.<a href="tqapplication.html#exec">exec</a>(); } #include "main.moc" |