diff options
author | Michele Calgaro <[email protected]> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/qaxcontainer-example-webbrowser.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-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.html | 6 |
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-><a href="ntqprogressbar.html#setPercentageVisible">setPercentageVisible</a>( FALSE ); - <a name="x2516"></a> pb-><a href="ntqwidget.html#hide">hide</a>(); + <a name="x2516"></a> pb-><a href="tqwidget.html#hide">hide</a>(); statusBar()->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 <= 0 || b <= 0 ) { - pb-><a href="ntqwidget.html#hide">hide</a>(); + pb-><a href="tqwidget.html#hide">hide</a>(); return; } - pb-><a href="ntqwidget.html#show">show</a>(); + pb-><a href="tqwidget.html#show">show</a>(); <a name="x2515"></a> pb-><a href="ntqprogressbar.html#setTotalSteps">setTotalSteps</a>( b ); <a name="x2514"></a> pb-><a href="ntqprogressbar.html#setProgress">setProgress</a>( a ); } |