diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:44:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-06 13:52:29 +0900 |
commit | e6077c30d14e9d662e8843c554db86c0d366d0b6 (patch) | |
tree | 672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/movies-example.html | |
parent | 8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff) | |
download | tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip |
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r-- | doc/html/movies-example.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html index 890203765..d1d22434e 100644 --- a/doc/html/movies-example.html +++ b/doc/html/movies-example.html @@ -61,7 +61,7 @@ The Movies example displays MNG and animated GIF files using the <a href="ntqmov class MovieScreen : public <a href="ntqframe.html">TQFrame</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> <a href="ntqmovie.html">TQMovie</a> movie; - <a href="ntqstring.html">TQString</a> filename; + <a href="tqstring.html">TQString</a> filename; <a href="ntqsize.html">TQSize</a> sh; public: @@ -225,8 +225,8 @@ private slots: // The movie has sent us a status message. if (status < 0) { - <a href="ntqstring.html">TQString</a> msg; - msg.<a href="ntqstring.html#sprintf">sprintf</a>("Could not play movie \"%s\"", (const char*)filename); + <a href="tqstring.html">TQString</a> msg; + msg.<a href="tqstring.html#sprintf">sprintf</a>("Could not play movie \"%s\"", (const char*)filename); TQMessageBox::<a href="ntqmessagebox.html#warning">warning</a>(this, "movies", msg); <a href="tqwidget.html#parentWidget">parentWidget</a>()->close(); } else if (status == TQMovie::Paused || status == TQMovie::EndOfMovie) { @@ -264,7 +264,7 @@ public: MovieStarter(const char *dir); public slots: - void startMovie(const <a href="ntqstring.html">TQString</a>& filename); + void startMovie(const <a href="tqstring.html">TQString</a>& filename); // TQDialog's method - normally closes the file dialog. // We want it left open, and we want Cancel to quit everything. void done( int r ); @@ -277,12 +277,12 @@ public slots: //behave as in getOpenFilename <a href="ntqfiledialog.html#setMode">setMode</a>( ExistingFile ); // When a file is selected, show it as a movie. - <a href="tqobject.html#connect">connect</a>(this, TQ_SIGNAL(<a href="ntqfiledialog.html#fileSelected">fileSelected</a>(const <a href="ntqstring.html">TQString</a>&)), - this, TQ_SLOT(startMovie(const <a href="ntqstring.html">TQString</a>&))); + <a href="tqobject.html#connect">connect</a>(this, TQ_SIGNAL(<a href="ntqfiledialog.html#fileSelected">fileSelected</a>(const <a href="tqstring.html">TQString</a>&)), + this, TQ_SLOT(startMovie(const <a href="tqstring.html">TQString</a>&))); } -void <a name="f259"></a>MovieStarter::startMovie(const <a href="ntqstring.html">TQString</a>& filename) +void <a name="f259"></a>MovieStarter::startMovie(const <a href="tqstring.html">TQString</a>& filename) { if ( filename ) // Start a new movie - have it delete when closed. (new MoviePlayer( filename, TQMovie(filename), 0, 0, |