From 397b7afa8e3f32268c4454bf4783ac2a5a799658 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 15 Oct 2024 13:05:33 +0900 Subject: Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqmemarray.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/tqmemarray.html') diff --git a/doc/html/tqmemarray.html b/doc/html/tqmemarray.html index d49fea400..6ee45bdb2 100644 --- a/doc/html/tqmemarray.html +++ b/doc/html/tqmemarray.html @@ -121,7 +121,7 @@ constructor). TQValueVector provides an STL-compatible syntax and is TQMemArray<int> fib( int num ) // returns fibonacci array { - Q_ASSERT( num > 2 ); + Q_ASSERT( num > 2 ); TQMemArray<int> f( num ); // array of ints f[0] = f[1] = 1; @@ -135,10 +135,10 @@ constructor). TQValueVector provides an STL-compatible syntax and is { TQMemArray<int> a = fib( 6 ); // get first 6 fibonaccis for ( int i = 0; i < a.size(); i++ ) - tqDebug( "%d: %d", i, a[i] ); + tqDebug( "%d: %d", i, a[i] ); - tqDebug( "1 is found %d times", a.contains(1) ); - tqDebug( "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; } -- cgit v1.2.3