diff options
Diffstat (limited to 'doc/html/drawlines-example.html')
-rw-r--r-- | doc/html/drawlines-example.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/drawlines-example.html b/doc/html/drawlines-example.html index 34c40d1d8..d2026c467 100644 --- a/doc/html/drawlines-example.html +++ b/doc/html/drawlines-example.html @@ -74,7 +74,7 @@ protected: void mouseReleaseEvent( <a href="qmouseevent.html">TQMouseEvent</a> *); void mouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> *); private: - <a href="ntqpoint.html">TQPoint</a> *points; // point array + <a href="tqpoint.html">TQPoint</a> *points; // point array <a href="tqcolor.html">TQColor</a> *colors; // color array int count; // count = number of points bool down; // TRUE if mouse down @@ -91,7 +91,7 @@ private: <a href="tqwidget.html#setBackgroundColor">setBackgroundColor</a>( white ); // white background count = 0; down = FALSE; - points = new <a href="ntqpoint.html">TQPoint</a>[MAXPOINTS]; + points = new <a href="tqpoint.html">TQPoint</a>[MAXPOINTS]; colors = new <a href="tqcolor.html">TQColor</a>[MAXCOLORS]; for ( int i=0; i<MAXCOLORS; i++ ) // init color array colors[i] = TQColor( rand()&255, rand()&255, rand()&255 ); |