summaryrefslogtreecommitdiffstats
path: root/doc/html/qdatatable-h.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/qdatatable-h.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/qdatatable-h.html')
-rw-r--r--doc/html/qdatatable-h.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/qdatatable-h.html b/doc/html/qdatatable-h.html
index 36fca8a47..5b9a4f8e9 100644
--- a/doc/html/qdatatable-h.html
+++ b/doc/html/qdatatable-h.html
@@ -121,7 +121,7 @@ class TQM_EXPORT_SQL TQDataTable : public TQTable
public:
TQDataTable ( TQWidget* parent=0, const char* name=0 );
- TQDataTable ( TQSqlCursor* cursor, bool autoPopulate = FALSE, TQWidget* parent=0, const char* name=0 );
+ TQDataTable ( TQSqlCursor* cursor, bool autoPopulate = false, TQWidget* parent=0, const char* name=0 );
~TQDataTable();
virtual void addColumn( const TQString&amp; fieldName,
@@ -149,7 +149,7 @@ public:
TQStringList sort() const;
virtual void setSqlCursor( TQSqlCursor* cursor = 0,
- bool autoPopulate = FALSE, bool autoDelete = FALSE );
+ bool autoPopulate = false, bool autoDelete = false );
TQSqlCursor* sqlCursor() const;
virtual void setNullText( const TQString&amp; nullText );
@@ -173,8 +173,8 @@ public:
RefreshAll = 3
};
void refresh( Refresh mode );
- void sortColumn ( int col, bool ascending = TRUE,
- bool wholeRows = FALSE );
+ void sortColumn ( int col, bool ascending = true,
+ bool wholeRows = false );
TQString text ( int row, int col ) const;
TQVariant value ( int row, int col ) const;
TQSqlRecord* currentRecord() const;
@@ -209,7 +209,7 @@ public slots:
void setColumnWidth( int col, int w );
void adjustColumn( int col );
void setColumnStretchable( int col, bool stretch );
- void swapColumns( int col1, int col2, bool swapHeaders = FALSE );
+ void swapColumns( int col1, int col2, bool swapHeaders = false );
protected:
virtual bool insertCurrent();