summaryrefslogtreecommitdiffstats
path: root/doc/html/movies-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-23 14:04:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-27 16:08:54 +0900
commit04913ce7a46fd027856e83a96205fdc388742a19 (patch)
treea04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/movies-example.html
parentc11c0f228b65f7471a26513ef8dbde413e75f8fa (diff)
downloadtqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz
tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip
Rename ntqobject*.h and qobject*.cpp to tqobject*
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 0572b2d87..955a6685b 100644
--- a/doc/html/movies-example.html
+++ b/doc/html/movies-example.html
@@ -245,13 +245,13 @@ public:
<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="ntqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="ntqmovie.html#restart">restart</a>()));
+ <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="ntqmovie.html#restart">restart</a>()));
btn = new <a href="ntqpushbutton.html">TQPushButton</a>("||", hb);
- <a href="ntqobject.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="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(togglePause()));
btn = new <a href="ntqpushbutton.html">TQPushButton</a>("&gt;|", hb);
- <a href="ntqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="ntqmovie.html#step">step</a>()));
+ <a href="tqobject.html#connect">connect</a>(btn, TQ_SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(<a href="ntqmovie.html#step">step</a>()));
btn = new <a href="ntqpushbutton.html">TQPushButton</a>("&gt;&gt;|", hb);
- <a href="ntqobject.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="ntqbutton.html#clicked">clicked</a>()), movie, TQ_SLOT(step10()));
}
};
@@ -277,7 +277,7 @@ 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="ntqobject.html#connect">connect</a>(this, TQ_SIGNAL(<a href="ntqfiledialog.html#fileSelected">fileSelected</a>(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="ntqstring.html">TQString</a>&amp;)),
this, TQ_SLOT(startMovie(const <a href="ntqstring.html">TQString</a>&amp;)));
}
@@ -317,7 +317,7 @@ int main(int argc, char **argv)
(void)new MovieScreen(argv[arg], TQMovie(argv[arg]), 0, 0,
TQt::WDestructiveClose);
}
- TQObject::<a href="ntqobject.html#connect">connect</a>(tqApp, TQ_SIGNAL(<a href="ntqapplication.html#lastWindowClosed">lastWindowClosed</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()));
+ TQObject::<a href="tqobject.html#connect">connect</a>(tqApp, TQ_SIGNAL(<a href="ntqapplication.html#lastWindowClosed">lastWindowClosed</a>()), tqApp, TQ_SLOT(<a href="ntqapplication.html#quit">quit</a>()));
} else {
// "GUI" mode - open a chooser for movies
//