diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/movies-example.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/movies-example.html')
-rw-r--r-- | doc/html/movies-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/movies-example.html b/doc/html/movies-example.html index 955a6685b..890203765 100644 --- a/doc/html/movies-example.html +++ b/doc/html/movies-example.html @@ -77,7 +77,7 @@ public: setFrameStyle(TQFrame::WinPanel|TQFrame::Sunken); // No background needed, since we draw on the whole widget. -<a name="x523"></a> movie.<a href="ntqwidget.html#setBackgroundColor">setBackgroundColor</a>(backgroundColor()); +<a name="x523"></a> movie.<a href="tqwidget.html#setBackgroundColor">setBackgroundColor</a>(backgroundColor()); setBackgroundMode(NoBackground); // Get the movie to tell use when interesting things happen. @@ -215,9 +215,9 @@ private slots: int fw = frameWidth(); <a name="x521"></a><a name="x520"></a> sh = TQSize( size.<a href="ntqsize.html#width">width</a>() + fw*2, size.<a href="ntqsize.html#height">height</a>() + fw*2 ); - <a href="ntqwidget.html#updateGeometry">updateGeometry</a>(); - if ( <a href="ntqwidget.html#parentWidget">parentWidget</a>() && parentWidget()->isHidden() ) - <a href="ntqwidget.html#parentWidget">parentWidget</a>()->show(); + <a href="tqwidget.html#updateGeometry">updateGeometry</a>(); + if ( <a href="tqwidget.html#parentWidget">parentWidget</a>() && parentWidget()->isHidden() ) + <a href="tqwidget.html#parentWidget">parentWidget</a>()->show(); } void movieStatus(int status) @@ -228,9 +228,9 @@ private slots: <a href="ntqstring.html">TQString</a> msg; msg.<a href="ntqstring.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="ntqwidget.html#parentWidget">parentWidget</a>()->close(); + <a href="tqwidget.html#parentWidget">parentWidget</a>()->close(); } else if (status == TQMovie::Paused || status == TQMovie::EndOfMovie) { - <a href="ntqwidget.html#repaint">repaint</a>(); // Ensure status text is displayed + <a href="tqwidget.html#repaint">repaint</a>(); // Ensure status text is displayed } } }; |