summaryrefslogtreecommitdiffstats
path: root/doc/html/chart-setdataform-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/chart-setdataform-cpp.html')
-rw-r--r--doc/html/chart-setdataform-cpp.html14
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 &lt;<a href="qcolordialog-h.html">ntqcolordialog.h</a>&gt;
+#include &lt;<a href="tqcolordialog-h.html">tqcolordialog.h</a>&gt;
#include &lt;<a href="qcombobox-h.html">ntqcombobox.h</a>&gt;
#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
@@ -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-&gt;<a href="ntqtable.html#setPixmap">setPixmap</a>( i, 1, pix );
- table-&gt;<a href="ntqtable.html#setText">setText</a>( i, 1, color.<a href="ntqcolor.html#name">name</a>() );
+ table-&gt;<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 &lt; 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-&gt;<a href="ntqtable.html#setPixmap">setPixmap</a>( i, 4, pix );
- table-&gt;<a href="ntqtable.html#setText">setText</a>( i, 4, color.<a href="ntqcolor.html#name">name</a>() );
+ table-&gt;<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-&gt;<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-&gt;<a href="ntqtable.html#pixmap">pixmap</a>( row, col );
pix.<a href="ntqpixmap.html#fill">fill</a>( color );
table-&gt;<a href="ntqtable.html#setPixmap">setPixmap</a>( row, col, pix );
- table-&gt;<a href="ntqtable.html#setText">setText</a>( row, col, color.<a href="ntqcolor.html#name">name</a>() );
+ table-&gt;<a href="ntqtable.html#setText">setText</a>( row, col, color.<a href="tqcolor.html#name">name</a>() );
}
}