diff options
Diffstat (limited to 'doc/man/man3/tqsqlquery.3qt')
-rw-r--r-- | doc/man/man3/tqsqlquery.3qt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/man/man3/tqsqlquery.3qt b/doc/man/man3/tqsqlquery.3qt index d77a24120..731c8243a 100644 --- a/doc/man/man3/tqsqlquery.3qt +++ b/doc/man/man3/tqsqlquery.3qt @@ -124,7 +124,7 @@ Inherited by TQSqlCursor. .BI "QVariant \fBboundValue\fR ( int pos ) const" .br .ti -1c -.BI "QMap<TQString, QVariant> \fBboundValues\fR () const" +.BI "TQMap<TQString, QVariant> \fBboundValues\fR () const" .br .ti -1c .BI "TQString \fBexecutedQuery\fR () const" @@ -339,7 +339,7 @@ Returns the value for the \fIplaceholder\fR. This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns the value for the placeholder at position \fIpos\fR. -.SH "QMap<TQString, QVariant> TQSqlQuery::boundValues () const" +.SH "TQMap<TQString, QVariant> TQSqlQuery::boundValues () const" Returns a map of the bound values. .PP The bound values can be examined in the following way: @@ -352,9 +352,9 @@ The bound values can be examined in the following way: .br // Examine the bound values - bound using named binding .br - QMap<TQString, QVariant>::ConstIterator it; + TQMap<TQString, QVariant>::ConstIterator it; .br - QMap<TQString, QVariant> vals = query.boundValues(); + TQMap<TQString, QVariant> vals = query.boundValues(); .br for ( it = vals.begin(); it != vals.end(); ++it ) .br @@ -365,9 +365,9 @@ The bound values can be examined in the following way: .br // Examine the bound values - bound using positional binding .br - QValueList<QVariant>::ConstIterator it; + TQValueList<QVariant>::ConstIterator it; .br - QValueList<QVariant> list = query.boundValues().values(); + TQValueList<QVariant> list = query.boundValues().values(); .br int i = 0; .br |