diff options
Diffstat (limited to 'doc/qmemarray.doc')
-rw-r--r-- | doc/qmemarray.doc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/qmemarray.doc b/doc/qmemarray.doc index 79fe4bb87..59a707037 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; } |