summaryrefslogtreecommitdiffstats
path: root/doc/qmemarray.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/qmemarray.doc')
-rw-r--r--doc/qmemarray.doc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/qmemarray.doc b/doc/qmemarray.doc
index 35c1893..8d12321 100644
--- a/doc/qmemarray.doc
+++ b/doc/qmemarray.doc
@@ -96,10 +96,10 @@
{
QMemArray<int> a = fib( 6 ); // get first 6 fibonaccis
for ( int i = 0; i < a.size(); i++ )
- qDebug( "%d: %d", i, a[i] );
+ tqDebug( "%d: %d", i, a[i] );
- qDebug( "1 is found %d times", a.contains(1) );
- qDebug( "5 is found at index %d", a.find(5) );
+ tqDebug( "1 is found %d times", a.contains(1) );
+ tqDebug( "5 is found at index %d", a.find(5) );
return 0;
}