diff options
Diffstat (limited to 'doc/html/tqgridview.html')
-rw-r--r-- | doc/html/tqgridview.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tqgridview.html b/doc/html/tqgridview.html index f5a88dbc9..1591ca476 100644 --- a/doc/html/tqgridview.html +++ b/doc/html/tqgridview.html @@ -53,7 +53,7 @@ fixed-size grids. <li class=fn>TQSize <a href="#gridSize"><b>gridSize</b></a> () const</li> <li class=fn>int <a href="#rowAt"><b>rowAt</b></a> ( int y ) const</li> <li class=fn>int <a href="#columnAt"><b>columnAt</b></a> ( int x ) const</li> -<li class=fn>void <a href="#repaintCell"><b>repaintCell</b></a> ( int row, int column, bool erase = TRUE )</li> +<li class=fn>void <a href="#repaintCell"><b>repaintCell</b></a> ( int row, int column, bool erase = true )</li> <li class=fn>void <a href="#updateCell"><b>updateCell</b></a> ( int row, int column )</li> <li class=fn>void <a href="#ensureCellVisible"><b>ensureCellVisible</b></a> ( int row, int column )</li> </ul> @@ -180,7 +180,7 @@ efficiency. If you want clipping, use <p> <pre> p->setClipRect( <a href="#cellRect">cellRect</a>(), TQPainter::CoordPainter ); //... your drawing code - p->setClipping( FALSE ); + p->setClipping( false ); </pre> @@ -193,10 +193,10 @@ color using the painter <em>p</em>. <p> <a href="#paintEmptyArea">paintEmptyArea</a>() is invoked by <a href="tqscrollview.html#drawContents">drawContents</a>() to erase or fill unused areas. -<h3 class=fn>void <a name="repaintCell"></a>TQGridView::repaintCell ( int row, int column, bool erase = TRUE ) +<h3 class=fn>void <a name="repaintCell"></a>TQGridView::repaintCell ( int row, int column, bool erase = true ) </h3> Repaints cell (<em>row</em>, <em>column</em>). -<p> If <em>erase</em> is TRUE, TQt erases the area of the cell before the +<p> If <em>erase</em> is true, TQt erases the area of the cell before the <a href="#paintCell">paintCell</a>() call; otherwise no erasing takes place. <p> <p>See also <a href="tqwidget.html#repaint">TQWidget::repaint</a>(). |