summaryrefslogtreecommitdiffstats
path: root/doc/html/statistics-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-15 19:08:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-18 09:31:41 +0900
commita30f5359f03c3017fa19a6770fab32d25d22cb87 (patch)
treecb365dd7a1c3666e3f972c6cad04be7b8e846cba /doc/html/statistics-example.html
parent25ad1267da6916e738a126ff5a9b41cd686adfc6 (diff)
downloadtqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.tar.gz
tqt3-a30f5359f03c3017fa19a6770fab32d25d22cb87.zip
Rename graphics class nt* related files to equivalent tq* (part 1)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/statistics-example.html')
-rw-r--r--doc/html/statistics-example.html8
1 files changed, 4 insertions, 4 deletions
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 <a href="qtableitem.html">TQTableItem</a>
{
public:
TableItem( <a href="ntqtable.html">TQTable</a> *t, EditType et, const <a href="tqstring.html">TQString</a> &amp;txt ) : <a href="qtableitem.html">TQTableItem</a>( t, et, txt ) {}
- void paint( <a href="ntqpainter.html">TQPainter</a> *p, const <a href="qcolorgroup.html">TQColorGroup</a> &amp;cg, const <a href="ntqrect.html">TQRect</a> &amp;cr, bool selected );
+ void paint( <a href="tqpainter.html">TQPainter</a> *p, const <a href="tqcolorgroup.html">TQColorGroup</a> &amp;cg, const <a href="ntqrect.html">TQRect</a> &amp;cr, bool selected );
};
class ComboItem : public <a href="qtableitem.html">TQTableItem</a>
@@ -212,13 +212,13 @@ void <a name="f580"></a>Table::recalcSum( int, int col )
-<a name="x2786"></a>void TableItem::<a href="qtableitem.html#paint">paint</a>( <a href="ntqpainter.html">TQPainter</a> *p, const <a href="qcolorgroup.html">TQColorGroup</a> &amp;cg, const <a href="ntqrect.html">TQRect</a> &amp;cr, bool selected )
+<a name="x2786"></a>void TableItem::<a href="qtableitem.html#paint">paint</a>( <a href="tqpainter.html">TQPainter</a> *p, const <a href="tqcolorgroup.html">TQColorGroup</a> &amp;cg, const <a href="ntqrect.html">TQRect</a> &amp;cr, bool selected )
{
- <a href="qcolorgroup.html">TQColorGroup</a> g( cg );
+ <a href="tqcolorgroup.html">TQColorGroup</a> g( cg );
// last row is the sum row - we want to make it more visible by
// using a red background
if ( <a href="qtableitem.html#row">row</a>() == <a href="qtableitem.html#table">table</a>()-&gt;numRows() - 1 )
-<a name="x2779"></a> g.<a href="qcolorgroup.html#setColor">setColor</a>( TQColorGroup::Base, red );
+<a name="x2779"></a> g.<a href="tqcolorgroup.html#setColor">setColor</a>( TQColorGroup::Base, red );
TQTableItem::<a href="qtableitem.html#paint">paint</a>( p, g, cr, selected );
}