summaryrefslogtreecommitdiffstats
path: root/doc/html/tqmemarray.html
diff options
context:
space:
mode:
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<int> 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;
}