summaryrefslogtreecommitdiffstats
path: root/doc/html/small-table-example-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/small-table-example-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/small-table-example-example.html')
-rw-r--r--doc/html/small-table-example-example.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/small-table-example-example.html b/doc/html/small-table-example-example.html
index 9515ea06f..1559eba9c 100644
--- a/doc/html/small-table-example-example.html
+++ b/doc/html/small-table-example-example.html
@@ -71,7 +71,7 @@ int main( int argc, char **argv )
<a name="x2798"></a> header-&gt;<a href="tqheader.html#setLabel">setLabel</a>( 0, TQObject::tr( "Tiny" ), 40 );
header-&gt;<a href="tqheader.html#setLabel">setLabel</a>( 1, TQObject::tr( "Checkboxes" ) );
header-&gt;<a href="tqheader.html#setLabel">setLabel</a>( 5, TQObject::tr( "Combos" ) );
-<a name="x2802"></a> table.<a href="tqtable.html#setColumnMovingEnabled">setColumnMovingEnabled</a>(TRUE);
+<a name="x2802"></a> table.<a href="tqtable.html#setColumnMovingEnabled">setColumnMovingEnabled</a>(true);
<a href="tqimage.html">TQImage</a> img( qtlogo_xpm );
<a name="x2801"></a><a name="x2799"></a> <a href="tqpixmap.html">TQPixmap</a> pix = img.<a href="tqimage.html#scaleHeight">scaleHeight</a>( table.<a href="tqtable.html#rowHeight">rowHeight</a>(3) );
@@ -82,7 +82,7 @@ int main( int argc, char **argv )
comboEntries &lt;&lt; "one" &lt;&lt; "two" &lt;&lt; "three" &lt;&lt; "four";
for ( int i = 0; i &lt; numRows; ++i ){
- <a href="tqcombotableitem.html">TQComboTableItem</a> * item = new <a href="tqcombotableitem.html">TQComboTableItem</a>( &amp;table, comboEntries, FALSE );
+ <a href="tqcombotableitem.html">TQComboTableItem</a> * item = new <a href="tqcombotableitem.html">TQComboTableItem</a>( &amp;table, comboEntries, false );
<a name="x2797"></a> item-&gt;<a href="tqcombotableitem.html#setCurrentItem">setCurrentItem</a>( i % 4 );
<a name="x2803"></a> table.<a href="tqtable.html#setItem">setItem</a>( i, 5, item );
}