From ea318d1431c89e647598c510c4245c6571aa5f46 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 26 Jan 2012 23:32:43 -0600 Subject: Update to latest tqt3 automated conversion --- doc/html/chart-element-h.html | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'doc/html/chart-element-h.html') diff --git a/doc/html/chart-element-h.html b/doc/html/chart-element-h.html index cdc93fd99..b5efd1db9 100644 --- a/doc/html/chart-element-h.html +++ b/doc/html/chart-element-h.html @@ -35,10 +35,10 @@ body { background: #ffffff; color: black; }
#ifndef ELEMENT_H
 #define ELEMENT_H
 
-#include <qcolor.h>
-#include <qnamespace.h>
-#include <qstring.h>
-#include <qvaluevector.h>
+#include <ntqcolor.h>
+#include <ntqnamespace.h>
+#include <ntqstring.h>
+#include <ntqvaluevector.h>
 
 class Element;
 
@@ -59,8 +59,8 @@ public:
 
     Element( double value = INVALID, TQColor valueColor = TQt::gray,
              int valuePattern = TQt::SolidPattern,
-             const TQString& label = TQString::null,
-             TQColor labelColor = TQt::black ) {
+             const TQString& label = TQString::null,
+             TQColor labelColor = TQt::black ) {
         init( value, valueColor, valuePattern, label, labelColor );
         for ( int i = 0; i < MAX_PROPOINTS * 2; ++i )
             m_propoints[i] = NO_PROPORTION;
@@ -70,24 +70,24 @@ public:
     bool isValid() const { return m_value > EPSILON; }
 
     double value() const { return m_value; }
-    TQColor valueColor() const { return m_valueColor; }
+    TQColor valueColor() const { return m_valueColor; }
     int valuePattern() const { return m_valuePattern; }
-    TQString label() const { return m_label; }
-    TQColor labelColor() const { return m_labelColor; }
+    TQString label() const { return m_label; }
+    TQColor labelColor() const { return m_labelColor; }
     double proX( int index ) const;
     double proY( int index ) const;
 
     void set( double value = INVALID, TQColor valueColor = TQt::gray,
               int valuePattern = TQt::SolidPattern,
-              const TQString& label = TQString::null,
-              TQColor labelColor = TQt::black ) {
+              const TQString& label = TQString::null,
+              TQColor labelColor = TQt::black ) {
         init( value, valueColor, valuePattern, label, labelColor );
     }
     void setValue( double value ) { m_value = value; }
-    void setValueColor( TQColor valueColor ) { m_valueColor = valueColor; }
+    void setValueColor( TQColor valueColor ) { m_valueColor = valueColor; }
     void setValuePattern( int valuePattern );
-    void setLabel( const TQString& label ) { m_label = label; }
-    void setLabelColor( TQColor labelColor ) { m_labelColor = labelColor; }
+    void setLabel( const TQString& label ) { m_label = label; }
+    void setLabelColor( TQColor labelColor ) { m_labelColor = labelColor; }
     void setProX( int index, double value );
     void setProY( int index, double value );
 
@@ -101,19 +101,19 @@ public:
 
 private:
     void init( double value, TQColor valueColor, int valuePattern,
-               const TQString& label, TQColor labelColor );
+               const TQString& label, TQColor labelColor );
 
     double m_value;
-    TQColor m_valueColor;
+    TQColor m_valueColor;
     int m_valuePattern;
-    TQString m_label;
-    TQColor m_labelColor;
+    TQString m_label;
+    TQColor m_labelColor;
     double m_propoints[2 * MAX_PROPOINTS];
 };
 
 
-TQTextStream &operator<<( TQTextStream&, const Element& );
-TQTextStream &operator>>( TQTextStream&, Element& );
+TQTextStream &operator<<( TQTextStream&, const Element& );
+TQTextStream &operator>>( TQTextStream&, Element& );
 
 #endif
 
-- cgit v1.2.1