summaryrefslogtreecommitdiffstats
path: root/doc/html/tqmemarray.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-15 13:05:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-22 10:05:58 +0900
commit397b7afa8e3f32268c4454bf4783ac2a5a799658 (patch)
tree0b41c33e457556bd2b9371788ddbce25263f00d6 /doc/html/tqmemarray.html
parent755d46927cc6a5719e695aeb8133be6897de62d8 (diff)
downloadtqt-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.html8
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&lt;int&gt; fib( int num ) // returns fibonacci array
{
- <a href="ntqapplication.html#Q_ASSERT">Q_ASSERT</a>( num &gt; 2 );
+ <a href="tqapplication.html#Q_ASSERT">Q_ASSERT</a>( num &gt; 2 );
TQMemArray&lt;int&gt; f( num ); // array of ints
f[0] = f[1] = 1;
@@ -135,10 +135,10 @@ constructor). TQValueVector provides an STL-compatible syntax and is
{
TQMemArray&lt;int&gt; a = fib( 6 ); // get first 6 fibonaccis
for ( int i = 0; i &lt; 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;
}