summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxcontainer-example-webbrowser.html
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-06-02 23:07:22 +0900
committerMichele Calgaro <[email protected]>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/qaxcontainer-example-webbrowser.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz
tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/qaxcontainer-example-webbrowser.html')
-rw-r--r--doc/html/qaxcontainer-example-webbrowser.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/qaxcontainer-example-webbrowser.html b/doc/html/qaxcontainer-example-webbrowser.html
index ab55b5375..491508162 100644
--- a/doc/html/qaxcontainer-example-webbrowser.html
+++ b/doc/html/qaxcontainer-example-webbrowser.html
@@ -47,7 +47,7 @@ already been set up within TQt Designer.
{
pb = new <a href="ntqprogressbar.html">TQProgressBar</a>( statusBar() );
<a name="x2513"></a> pb-&gt;<a href="ntqprogressbar.html#setPercentageVisible">setPercentageVisible</a>( FALSE );
- <a name="x2516"></a> pb-&gt;<a href="ntqwidget.html#hide">hide</a>();
+ <a name="x2516"></a> pb-&gt;<a href="tqwidget.html#hide">hide</a>();
statusBar()-&gt;addWidget( pb, 0, TRUE );
connect( WebBrowser, TQ_SIGNAL(ProgressChange(int,int)), this, TQ_SLOT(setProgress(int,int)) );
@@ -78,10 +78,10 @@ using the provided title string.
<p> <pre> void MainWindow::setProgress( int a, int b )
{
if ( a &lt;= 0 || b &lt;= 0 ) {
- pb-&gt;<a href="ntqwidget.html#hide">hide</a>();
+ pb-&gt;<a href="tqwidget.html#hide">hide</a>();
return;
}
- pb-&gt;<a href="ntqwidget.html#show">show</a>();
+ pb-&gt;<a href="tqwidget.html#show">show</a>();
<a name="x2515"></a> pb-&gt;<a href="ntqprogressbar.html#setTotalSteps">setTotalSteps</a>( b );
<a name="x2514"></a> pb-&gt;<a href="ntqprogressbar.html#setProgress">setProgress</a>( a );
}