diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-10 18:56:16 +0900 |
commit | 252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch) | |
tree | b48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/html/grapher-nsplugin-example.html | |
parent | 87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff) | |
download | tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.tar.gz tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.zip |
Rename IO and network class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/grapher-nsplugin-example.html')
-rw-r--r-- | doc/html/grapher-nsplugin-example.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/grapher-nsplugin-example.html b/doc/html/grapher-nsplugin-example.html index 5bd1fe5b9..185c6e39d 100644 --- a/doc/html/grapher-nsplugin-example.html +++ b/doc/html/grapher-nsplugin-example.html @@ -77,7 +77,7 @@ Implementation: // Include other TQt classes. #include <<a href="qpainter-h.html">ntqpainter.h</a>> #include <<a href="tqtextstream-h.html">tqtextstream.h</a>> -#include <<a href="qbuffer-h.html">ntqbuffer.h</a>> +#include <<a href="tqbuffer-h.html">tqbuffer.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="tqmenubar-h.html">tqmenubar.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> @@ -477,7 +477,7 @@ private: void consumeLine(); <a href="tqptrlist.html">TQPtrList</a><Datum> data; - <a href="ntqbuffer.html">TQBuffer</a> line; + <a href="tqbuffer.html">TQBuffer</a> line; int ncols; ColType *coltype; @@ -492,7 +492,7 @@ private slots: { <a name="x2769"></a> data.<a href="tqptrcollection.html#setAutoDelete">setAutoDelete</a>(TRUE); ncols = 0; -<a name="x2743"></a> line.<a href="ntqiodevice.html#open">open</a>(IO_WriteOnly|IO_Truncate); +<a name="x2743"></a> line.<a href="tqiodevice.html#open">open</a>(IO_WriteOnly|IO_Truncate); } Grapher::~Grapher() @@ -540,8 +540,8 @@ int <a name="f573"></a>Grapher::nCols() const void <a name="f574"></a>Grapher::consumeLine() { -<a name="x2742"></a> line.<a href="ntqiodevice.html#close">close</a>(); - line.<a href="ntqiodevice.html#open">open</a>(IO_ReadOnly); +<a name="x2742"></a> line.<a href="tqiodevice.html#close">close</a>(); + line.<a href="tqiodevice.html#open">open</a>(IO_ReadOnly); <a href="tqtextstream.html">TQTextStream</a> ts( &line ); @@ -588,8 +588,8 @@ void <a name="f574"></a>Grapher::consumeLine() data.<a href="tqptrlist.html#append">append</a>(rowdata); } - line.<a href="ntqiodevice.html#close">close</a>(); - line.<a href="ntqiodevice.html#open">open</a>(IO_WriteOnly|IO_Truncate); + line.<a href="tqiodevice.html#close">close</a>(); + line.<a href="tqiodevice.html#open">open</a>(IO_WriteOnly|IO_Truncate); } <a name="x2752"></a>int Grapher::<a href="qnpinstance.html#write">write</a>(TQNPStream* /*str*/, int /*offset*/, int len, void* buffer) @@ -611,7 +611,7 @@ void <a name="f574"></a>Grapher::consumeLine() case '\r': // ignore; break; default: -<a name="x2744"></a> line.<a href="ntqiodevice.html#putch">putch</a>(ch); +<a name="x2744"></a> line.<a href="tqiodevice.html#putch">putch</a>(ch); } } if ( <a href="qnpinstance.html#widget">widget</a>() ) |