summaryrefslogtreecommitdiffstats
path: root/doc/html/statistics-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
commitdcce5b1f2c449ed9a02b1752e0d74f147a83d07d (patch)
treed57fe27457a96451f1a67e2a2db268a441d917fc /doc/html/statistics-example.html
parent649c4c61a1f1f479f4532b196f68df476cef2680 (diff)
downloadtqt-rename/true-false-4.tar.gz
tqt-rename/true-false-4.zip
Replace TRUE/FALSE with boolean values true/false - part 4rename/true-false-4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 56275aa95..56c21beba 100644
--- a/doc/html/statistics-example.html
+++ b/doc/html/statistics-example.html
@@ -126,7 +126,7 @@ const char* dirs[] = {
<a name="f578"></a>Table::Table()
: <a href="tqtable.html">TQTable</a>( 10, 100, 0, "table" )
{
- <a href="tqtable.html#setSorting">setSorting</a>( TRUE );
+ <a href="tqtable.html#setSorting">setSorting</a>( true );
<a href="tqtable.html#horizontalHeader">horizontalHeader</a>()-&gt;setLabel( 0, tr( "File" ) );
<a href="tqtable.html#horizontalHeader">horizontalHeader</a>()-&gt;setLabel( 1, tr( "Size (bytes)" ) );
<a href="tqtable.html#horizontalHeader">horizontalHeader</a>()-&gt;setLabel( 2, tr( "Use in Sum" ) );
@@ -204,7 +204,7 @@ void <a name="f580"></a>Table::recalcSum( int, int col )
clearCell( numRows() - 1, 0 );
clearCell( numRows() - 1, 1 );
// do sort
- TQTable::<a href="tqtable.html#sortColumn">sortColumn</a>( col, ascending, TRUE );
+ TQTable::<a href="tqtable.html#sortColumn">sortColumn</a>( col, ascending, true );
// re-insert sum row
recalcSum( 0, 1 );
}
@@ -228,7 +228,7 @@ void <a name="f580"></a>Table::recalcSum( int, int col )
: <a href="tqtableitem.html">TQTableItem</a>( t, et, "Yes" ), cb( 0 )
{
// we do not want this item to be replaced
- <a href="tqtableitem.html#setReplaceable">setReplaceable</a>( FALSE );
+ <a href="tqtableitem.html#setReplaceable">setReplaceable</a>( false );
}
<a name="x2785"></a>TQWidget *ComboItem::<a href="tqtableitem.html#createEditor">createEditor</a>() const