diff options
Diffstat (limited to 'doc/html/grapher-nsplugin-example.html')
-rw-r--r-- | doc/html/grapher-nsplugin-example.html | 8 |
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 <<a href="qpainter-h.html">ntqpainter.h</a>> -#include <<a href="qtextstream-h.html">ntqtextstream.h</a>> +#include <<a href="tqtextstream-h.html">tqtextstream.h</a>> #include <<a href="qbuffer-h.html">ntqbuffer.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> #include <<a href="qmenubar-h.html">ntqmenubar.h</a>> @@ -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( &line ); + <a href="tqtextstream.html">TQTextStream</a> ts( &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 < ncols && !ts.<a href="ntqtextstream.html#atEnd">atEnd</a>() ) { + while ( col < ncols && !ts.<a href="tqtextstream.html#atEnd">atEnd</a>() ) { switch (coltype[col]) { case Numeric: { double value; |