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.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/chart-setdataform-cpp.html b/doc/html/chart-setdataform-cpp.html
index 737eb5574..186ae6329 100644
--- a/doc/html/chart-setdataform-cpp.html
+++ b/doc/html/chart-setdataform-cpp.html
@@ -38,7 +38,7 @@ body { background: #ffffff; color: black; }
#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;
+#include &lt;<a href="tqpixmap-h.html">tqpixmap.h</a>&gt;
#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
#include &lt;<a href="qtable-h.html">ntqtable.h</a>&gt;
@@ -116,7 +116,7 @@ const int MAX_PATTERNS = 14;
tableButtonBox-&gt;<a href="qboxlayout.html#addLayout">addLayout</a>( buttonBox );
- <a href="tqobject.html#connect">connect</a>( table, TQ_SIGNAL( <a href="ntqtable.html#clicked">clicked</a>(int,int,int,const <a href="ntqpoint.html">TQPoint</a>&amp;) ),
+ <a href="tqobject.html#connect">connect</a>( table, TQ_SIGNAL( <a href="ntqtable.html#clicked">clicked</a>(int,int,int,const <a href="tqpoint.html">TQPoint</a>&amp;) ),
this, TQ_SLOT( setColor(int,int) ) );
<a href="tqobject.html#connect">connect</a>( table, TQ_SIGNAL( <a href="ntqtable.html#currentChanged">currentChanged</a>(int,int) ),
this, TQ_SLOT( currentChanged(int,int) ) );
@@ -142,8 +142,8 @@ const int MAX_PATTERNS = 14;
patterns[12] = TQPixmap( pattern13 );
patterns[13] = TQPixmap( pattern14 );
- <a href="ntqrect.html">TQRect</a> rect = table-&gt;<a href="ntqtable.html#cellRect">cellRect</a>( 0, 1 );
- <a href="ntqpixmap.html">TQPixmap</a> pix( rect.<a href="ntqrect.html#width">width</a>(), rect.<a href="ntqrect.html#height">height</a>() );
+ <a href="tqrect.html">TQRect</a> rect = table-&gt;<a href="ntqtable.html#cellRect">cellRect</a>( 0, 1 );
+ <a href="tqpixmap.html">TQPixmap</a> pix( rect.<a href="tqrect.html#width">width</a>(), rect.<a href="tqrect.html#height">height</a>() );
for ( int i = 0; i &lt; ChartForm::MAX_ELEMENTS; ++i ) {
Element element = (*m_elements)[i];
@@ -155,7 +155,7 @@ const int MAX_PATTERNS = 14;
m_decimalPlaces ) );
<a href="tqcolor.html">TQColor</a> color = element.valueColor();
- pix.<a href="ntqpixmap.html#fill">fill</a>( color );
+ pix.<a href="tqpixmap.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="tqcolor.html#name">name</a>() );
@@ -168,7 +168,7 @@ const int MAX_PATTERNS = 14;
table-&gt;<a href="ntqtable.html#setText">setText</a>( i, 3, element.label() );
color = element.labelColor();
- pix.<a href="ntqpixmap.html#fill">fill</a>( color );
+ pix.<a href="tqpixmap.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="tqcolor.html#name">name</a>() );
}
@@ -213,8 +213,8 @@ void SetDataForm::setColor( int row, int col )
TQColor( table-&gt;<a href="ntqtable.html#text">text</a>( row, col ) ),
this, "color dialog" );
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 );
+ <a href="tqpixmap.html">TQPixmap</a> pix = table-&gt;<a href="ntqtable.html#pixmap">pixmap</a>( row, col );
+ pix.<a href="tqpixmap.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="tqcolor.html#name">name</a>() );
}