summaryrefslogtreecommitdiffstats
path: root/doc/html/canvas-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 12:20:38 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 12:20:38 +0900
commit0881ed5059c46ce73e8241e6260b82b92f6d0e55 (patch)
tree6d1d4883cc07ad22b11017d0714d4c26e1ce1b94 /doc/html/canvas-example.html
parent1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (diff)
downloadtqt3-0881ed5059c46ce73e8241e6260b82b92f6d0e55.tar.gz
tqt3-0881ed5059c46ce73e8241e6260b82b92f6d0e55.zip
Rename ptr nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/canvas-example.html')
-rw-r--r--doc/html/canvas-example.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/canvas-example.html b/doc/html/canvas-example.html
index 0d877ecec..32d05b269 100644
--- a/doc/html/canvas-example.html
+++ b/doc/html/canvas-example.html
@@ -223,15 +223,15 @@ public:
NodeItem( <a href="tqcanvas.html">TQCanvas</a> *canvas );
~NodeItem() {}
- void addInEdge( EdgeItem *edge ) { inList.<a href="ntqptrlist.html#append">append</a>( edge ); }
- void addOutEdge( EdgeItem *edge ) { outList.<a href="ntqptrlist.html#append">append</a>( edge ); }
+ void addInEdge( EdgeItem *edge ) { inList.<a href="tqptrlist.html#append">append</a>( edge ); }
+ void addOutEdge( EdgeItem *edge ) { outList.<a href="tqptrlist.html#append">append</a>( edge ); }
void moveBy(double dx, double dy);
// TQPoint center() { return boundingRect().center(); }
private:
- <a href="ntqptrlist.html">TQPtrList</a>&lt;EdgeItem&gt; inList;
- <a href="ntqptrlist.html">TQPtrList</a>&lt;EdgeItem&gt; outList;
+ <a href="tqptrlist.html">TQPtrList</a>&lt;EdgeItem&gt; inList;
+ <a href="tqptrlist.html">TQPtrList</a>&lt;EdgeItem&gt; outList;
};
@@ -271,14 +271,14 @@ void NodeItem::<a href="tqcanvasitem.html#moveBy">moveBy</a>(double dx, double d
{
TQCanvasEllipse::<a href="tqcanvasitem.html#moveBy">moveBy</a>( dx, dy );
- <a href="qptrlistiterator.html">TQPtrListIterator</a>&lt;EdgeItem&gt; it1( inList );
+ <a href="tqptrlistiterator.html">TQPtrListIterator</a>&lt;EdgeItem&gt; it1( inList );
EdgeItem *edge;
-<a name="x2949"></a> while (( edge = it1.<a href="qptrlistiterator.html#current">current</a>() )) {
+<a name="x2949"></a> while (( edge = it1.<a href="tqptrlistiterator.html#current">current</a>() )) {
++it1;
edge-&gt;setToPoint( int(<a href="tqwidget.html#x">x</a>()), int(<a href="tqcanvasitem.html#y">y</a>()) );
}
- <a href="qptrlistiterator.html">TQPtrListIterator</a>&lt;EdgeItem&gt; it2( outList );
- while (( edge = it2.<a href="qptrlistiterator.html#current">current</a>() )) {
+ <a href="tqptrlistiterator.html">TQPtrListIterator</a>&lt;EdgeItem&gt; it2( outList );
+ while (( edge = it2.<a href="tqptrlistiterator.html#current">current</a>() )) {
++it2;
edge-&gt;setFromPoint( int(<a href="tqcanvasitem.html#x">x</a>()), int(<a href="tqcanvasitem.html#y">y</a>()) );
}