summaryrefslogtreecommitdiffstats
path: root/doc/html/statistics-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/statistics-example.html')
-rw-r--r--doc/html/statistics-example.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/statistics-example.html b/doc/html/statistics-example.html
index b35fcc0ff..a22fe1dcb 100644
--- a/doc/html/statistics-example.html
+++ b/doc/html/statistics-example.html
@@ -148,7 +148,7 @@ void <a name="f579"></a>Table::initTable()
while ( dirs[ i ] ) {
<a href="ntqdir.html">TQDir</a> dir( srcdir + dirs[ i ] );
<a name="x2780"></a> <a href="ntqstringlist.html">TQStringList</a> lst = dir.<a href="ntqdir.html#entryList">entryList</a>( "*.cpp; *.h" );
-<a name="x2791"></a><a name="x2789"></a> for ( TQStringList::Iterator it = lst.<a href="ntqvaluelist.html#begin">begin</a>(); it != lst.<a href="ntqvaluelist.html#end">end</a>(); ++it ) {
+<a name="x2791"></a><a name="x2789"></a> for ( TQStringList::Iterator it = lst.<a href="tqvaluelist.html#begin">begin</a>(); it != lst.<a href="tqvaluelist.html#end">end</a>(); ++it ) {
if ( ( *it ).contains( "moc" ) )
continue;
all &lt;&lt; (TQString( dirs[ i ] ) + "/" + *it);
@@ -157,12 +157,12 @@ void <a name="f579"></a>Table::initTable()
}
// set the number of rows we'll need for the table
-<a name="x2790"></a> <a href="ntqtable.html#setNumRows">setNumRows</a>( all.<a href="ntqvaluelist.html#count">count</a>() + 1 );
+<a name="x2790"></a> <a href="ntqtable.html#setNumRows">setNumRows</a>( all.<a href="tqvaluelist.html#count">count</a>() + 1 );
i = 0;
int sum = 0;
// insert the data into the table
- for ( TQStringList::Iterator it = all.<a href="ntqvaluelist.html#begin">begin</a>(); it != all.<a href="ntqvaluelist.html#end">end</a>(); ++it ) {
+ for ( TQStringList::Iterator it = all.<a href="tqvaluelist.html#begin">begin</a>(); it != all.<a href="tqvaluelist.html#end">end</a>(); ++it ) {
<a href="ntqtable.html#setText">setText</a>( i, 0, *it );
<a href="ntqfile.html">TQFile</a> f( srcdir + *it );
<a name="x2781"></a> <a href="ntqtable.html#setText">setText</a>( i, 1, TQString::number( (ulong)f.<a href="ntqfile.html#size">size</a>() ) );