diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-01 19:44:57 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-06-01 19:44:57 +0900 |
commit | fd634b0c147bef3af1fa68454e4d8a9cda4f9243 (patch) | |
tree | cab9beb8519adda0bfb69ae97b586151c498d704 /src/sql/qsqlquery.cpp | |
parent | d795939c03a8250fa654992ff4ae807831c9292c (diff) | |
download | tqt3-fd634b0c147bef3af1fa68454e4d8a9cda4f9243.tar.gz tqt3-fd634b0c147bef3af1fa68454e4d8a9cda4f9243.zip |
Adjusted to use new TQStringVariantMap type.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/sql/qsqlquery.cpp')
-rw-r--r-- | src/sql/qsqlquery.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sql/qsqlquery.cpp b/src/sql/qsqlquery.cpp index 829e46947..35d22b5d8 100644 --- a/src/sql/qsqlquery.cpp +++ b/src/sql/qsqlquery.cpp @@ -1173,8 +1173,8 @@ TQVariant TQSqlQuery::boundValue( int pos ) const TQSqlQuery query; ... // Examine the bound values - bound using named binding - TQMap<TQString, TQVariant>::ConstIterator it; - TQMap<TQString, TQVariant> vals = query.boundValues(); + TQStringVariantMap::ConstIterator it; + TQStringVariantMap vals = query.boundValues(); for ( it = vals.begin(); it != vals.end(); ++it ) tqWarning( "Placeholder: " + it.key() + ", Value: " + (*it).toString() ); ... @@ -1189,10 +1189,10 @@ TQVariant TQSqlQuery::boundValue( int pos ) const \endcode */ -TQMap<TQString,TQVariant> TQSqlQuery::boundValues() const +TQStringVariantMap TQSqlQuery::boundValues() const { if ( !d->sqlResult || !d->sqlResult->extension() ) - return TQMap<TQString,TQVariant>(); + return TQStringVariantMap(); return d->sqlResult->extension()->boundValues(); } |