summaryrefslogtreecommitdiffstats
path: root/doc/html/grapher-nsplugin-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/grapher-nsplugin-example.html')
-rw-r--r--doc/html/grapher-nsplugin-example.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/grapher-nsplugin-example.html b/doc/html/grapher-nsplugin-example.html
index 3c8011ed3..b4aec2ac8 100644
--- a/doc/html/grapher-nsplugin-example.html
+++ b/doc/html/grapher-nsplugin-example.html
@@ -76,7 +76,7 @@ Implementation:
// Include other TQt classes.
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
-#include &lt;<a href="qtextstream-h.html">ntqtextstream.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="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qmenubar-h.html">ntqmenubar.h</a>&gt;
@@ -543,7 +543,7 @@ 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 href="ntqtextstream.html">TQTextStream</a> ts( &amp;line );
+ <a href="tqtextstream.html">TQTextStream</a> ts( &amp;line );
if (ncols == 0 ) {
ncols=0;
@@ -559,7 +559,7 @@ void <a name="f574"></a>Grapher::consumeLine()
t = new ColType(Label);
}
<a name="x2770"></a> if (t) typelist.<a href="tqptrlist.html#append">append</a>(t);
-<a name="x2774"></a> } while (!ts.<a href="ntqtextstream.html#atEnd">atEnd</a>());
+<a name="x2774"></a> } while (!ts.<a href="tqtextstream.html#atEnd">atEnd</a>());
coltype = new ColType[ncols];
for (ColType* t = typelist.<a href="tqptrlist.html#first">first</a>(); t; t = typelist.<a href="tqptrlist.html#next">next</a>()) {
coltype[ncols++] = *t;
@@ -567,7 +567,7 @@ void <a name="f574"></a>Grapher::consumeLine()
} else {
int col=0;
Datum *rowdata = new Datum[ncols];
- while ( col &lt; ncols &amp;&amp; !ts.<a href="ntqtextstream.html#atEnd">atEnd</a>() ) {
+ while ( col &lt; ncols &amp;&amp; !ts.<a href="tqtextstream.html#atEnd">atEnd</a>() ) {
switch (coltype[col]) {
case Numeric: {
double value;