diff options
Diffstat (limited to 'doc/html/chart-setdataform-cpp.html')
-rw-r--r-- | doc/html/chart-setdataform-cpp.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/chart-setdataform-cpp.html b/doc/html/chart-setdataform-cpp.html index bc911fe24..737eb5574 100644 --- a/doc/html/chart-setdataform-cpp.html +++ b/doc/html/chart-setdataform-cpp.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } <pre>#include "setdataform.h" #include "chartform.h" -#include <<a href="qcolordialog-h.html">ntqcolordialog.h</a>> +#include <<a href="tqcolordialog-h.html">tqcolordialog.h</a>> #include <<a href="qcombobox-h.html">ntqcombobox.h</a>> #include <<a href="qlayout-h.html">ntqlayout.h</a>> #include <<a href="qpixmap-h.html">ntqpixmap.h</a>> @@ -154,10 +154,10 @@ const int MAX_PATTERNS = 14; TQString( "%1" ).arg( element.value(), 0, 'f', m_decimalPlaces ) ); - <a href="ntqcolor.html">TQColor</a> color = element.valueColor(); + <a href="tqcolor.html">TQColor</a> color = element.valueColor(); pix.<a href="ntqpixmap.html#fill">fill</a>( color ); table-><a href="ntqtable.html#setPixmap">setPixmap</a>( i, 1, pix ); - table-><a href="ntqtable.html#setText">setText</a>( i, 1, color.<a href="ntqcolor.html#name">name</a>() ); + table-><a href="ntqtable.html#setText">setText</a>( i, 1, color.<a href="tqcolor.html#name">name</a>() ); <a href="ntqcombobox.html">TQComboBox</a> *combobox = new <a href="ntqcombobox.html">TQComboBox</a>; for ( int j = 0; j < MAX_PATTERNS; ++j ) @@ -170,7 +170,7 @@ const int MAX_PATTERNS = 14; color = element.labelColor(); pix.<a href="ntqpixmap.html#fill">fill</a>( color ); table-><a href="ntqtable.html#setPixmap">setPixmap</a>( i, 4, pix ); - table-><a href="ntqtable.html#setText">setText</a>( i, 4, color.<a href="ntqcolor.html#name">name</a>() ); + table-><a href="ntqtable.html#setText">setText</a>( i, 4, color.<a href="tqcolor.html#name">name</a>() ); } } @@ -209,14 +209,14 @@ void SetDataForm::setColor( int row, int col ) if ( !( col == 1 || col == 4 ) ) return; - <a href="ntqcolor.html">TQColor</a> color = TQColorDialog::<a href="ntqcolordialog.html#getColor">getColor</a>( + <a href="tqcolor.html">TQColor</a> color = TQColorDialog::<a href="tqcolordialog.html#getColor">getColor</a>( TQColor( table-><a href="ntqtable.html#text">text</a>( row, col ) ), this, "color dialog" ); - if ( color.<a href="ntqcolor.html#isValid">isValid</a>() ) { + if ( color.<a href="tqcolor.html#isValid">isValid</a>() ) { <a href="ntqpixmap.html">TQPixmap</a> pix = table-><a href="ntqtable.html#pixmap">pixmap</a>( row, col ); pix.<a href="ntqpixmap.html#fill">fill</a>( color ); table-><a href="ntqtable.html#setPixmap">setPixmap</a>( row, col, pix ); - table-><a href="ntqtable.html#setText">setText</a>( row, col, color.<a href="ntqcolor.html#name">name</a>() ); + table-><a href="ntqtable.html#setText">setText</a>( row, col, color.<a href="tqcolor.html#name">name</a>() ); } } |