summaryrefslogtreecommitdiffstats
path: root/examples/sql/overview/order2/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sql/overview/order2/main.cpp')
-rw-r--r--examples/sql/overview/order2/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sql/overview/order2/main.cpp b/examples/sql/overview/order2/main.cpp
index 762562e..43ae7a2 100644
--- a/examples/sql/overview/order2/main.cpp
+++ b/examples/sql/overview/order2/main.cpp
@@ -24,7 +24,7 @@ int main( int argc, char *argv[] )
cur.setValue( "surname", "Bloggs" );
cur.select( filter, order );
while ( cur.next() ) {
- qDebug( cur.value( "id" ).toString() + ": " +
+ tqDebug( cur.value( "id" ).toString() + ": " +
cur.value( "surname" ).toString() + " " +
cur.value( "forename" ).toString() );
}