diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-26 11:44:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-30 14:26:34 +0900 |
commit | 6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch) | |
tree | 0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqgridview.3qt | |
parent | ff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff) | |
download | tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip |
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqgridview.3qt')
-rw-r--r-- | doc/man/man3/tqgridview.3qt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqgridview.3qt b/doc/man/man3/tqgridview.3qt index 821d08551..f65ef87d1 100644 --- a/doc/man/man3/tqgridview.3qt +++ b/doc/man/man3/tqgridview.3qt @@ -61,7 +61,7 @@ Inherits TQScrollView. .BI "int \fBcolumnAt\fR ( int x ) const" .br .ti -1c -.BI "void \fBrepaintCell\fR ( int row, int column, bool erase = TRUE )" +.BI "void \fBrepaintCell\fR ( int row, int column, bool erase = true )" .br .ti -1c .BI "void \fBupdateCell\fR ( int row, int column )" @@ -159,7 +159,7 @@ The painter is not clipped by default in order to get maximum efficiency. If you .br //... your drawing code .br - p->setClipping( FALSE ); + p->setClipping( false ); .br .br .fi @@ -167,10 +167,10 @@ The painter is not clipped by default in order to get maximum efficiency. If you This function fills the \fIcw\fR pixels wide and \fIch\fR pixels high rectangle starting at position (\fIcx\fR, \fIcy\fR) with the background color using the painter \fIp\fR. .PP paintEmptyArea() is invoked by drawContents() to erase or fill unused areas. -.SH "void TQGridView::repaintCell ( int row, int column, bool erase = TRUE )" +.SH "void TQGridView::repaintCell ( int row, int column, bool erase = true )" Repaints cell (\fIrow\fR, \fIcolumn\fR). .PP -If \fIerase\fR is TRUE, TQt erases the area of the cell before the paintCell() call; otherwise no erasing takes place. +If \fIerase\fR is true, TQt erases the area of the cell before the paintCell() call; otherwise no erasing takes place. .PP See also TQWidget::repaint(). .SH "int TQGridView::rowAt ( int y ) const" |