From 0cf411b09cf5d8970b873a338a69eae98d5ce5d8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 8 Jun 2024 12:56:43 +0900 Subject: Rename text nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/chart-element-cpp.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/chart-element-cpp.html') diff --git a/doc/html/chart-element-cpp.html b/doc/html/chart-element-cpp.html index 8851ba0be..3ee388b98 100644 --- a/doc/html/chart-element-cpp.html +++ b/doc/html/chart-element-cpp.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
#include "element.h"
 
 #include <tqstringlist.h>
-#include <ntqtextstream.h>
+#include <tqtextstream.h>
 
 const char FIELD_SEP = ':';
 const char PROPOINT_SEP = ';';
@@ -91,7 +91,7 @@ void Element::setProY( int index, double value )
 }
 
 
-TQTextStream &operator<<( TQTextStream &s, const Element &element )
+TQTextStream &operator<<( TQTextStream &s, const Element &element )
 {
     s << element.value() << FIELD_SEP
       << element.valueColor().name() << FIELD_SEP
@@ -109,9 +109,9 @@ TQTextStream &operator<<( TQTextStreamTQTextStream &s, Element &element )
+TQTextStream &operator>>( TQTextStream &s, Element &element )
 {
-    TQString data = s.readLine();
+    TQString data = s.readLine();
     element.setValue( Element::INVALID );
 
     int errors = 0;
-- 
cgit v1.2.3