diff options
author | Michele Calgaro <[email protected]> | 2024-06-08 12:56:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-06-08 12:56:43 +0900 |
commit | 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 (patch) | |
tree | 107cf55759cc3138bb1e0035b479bcd92127403a /doc/html/chart-chartform_files-cpp.html | |
parent | e6077c30d14e9d662e8843c554db86c0d366d0b6 (diff) | |
download | tqt3-0cf411b09cf5d8970b873a338a69eae98d5ce5d8.tar.gz tqt3-0cf411b09cf5d8970b873a338a69eae98d5ce5d8.zip |
Rename text nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/chart-chartform_files-cpp.html')
-rw-r--r-- | doc/html/chart-chartform_files-cpp.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/chart-chartform_files-cpp.html b/doc/html/chart-chartform_files-cpp.html index 48705ab2d..bbcb75b87 100644 --- a/doc/html/chart-chartform_files-cpp.html +++ b/doc/html/chart-chartform_files-cpp.html @@ -53,11 +53,11 @@ void <a name="f172"></a>ChartForm::load( const <a href="tqstring.html">TQString< init(); // Make sure we have colours m_filename = filename; - <a href="ntqtextstream.html">TQTextStream</a> ts( &file ); + <a href="tqtextstream.html">TQTextStream</a> ts( &file ); Element element; int errors = 0; int i = 0; - while ( !ts.<a href="ntqtextstream.html#eof">eof</a>() ) { + while ( !ts.<a href="tqtextstream.html#eof">eof</a>() ) { ts >> element; if ( element.isValid() ) m_elements[i++] = element; @@ -103,7 +103,7 @@ void <a name="f173"></a>ChartForm::fileSave() arg( m_filename ), 2000 ); return; } - <a href="ntqtextstream.html">TQTextStream</a> ts( &file ); + <a href="tqtextstream.html">TQTextStream</a> ts( &file ); for ( int i = 0; i < MAX_ELEMENTS; ++i ) if ( m_elements[i].isValid() ) ts << m_elements[i]; |