summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqgridview.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-31 13:38:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-31 13:43:03 +0900
commit6e4a70d41a2636ce99a1da7b6827ac5685ed3186 (patch)
treeb029ebf1d5be6d1ac0ee361e7bfb68a7dbed0eec /doc/man/man3/tqgridview.3qt
parent81ade129093a279e6537db25710583fd2bba9427 (diff)
downloadtqt-6e4a70d41a2636ce99a1da7b6827ac5685ed3186.tar.gz
tqt-6e4a70d41a2636ce99a1da7b6827ac5685ed3186.zip
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked and manually edited from commit 6dd781c483eea56f51ae0eff47d857976b5d0f0d)
Diffstat (limited to 'doc/man/man3/tqgridview.3qt')
-rw-r--r--doc/man/man3/tqgridview.3qt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqgridview.3qt b/doc/man/man3/tqgridview.3qt
index c52cfd52a..e5a90b648 100644
--- a/doc/man/man3/tqgridview.3qt
+++ b/doc/man/man3/tqgridview.3qt
@@ -61,7 +61,7 @@ Inherits QScrollView.
.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 QGridView::repaintCell ( int row, int column, bool erase = TRUE )"
+.SH "void QGridView::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 QGridView::rowAt ( int y ) const"