summaryrefslogtreecommitdiffstats
path: root/doc/html/table-bigtable-main-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/table-bigtable-main-cpp.html')
-rw-r--r--doc/html/table-bigtable-main-cpp.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/table-bigtable-main-cpp.html b/doc/html/table-bigtable-main-cpp.html
index 3a04306c3..1ec7eb623 100644
--- a/doc/html/table-bigtable-main-cpp.html
+++ b/doc/html/table-bigtable-main-cpp.html
@@ -53,8 +53,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" ) );
}
@@ -65,9 +65,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 ) ); }