summaryrefslogtreecommitdiffstats
path: root/doc/html/movies-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r--doc/html/movies-example.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html
index 8b0e9ee2e..2d92124fc 100644
--- a/doc/html/movies-example.html
+++ b/doc/html/movies-example.html
@@ -50,7 +50,7 @@ The Movies example displays MNG and animated GIF files using the <a href="tqmovi
#include &lt;<a href="qapplication-h.html">ntqapplication.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="tqpushbutton-h.html">tqpushbutton.h</a>&gt;
#include &lt;<a href="tqlabel-h.html">tqlabel.h</a>&gt;
#include &lt;<a href="tqpainter-h.html">tqpainter.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
@@ -243,14 +243,14 @@ public:
{
movie = new MovieScreen(fname, m, this);
<a href="ntqhbox.html">TQHBox</a>* hb = new <a href="ntqhbox.html">TQHBox</a>(this);
- <a href="ntqpushbutton.html">TQPushButton</a>* btn;
- btn = new <a href="ntqpushbutton.html">TQPushButton</a>("&lt;&lt;", hb);
+ <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>()));
- btn = new <a href="ntqpushbutton.html">TQPushButton</a>("||", hb);
+ 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()));
- btn = new <a href="ntqpushbutton.html">TQPushButton</a>("&gt;|", hb);
+ 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>()));
- btn = new <a href="ntqpushbutton.html">TQPushButton</a>("&gt;&gt;|", hb);
+ 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()));
}
};
@@ -289,11 +289,11 @@ void <a name="f259"></a>MovieStarter::startMovie(const <a href="tqstring.html">T
WDestructiveClose))-&gt;show();
}
-<a name="x495"></a>void MovieStarter::<a href="ntqdialog.html#done">done</a>( int r )
+<a name="x495"></a>void MovieStarter::<a href="tqdialog.html#done">done</a>( int r )
{
if (r != Accepted)
tqApp-&gt;<a href="ntqapplication.html#quit">quit</a>(); // end on Cancel
- <a href="ntqdialog.html#setResult">setResult</a>( r );
+ <a href="tqdialog.html#setResult">setResult</a>( r );
// And don't hide.
}
@@ -322,7 +322,7 @@ int main(int argc, char **argv)
// "GUI" mode - open a chooser for movies
//
MovieStarter* fd = new MovieStarter(".");
-<a name="x494"></a> fd-&gt;<a href="ntqdialog.html#show">show</a>();
+<a name="x494"></a> fd-&gt;<a href="tqdialog.html#show">show</a>();
}
// Go!