summaryrefslogtreecommitdiffstats
path: root/examples/sql/overview/order1/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sql/overview/order1/main.cpp')
-rw-r--r--examples/sql/overview/order1/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sql/overview/order1/main.cpp b/examples/sql/overview/order1/main.cpp
index 3d64748..3d9b129 100644
--- a/examples/sql/overview/order1/main.cpp
+++ b/examples/sql/overview/order1/main.cpp
@@ -22,7 +22,7 @@ int main( int argc, char *argv[] )
QSqlIndex order = cur.index( fields );
cur.select( order );
while ( cur.next() ) {
- qDebug( cur.value( "id" ).toString() + ": " +
+ tqDebug( cur.value( "id" ).toString() + ": " +
cur.value( "surname" ).toString() + " " +
cur.value( "forename" ).toString() );
}