summaryrefslogtreecommitdiffstats
path: root/doc/html/movies-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/movies-example.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-master.tar.gz
tqt3-master.zip
Rename str nt* related files to equivalent tq*HEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r--doc/html/movies-example.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html
index 89020376..d1d22434 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 &lt; 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>()-&gt;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>&amp; filename);
+ void startMovie(const <a href="tqstring.html">TQString</a>&amp; 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>&amp;)),
- this, TQ_SLOT(startMovie(const <a href="ntqstring.html">TQString</a>&amp;)));
+ <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;)),
+ this, TQ_SLOT(startMovie(const <a href="tqstring.html">TQString</a>&amp;)));
}
-void <a name="f259"></a>MovieStarter::startMovie(const <a href="ntqstring.html">TQString</a>&amp; filename)
+void <a name="f259"></a>MovieStarter::startMovie(const <a href="tqstring.html">TQString</a>&amp; filename)
{
if ( filename ) // Start a new movie - have it delete when closed.
(new MoviePlayer( filename, TQMovie(filename), 0, 0,