summaryrefslogtreecommitdiffstats
path: root/doc/html/designer-manual-8.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/designer-manual-8.html
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt-e6077c30.tar.gz
tqt-e6077c30.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/designer-manual-8.html')
-rw-r--r--doc/html/designer-manual-8.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/designer-manual-8.html b/doc/html/designer-manual-8.html
index 38b207de7..7a6e4d6f9 100644
--- a/doc/html/designer-manual-8.html
+++ b/doc/html/designer-manual-8.html
@@ -331,7 +331,7 @@ bool createConnections()
// Who is this book's author?
<a href="tqsqlquery.html">TQSqlQuery</a> query( "SELECT surname FROM author WHERE id='" +
buffer-&gt;<a href="tqsqlrecord.html#value">value</a>( "authorid" ).toString() + "';" );
- <a href="ntqstring.html">TQString</a> author = "";
+ <a href="tqstring.html">TQString</a> author = "";
if ( query.<a href="tqsqlquery.html#next">next</a>() )
author = query.<a href="tqsqlquery.html#value">value</a>( 0 ).toString();
// Set the ComboBox to the right author
@@ -367,7 +367,7 @@ bool createConnections()
}
</pre>
<li> <p>We use a single function for storing author id's and returning them so that we can use a static data structure.</p>
-<pre> void EditBookForm::mapAuthor( const <a href="ntqstring.html">TQString</a> &amp; name, int &amp; id, bool populate )
+<pre> void EditBookForm::mapAuthor( const <a href="tqstring.html">TQString</a> &amp; name, int &amp; id, bool populate )
{
if ( populate )
authorMap[ name ] = id;
@@ -381,7 +381,7 @@ bool createConnections()
{
int id = buffer-&gt;<a href="tqsqlrecord.html#value">value</a>( "authorid" ).toInt();
for ( int i = 0; i &lt; ComboBoxAuthor-&gt;count(); i++ ) {
- <a href="ntqstring.html">TQString</a> author = ComboBoxAuthor-&gt;text( i );
+ <a href="tqstring.html">TQString</a> author = ComboBoxAuthor-&gt;text( i );
if ( authorMap.contains( author ) &amp;&amp; authorMap[author] == id ) {
ComboBoxAuthor-&gt;setCurrentItem( i ) ;
break;