summaryrefslogtreecommitdiffstats
path: root/doc/html/grapher-nsplugin-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
commit252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch)
treeb48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/html/grapher-nsplugin-example.html
parent87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff)
downloadtqt3-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.html16
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 &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
#include &lt;<a href="tqtextstream-h.html">tqtextstream.h</a>&gt;
-#include &lt;<a href="qbuffer-h.html">ntqbuffer.h</a>&gt;
+#include &lt;<a href="tqbuffer-h.html">tqbuffer.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="tqmenubar-h.html">tqmenubar.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
@@ -477,7 +477,7 @@ private:
void consumeLine();
<a href="tqptrlist.html">TQPtrList</a>&lt;Datum&gt; 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( &amp;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>() )