diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-15 13:05:33 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-22 10:05:58 +0900 |
| commit | 397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch) | |
| tree | 0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/tqmemarray.html | |
| parent | 755d46927cc6a5719e695aeb8133be6897de62d8 (diff) | |
| download | tqt-397b7afa.tar.gz tqt-397b7afa.zip | |
Rename ntqapplication, ntqconfig and ntqmodules files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/tqmemarray.html')
| -rw-r--r-- | doc/html/tqmemarray.html | 8 |
1 files changed, 4 insertions, 4 deletions
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 { - <a href="ntqapplication.html#Q_ASSERT">Q_ASSERT</a>( num > 2 ); + <a href="tqapplication.html#Q_ASSERT">Q_ASSERT</a>( 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.<a href="#size">size</a>(); i++ ) - <a href="ntqapplication.html#qDebug">tqDebug</a>( "%d: %d", i, a[i] ); + <a href="tqapplication.html#qDebug">tqDebug</a>( "%d: %d", i, a[i] ); - <a href="ntqapplication.html#qDebug">tqDebug</a>( "1 is found %d times", a.<a href="#contains">contains</a>(1) ); - <a href="ntqapplication.html#qDebug">tqDebug</a>( "5 is found at index %d", a.<a href="#find">find</a>(5) ); + <a href="tqapplication.html#qDebug">tqDebug</a>( "1 is found %d times", a.<a href="#contains">contains</a>(1) ); + <a href="tqapplication.html#qDebug">tqDebug</a>( "5 is found at index %d", a.<a href="#find">find</a>(5) ); return 0; } |
