summaryrefslogtreecommitdiffstats
path: root/src/widgets/tqgridview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-26 14:08:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-27 22:38:28 +0900
commit50326e196a9245af21604da7dc3a36eea52784ed (patch)
tree955f50c739379c59d3846c5c6ec25c8f5856fb91 /src/widgets/tqgridview.cpp
parent854c5d5c9cfd48a2d5a17366fb6805219eab4859 (diff)
downloadtqt-50326e196a9245af21604da7dc3a36eea52784ed.tar.gz
tqt-50326e196a9245af21604da7dc3a36eea52784ed.zip
Replace TRUE/FALSE with boolean values true/false - part 10
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/widgets/tqgridview.cpp')
-rw-r--r--src/widgets/tqgridview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/tqgridview.cpp b/src/widgets/tqgridview.cpp
index 7598ffb26..182fe2665 100644
--- a/src/widgets/tqgridview.cpp
+++ b/src/widgets/tqgridview.cpp
@@ -188,7 +188,7 @@ TQRect TQGridView::cellGeometry( int row, int column )
/*!
Repaints cell (\a row, \a column).
- If \a erase is TRUE, TQt erases the area of the cell before the
+ If \a erase is true, TQt erases the area of the cell before the
paintCell() call; otherwise no erasing takes place.
\sa TQWidget::repaint()
@@ -343,7 +343,7 @@ void TQGridView::dimensionChange( int, int ) {}
\code
p->setClipRect( cellRect(), TQPainter::CoordPainter );
//... your drawing code
- p->setClipping( FALSE );
+ p->setClipping( false );
\endcode
*/