summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxcontainer-example-webbrowser.html
diff options
context:
space:
mode:
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 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>&amp;)), statusBar(), TQ_SLOT(message(const <a href="ntqstring.html">TQString</a>&amp;)) );
+ connect( WebBrowser, TQ_SIGNAL(StatusTextChange(const <a href="tqstring.html">TQString</a>&amp;)), statusBar(), TQ_SLOT(message(const <a href="tqstring.html">TQString</a>&amp;)) );
WebBrowser-&gt;dynamicCall( "GoHome()" );
}
@@ -64,11 +64,11 @@ using the <a href="qaxbase.html#dynamicCall">TQAxBase::dynamicCall</a>() dynamic
<p> <pre> void MainWindow::go()
{
actionStop-&gt;setEnabled( TRUE );
- WebBrowser-&gt;dynamicCall( "Navigate(const <a href="ntqstring.html">TQString</a>&amp;)", addressEdit-&gt;text() );
+ WebBrowser-&gt;dynamicCall( "Navigate(const <a href="tqstring.html">TQString</a>&amp;)", addressEdit-&gt;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> &amp;title )
+<p> <pre> void MainWindow::setTitle( const <a href="tqstring.html">TQString</a> &amp;title )
{
setCaption( "TQt WebBrowser - " + title );
}