summaryrefslogtreecommitdiffstats
path: root/doc/html/bigtable-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/bigtable-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/bigtable-example.html')
-rw-r--r--doc/html/bigtable-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/bigtable-example.html b/doc/html/bigtable-example.html
index bdf714f78..27ffb3a6d 100644
--- a/doc/html/bigtable-example.html
+++ b/doc/html/bigtable-example.html
@@ -58,8 +58,8 @@ class MyTable : public <a href="tqtable.html">TQTable</a>
{
public:
MyTable( int r, int c ) : <a href="tqtable.html">TQTable</a>( r, c ) {
-<a name="x1291"></a> items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE );
- widgets.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE );
+<a name="x1291"></a> items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( true );
+ widgets.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( true );
setCaption( tr( "A 1 Million x 1 Million Cell Table" ) );
setLeftMargin( fontMetrics().width( "W999999W" ) );
}
@@ -70,9 +70,9 @@ public:
<a name="x1287"></a> void clearCell( int r, int c ) { items.<a href="tqintdict.html#remove">remove</a>( indexOf( r, c ) ); }
void takeItem( <a href="tqtableitem.html">TQTableItem</a> *item )
{
- items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( FALSE );
+ items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( false );
<a name="x1294"></a><a name="x1293"></a> items.<a href="tqintdict.html#remove">remove</a>( indexOf( item-&gt;<a href="tqtableitem.html#row">row</a>(), item-&gt;<a href="tqtableitem.html#col">col</a>() ) );
- items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( TRUE );
+ items.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>( true );
}
void insertWidget( int r, int c, TQWidget *w ) { widgets.<a href="tqintdict.html#replace">replace</a>( indexOf( r, c ), w ); }
<a href="tqwidget.html">TQWidget</a> *cellWidget( int r, int c ) const { return widgets.<a href="tqintdict.html#find">find</a>( indexOf( r, c ) ); }