diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-15 13:05:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-22 10:05:58 +0900 |
commit | 397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch) | |
tree | 0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/tqsqlquery.html | |
parent | 755d46927cc6a5719e695aeb8133be6897de62d8 (diff) | |
download | tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.tar.gz tqt3-397b7afa8e3f32268c4454bf4783ac2a5a799658.zip |
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqsqlquery.html')
-rw-r--r-- | doc/html/tqsqlquery.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/tqsqlquery.html b/doc/html/tqsqlquery.html index 58db878b6..ca4e3314f 100644 --- a/doc/html/tqsqlquery.html +++ b/doc/html/tqsqlquery.html @@ -323,7 +323,7 @@ Returns a map of the bound values. TQMap<TQString, TQVariant>::ConstIterator it; <a href="tqmap.html">TQMap</a><TQString, TQVariant> vals = query.<a href="#boundValues">boundValues</a>(); for ( it = vals.<a href="tqmap.html#begin">begin</a>(); it != vals.<a href="tqmap.html#end">end</a>(); ++it ) - <a href="ntqapplication.html#qWarning">tqWarning</a>( "Placeholder: " + it.key() + ", Value: " + (*it).toString() ); + <a href="tqapplication.html#qWarning">tqWarning</a>( "Placeholder: " + it.key() + ", Value: " + (*it).toString() ); ... // Examine the bound values - bound using positional binding @@ -331,7 +331,7 @@ Returns a map of the bound values. <a href="tqvaluelist.html">TQValueList</a><TQVariant> list = query.<a href="#boundValues">boundValues</a>().values(); int i = 0; for ( it = list.<a href="tqvaluelist.html#begin">begin</a>(); it != list.<a href="tqvaluelist.html#end">end</a>(); ++it ) - <a href="ntqapplication.html#qWarning">tqWarning</a>( "Placeholder pos: %d, Value: " + (*it).toString(), i++ ); + <a href="tqapplication.html#qWarning">tqWarning</a>( "Placeholder pos: %d, Value: " + (*it).toString(), i++ ); ... </pre> |