diff options
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r-- | doc/html/movies-example.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html index d2b292bcf..d607e6ac2 100644 --- a/doc/html/movies-example.html +++ b/doc/html/movies-example.html @@ -266,7 +266,7 @@ public: public slots: void startMovie(const <a href="qstring.html">TQString</a>& filename); // TQDialog's method - normally closes the file dialog. - // We want it left open, and we want Cancel to tquit everything. + // We want it left open, and we want Cancel to quit everything. void done( int r ); }; @@ -292,7 +292,7 @@ void <a name="f259"></a>MovieStarter::startMovie(const <a href="qstring.html">TQ <a name="x495"></a>void MovieStarter::<a href="qdialog.html#done">done</a>( int r ) { if (r != Accepted) - qApp-><a href="qapplication.html#tquit">tquit</a>(); // end on Cancel + qApp-><a href="qapplication.html#quit">quit</a>(); // end on Cancel <a href="qdialog.html#setResult">setResult</a>( r ); // And don't hide. @@ -317,7 +317,7 @@ int main(int argc, char **argv) (void)new MovieScreen(argv[arg], TQMovie(argv[arg]), 0, 0, TQt::WDestructiveClose); } - TQObject::<a href="qobject.html#connect">connect</a>(qApp, SIGNAL(<a href="qapplication.html#lastWindowClosed">lastWindowClosed</a>()), qApp, SLOT(<a href="qapplication.html#tquit">tquit</a>())); + TQObject::<a href="qobject.html#connect">connect</a>(qApp, SIGNAL(<a href="qapplication.html#lastWindowClosed">lastWindowClosed</a>()), qApp, SLOT(<a href="qapplication.html#quit">quit</a>())); } else { // "GUI" mode - open a chooser for movies // |