summaryrefslogtreecommitdiffstats
path: root/src/sql/qsqlquery.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sql/qsqlquery.cpp')
-rw-r--r--src/sql/qsqlquery.cpp8
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();
}