summaryrefslogtreecommitdiffstats
path: root/examples/sql/overview/extract/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sql/overview/extract/main.cpp')
-rw-r--r--examples/sql/overview/extract/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sql/overview/extract/main.cpp b/examples/sql/overview/extract/main.cpp
index 3714c1a..d3dd194 100644
--- a/examples/sql/overview/extract/main.cpp
+++ b/examples/sql/overview/extract/main.cpp
@@ -33,7 +33,7 @@ int main( int argc, char *argv[] )
int id = cur.value( "id" ).toInt();
QString name = cur.value( "forename" ).toString() + " " +
cur.value( "surname" ).toString();
- qDebug( QString::number( id ) + ": " + name );
+ tqDebug( QString::number( id ) + ": " + name );
}
}