summaryrefslogtreecommitdiffstats
path: root/doc/html/movies-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-08-12 22:02:11 +0900
commit42957a3f812a1db64a9ae452baa2d3fbc35f2466 (patch)
tree0928f4e01a3dcc0698b46c7608d8310e471bdb49 /doc/html/movies-example.html
parentfef846914f8db6dc117e206ef913d519bf6bb33e (diff)
downloadtqt-42957a3f.tar.gz
tqt-42957a3f.zip
Rename more widget 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.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html
index 2d92124fc..d786858b2 100644
--- a/doc/html/movies-example.html
+++ b/doc/html/movies-example.html
@@ -58,7 +58,7 @@ The Movies example displays MNG and animated GIF files using the <a href="tqmovi
#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
-class MovieScreen : public <a href="ntqframe.html">TQFrame</a> {
+class MovieScreen : public <a href="tqframe.html">TQFrame</a> {
<a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a>
<a href="tqmovie.html">TQMovie</a> movie;
<a href="tqstring.html">TQString</a> filename;
@@ -66,7 +66,7 @@ class MovieScreen : public <a href="ntqframe.html">TQFrame</a> {
public:
MovieScreen(const char* fname, TQMovie m, TQWidget* p=0, const char* name=0, WFlags f=0) :
- <a href="ntqframe.html">TQFrame</a>(p, name, f),
+ <a href="tqframe.html">TQFrame</a>(p, name, f),
sh(100,100)
{
setCaption(fname);
@@ -245,13 +245,13 @@ public:
<a href="ntqhbox.html">TQHBox</a>* hb = new <a href="ntqhbox.html">TQHBox</a>(this);
<a href="tqpushbutton.html">TQPushButton</a>* btn;
btn = new <a href="tqpushbutton.html">TQPushButton</a>("&lt;&lt;", hb);
- <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="tqmovie.html#restart">restart</a>()));
+ <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="tqmovie.html#restart">restart</a>()));
btn = new <a href="tqpushbutton.html">TQPushButton</a>("||", hb);
- <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(togglePause()));
+ <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(togglePause()));
btn = new <a href="tqpushbutton.html">TQPushButton</a>("&gt;|", hb);
- <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="tqmovie.html#step">step</a>()));
+ <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="tqmovie.html#step">step</a>()));
btn = new <a href="tqpushbutton.html">TQPushButton</a>("&gt;&gt;|", hb);
- <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(step10()));
+ <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="tqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(step10()));
}
};