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.html12
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>() &amp;&amp; parentWidget()-&gt;isHidden() )
- <a href="ntqwidget.html#parentWidget">parentWidget</a>()-&gt;show();
+ <a href="tqwidget.html#updateGeometry">updateGeometry</a>();
+ if ( <a href="tqwidget.html#parentWidget">parentWidget</a>() &amp;&amp; parentWidget()-&gt;isHidden() )
+ <a href="tqwidget.html#parentWidget">parentWidget</a>()-&gt;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>()-&gt;close();
+ <a href="tqwidget.html#parentWidget">parentWidget</a>()-&gt;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
}
}
};