From 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Jun 2024 23:07:22 +0900 Subject: Rename ntqwidget* related files to equivalent tqwidget* Signed-off-by: Michele Calgaro --- doc/html/qaxcontainer-example-webbrowser.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/qaxcontainer-example-webbrowser.html') 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 TQProgressBar( statusBar() ); pb->setPercentageVisible( FALSE ); - pb->hide(); + pb->hide(); 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.

    void MainWindow::setProgress( int a, int b )
     {
         if ( a <= 0 || b <= 0 ) {
-            pb->hide();
+            pb->hide();
             return;
         }
-        pb->show();
+        pb->show();
         pb->setTotalSteps( b );
         pb->setProgress( a );
     }
-- 
cgit v1.2.1