diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
commit | 252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch) | |
tree | b48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/html/movies-example.html | |
parent | 87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff) | |
download | tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.tar.gz tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.zip |
Rename IO and network class 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 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html index 334579cef..5a5ae1959 100644 --- a/doc/html/movies-example.html +++ b/doc/html/movies-example.html @@ -49,7 +49,7 @@ The Movies example displays MNG and animated GIF files using the <a href="ntqmov *****************************************************************************/ #include <<a href="qapplication-h.html">ntqapplication.h</a>> -#include <<a href="qfiledialog-h.html">ntqfiledialog.h</a>> +#include <<a href="tqfiledialog-h.html">tqfiledialog.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> #include <<a href="qlabel-h.html">ntqlabel.h</a>> #include <<a href="qpainter-h.html">ntqpainter.h</a>> @@ -258,7 +258,7 @@ public: // A TQFileDialog that chooses movies. // -class MovieStarter: public <a href="ntqfiledialog.html">TQFileDialog</a> { +class MovieStarter: public <a href="tqfiledialog.html">TQFileDialog</a> { TQ_OBJECT public: MovieStarter(const char *dir); @@ -272,12 +272,12 @@ public slots: <a name="f258"></a>MovieStarter::MovieStarter(const char *dir) - : <a href="ntqfiledialog.html">TQFileDialog</a>(dir, "*.gif *.mng") + : <a href="tqfiledialog.html">TQFileDialog</a>(dir, "*.gif *.mng") { //behave as in getOpenFilename - <a href="ntqfiledialog.html#setMode">setMode</a>( ExistingFile ); + <a href="tqfiledialog.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="tqstring.html">TQString</a>&)), + <a href="tqobject.html#connect">connect</a>(this, TQ_SIGNAL(<a href="tqfiledialog.html#fileSelected">fileSelected</a>(const <a href="tqstring.html">TQString</a>&)), this, TQ_SLOT(startMovie(const <a href="tqstring.html">TQString</a>&))); } |