diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-20 20:15:52 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-21 23:04:19 +0900 |
commit | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (patch) | |
tree | 5f1bb482f68ee0f95843fbf375cd2274acdabf25 /doc/html/drawlines-example.html | |
parent | 14c414378d96f7463b989384f4a0e5dd76632b6d (diff) | |
download | tqt-1e9fa8e0.tar.gz tqt-1e9fa8e0.zip |
Rename graphics class nt* related files to equivalent tq* (part 2)
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 ); |