summaryrefslogtreecommitdiffstats
path: root/src/sql/qsqlcursor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sql/qsqlcursor.cpp')
-rw-r--r--src/sql/qsqlcursor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sql/qsqlcursor.cpp b/src/sql/qsqlcursor.cpp
index 3ddd2c9e..b2a53dbd 100644
--- a/src/sql/qsqlcursor.cpp
+++ b/src/sql/qsqlcursor.cpp
@@ -400,7 +400,7 @@ void TQSqlCursor::setName( const TQString& name, bool autopopulate )
}
#ifdef QT_CHECK_RANGE
if ( isEmpty() )
- qWarning("TQSqlCursor::setName: unable to build record, does '%s' exist?", name.latin1() );
+ tqWarning("TQSqlCursor::setName: unable to build record, does '%s' exist?", name.latin1() );
#endif
}
}
@@ -1533,7 +1533,7 @@ bool TQSqlCursor::isNull( const TQString& name ) const
void TQSqlCursor::setValue( int i, const TQVariant& val )
{
#ifdef QT_DEBUG
- qDebug("TQSqlCursor::setValue(): This will not affect actual database values. Use primeInsert(), primeUpdate() or primeDelete().");
+ tqDebug("TQSqlCursor::setValue(): This will not affect actual database values. Use primeInsert(), primeUpdate() or primeDelete().");
#endif
TQSqlRecord::setValue( i, val );
}
@@ -1542,7 +1542,7 @@ void TQSqlCursor::setValue( int i, const TQVariant& val )
void TQSqlCursor::setValue( const TQString& name, const TQVariant& val )
{
#ifdef QT_DEBUG
- qDebug("TQSqlCursor::setValue(): This will not affect actual database values. Use primeInsert(), primeUpdate() or primeDelete().");
+ tqDebug("TQSqlCursor::setValue(): This will not affect actual database values. Use primeInsert(), primeUpdate() or primeDelete().");
#endif
TQSqlRecord::setValue( name, val );
}