summaryrefslogtreecommitdiffstats
path: root/doc/html/movies-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
commit252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch)
treeb48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/html/movies-example.html
parent87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff)
downloadtqt3-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.html10
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 &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qfiledialog-h.html">ntqfiledialog.h</a>&gt;
+#include &lt;<a href="tqfiledialog-h.html">tqfiledialog.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
@@ -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>&amp;)),
+ <a href="tqobject.html#connect">connect</a>(this, TQ_SIGNAL(<a href="tqfiledialog.html#fileSelected">fileSelected</a>(const <a href="tqstring.html">TQString</a>&amp;)),
this, TQ_SLOT(startMovie(const <a href="tqstring.html">TQString</a>&amp;)));
}