From 50326e196a9245af21604da7dc3a36eea52784ed Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 26 Dec 2025 14:08:52 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 10 Signed-off-by: Michele Calgaro --- src/widgets/tqgridview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/widgets/tqgridview.cpp') 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 */ -- cgit v1.2.3