diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-28 22:31:39 -0600 |
commit | 41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch) | |
tree | 6d4d5407c000add30aa78630e009c0e5d633e440 /doc/qmemarray.doc | |
parent | 1740cd279522c060e738bbbffacab83355d2b794 (diff) | |
download | tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip |
Automated conversion from qt3
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; } |