diff options
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 491508162..46ccbb40f 100644 --- a/doc/html/qaxcontainer-example-webbrowser.html +++ b/doc/html/qaxcontainer-example-webbrowser.html @@ -51,7 +51,7 @@ already been set up within TQt Designer. statusBar()->addWidget( pb, 0, TRUE ); connect( WebBrowser, TQ_SIGNAL(ProgressChange(int,int)), this, TQ_SLOT(setProgress(int,int)) ); - connect( WebBrowser, TQ_SIGNAL(StatusTextChange(const <a href="ntqstring.html">TQString</a>&)), statusBar(), TQ_SLOT(message(const <a href="ntqstring.html">TQString</a>&)) ); + connect( WebBrowser, TQ_SIGNAL(StatusTextChange(const <a href="tqstring.html">TQString</a>&)), statusBar(), TQ_SLOT(message(const <a href="tqstring.html">TQString</a>&)) ); WebBrowser->dynamicCall( "GoHome()" ); } @@ -64,11 +64,11 @@ using the <a href="qaxbase.html#dynamicCall">TQAxBase::dynamicCall</a>() dynamic <p> <pre> void MainWindow::go() { actionStop->setEnabled( TRUE ); - WebBrowser->dynamicCall( "Navigate(const <a href="ntqstring.html">TQString</a>&)", addressEdit->text() ); + WebBrowser->dynamicCall( "Navigate(const <a href="tqstring.html">TQString</a>&)", addressEdit->text() ); } </pre>The go() function calls the <tt>NavigateTo()</tt> function of Internet Explorer, passing the text of the address bar as the argument. -<p> <pre> void MainWindow::setTitle( const <a href="ntqstring.html">TQString</a> &title ) +<p> <pre> void MainWindow::setTitle( const <a href="tqstring.html">TQString</a> &title ) { setCaption( "TQt WebBrowser - " + title ); } |