diff options
author | Timothy Pearson <[email protected]> | 2012-11-25 14:05:14 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-11-25 14:05:14 -0600 |
commit | bd87b2af9dde0633e56a792665cdec7a9675da95 (patch) | |
tree | 372fc8bc287d9712646388e9543b291a30b9cbd6 /doc/html/ntqsqlquery.html | |
parent | c5e69959c9eeb6a1396f1a60d7cf4f9781a2d47c (diff) | |
download | tqt3-bd87b2af9dde0633e56a792665cdec7a9675da95.tar.gz tqt3-bd87b2af9dde0633e56a792665cdec7a9675da95.zip |
Automated update from Qt3
Diffstat (limited to 'doc/html/ntqsqlquery.html')
-rw-r--r-- | doc/html/ntqsqlquery.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/ntqsqlquery.html b/doc/html/ntqsqlquery.html index 3f5e54fa5..9cda539c0 100644 --- a/doc/html/ntqsqlquery.html +++ b/doc/html/ntqsqlquery.html @@ -324,7 +324,7 @@ Returns a map of the bound values. TQMap<TQString, TQVariant>::ConstIterator it; <a href="ntqmap.html">TQMap</a><TQString, TQVariant> vals = query.<a href="#boundValues">boundValues</a>(); for ( it = vals.<a href="ntqmap.html#begin">begin</a>(); it != vals.<a href="ntqmap.html#end">end</a>(); ++it ) - <a href="ntqapplication.html#qWarning">qWarning</a>( "Placeholder: " + it.key() + ", Value: " + (*it).toString() ); + <a href="ntqapplication.html#qWarning">tqWarning</a>( "Placeholder: " + it.key() + ", Value: " + (*it).toString() ); ... // Examine the bound values - bound using positional binding @@ -332,7 +332,7 @@ Returns a map of the bound values. <a href="ntqvaluelist.html">TQValueList</a><TQVariant> list = query.<a href="#boundValues">boundValues</a>().values(); int i = 0; for ( it = list.<a href="ntqvaluelist.html#begin">begin</a>(); it != list.<a href="ntqvaluelist.html#end">end</a>(); ++it ) - <a href="ntqapplication.html#qWarning">qWarning</a>( "Placeholder pos: %d, Value: " + (*it).toString(), i++ ); + <a href="ntqapplication.html#qWarning">tqWarning</a>( "Placeholder pos: %d, Value: " + (*it).toString(), i++ ); ... </pre> |