summaryrefslogtreecommitdiffstats
path: root/doc/html/table-small-table-demo-main-cpp.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
commitb87533f9904c10f24d6b2e8177c00944e3efe15b (patch)
treec1106a381c851b51e86004698457aef1211b77be /doc/html/table-small-table-demo-main-cpp.html
parent894037c3e68e1573a34183d936171f8cda5085f3 (diff)
downloadtqt-r14.1.x.tar.gz
tqt-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/table-small-table-demo-main-cpp.html')
-rw-r--r--doc/html/table-small-table-demo-main-cpp.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/table-small-table-demo-main-cpp.html b/doc/html/table-small-table-demo-main-cpp.html
index 4be264904..71bdd8c00 100644
--- a/doc/html/table-small-table-demo-main-cpp.html
+++ b/doc/html/table-small-table-demo-main-cpp.html
@@ -68,7 +68,7 @@ int main( int argc, char **argv )
<a name="x2798"></a> header-&gt;<a href="ntqheader.html#setLabel">setLabel</a>( 0, TQObject::tr( "Tiny" ), 40 );
header-&gt;<a href="ntqheader.html#setLabel">setLabel</a>( 1, TQObject::tr( "Checkboxes" ) );
header-&gt;<a href="ntqheader.html#setLabel">setLabel</a>( 5, TQObject::tr( "Combos" ) );
-<a name="x2802"></a> table.<a href="ntqtable.html#setColumnMovingEnabled">setColumnMovingEnabled</a>(TRUE);
+<a name="x2802"></a> table.<a href="ntqtable.html#setColumnMovingEnabled">setColumnMovingEnabled</a>(true);
<a href="ntqimage.html">TQImage</a> img( qtlogo_xpm );
<a name="x2801"></a><a name="x2799"></a> <a href="ntqpixmap.html">TQPixmap</a> pix = img.<a href="ntqimage.html#scaleHeight">scaleHeight</a>( table.<a href="ntqtable.html#rowHeight">rowHeight</a>(3) );
@@ -79,7 +79,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="qcombotableitem.html">TQComboTableItem</a> * item = new <a href="qcombotableitem.html">TQComboTableItem</a>( &amp;table, comboEntries, FALSE );
+ <a href="qcombotableitem.html">TQComboTableItem</a> * item = new <a href="qcombotableitem.html">TQComboTableItem</a>( &amp;table, comboEntries, false );
<a name="x2797"></a> item-&gt;<a href="qcombotableitem.html#setCurrentItem">setCurrentItem</a>( i % 4 );
<a name="x2803"></a> table.<a href="ntqtable.html#setItem">setItem</a>( i, 5, item );
}