summaryrefslogtreecommitdiffstats
path: root/doc/html/qaxcontainer-example-webbrowser.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/html/qaxcontainer-example-webbrowser.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz
tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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()-&gt;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 );
}