From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/chart-element-h.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 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 fa152018b..b6959af64 100644 --- a/doc/html/chart-element-h.html +++ b/doc/html/chart-element-h.html @@ -37,7 +37,7 @@ body { background: #ffffff; color: black; } #include <ntqcolor.h> #include <ntqnamespace.h> -#include <ntqstring.h> +#include <tqstring.h> #include <tqvaluevector.h> class Element; @@ -59,7 +59,7 @@ public: Element( double value = INVALID, TQColor valueColor = TQt::gray, int valuePattern = TQt::SolidPattern, - const TQString& label = TQString::null, + const TQString& label = TQString::null, TQColor labelColor = TQt::black ) { init( value, valueColor, valuePattern, label, labelColor ); for ( int i = 0; i < MAX_PROPOINTS * 2; ++i ) @@ -72,21 +72,21 @@ public: double value() const { return m_value; } TQColor valueColor() const { return m_valueColor; } int valuePattern() const { return m_valuePattern; } - TQString label() const { return m_label; } + 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, + 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 setValuePattern( int valuePattern ); - void setLabel( const TQString& label ) { m_label = label; } + 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,12 +101,12 @@ 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; int m_valuePattern; - TQString m_label; + TQString m_label; TQColor m_labelColor; double m_propoints[2 * MAX_PROPOINTS]; }; -- cgit v1.2.3