From a30f5359f03c3017fa19a6770fab32d25d22cb87 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 15 Jul 2024 19:08:22 +0900 Subject: Rename graphics class nt* related files to equivalent tq* (part 1) Signed-off-by: Michele Calgaro --- doc/html/statistics-example.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/statistics-example.html') diff --git a/doc/html/statistics-example.html b/doc/html/statistics-example.html index 6ddf8e155..5e3a6ef4f 100644 --- a/doc/html/statistics-example.html +++ b/doc/html/statistics-example.html @@ -56,7 +56,7 @@ class TableItem : public TQTableItem { public: TableItem( TQTable *t, EditType et, const TQString &txt ) : TQTableItem( t, et, txt ) {} - void paint( TQPainter *p, const TQColorGroup &cg, const TQRect &cr, bool selected ); + void paint( TQPainter *p, const TQColorGroup &cg, const TQRect &cr, bool selected ); }; class ComboItem : public TQTableItem @@ -212,13 +212,13 @@ void Table::recalcSum( int, int col ) -void TableItem::paint( TQPainter *p, const TQColorGroup &cg, const TQRect &cr, bool selected ) +void TableItem::paint( TQPainter *p, const TQColorGroup &cg, const TQRect &cr, bool selected ) { - TQColorGroup g( cg ); + TQColorGroup g( cg ); // last row is the sum row - we want to make it more visible by // using a red background if ( row() == table()->numRows() - 1 ) - g.setColor( TQColorGroup::Base, red ); + g.setColor( TQColorGroup::Base, red ); TQTableItem::paint( p, g, cr, selected ); } -- cgit v1.2.3