summaryrefslogtreecommitdiffstats
path: root/doc/html/customstyles.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/customstyles.html')
-rw-r--r--doc/html/customstyles.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/customstyles.html b/doc/html/customstyles.html
index 6ff40962..cf5827fb 100644
--- a/doc/html/customstyles.html
+++ b/doc/html/customstyles.html
@@ -80,9 +80,9 @@ public:
~CustomStyle();
void drawPrimitive( PrimitiveElement pe,
- <a href="ntqpainter.html">TQPainter</a> *p,
+ <a href="tqpainter.html">TQPainter</a> *p,
const <a href="ntqrect.html">TQRect</a> &amp; r,
- const <a href="qcolorgroup.html">TQColorGroup</a> &amp; cg,
+ const <a href="tqcolorgroup.html">TQColorGroup</a> &amp; cg,
SFlags flags = Style_Default,
const <a href="tqstyleoption.html">TQStyleOption</a> &amp; = TQStyleOption::Default ) const;
@@ -109,9 +109,9 @@ CustomStyle::~CustomStyle()
}
void CustomStyle::drawPrimitive( PrimitiveElement pe,
- <a href="ntqpainter.html">TQPainter</a> * p,
+ <a href="tqpainter.html">TQPainter</a> * p,
const <a href="ntqrect.html">TQRect</a> &amp; r,
- const <a href="qcolorgroup.html">TQColorGroup</a> &amp; cg,
+ const <a href="tqcolorgroup.html">TQColorGroup</a> &amp; cg,
SFlags flags,
const <a href="tqstyleoption.html">TQStyleOption</a> &amp; opt ) const
{
@@ -155,13 +155,13 @@ void CustomStyle::drawPrimitive( PrimitiveElement pe,
// use different colors to indicate that the arrow is
// enabled/disabled
if ( flags &amp; Style_Enabled ) {
- p-&gt;<a href="ntqpainter.html#setPen">setPen</a>( cg.<a href="qcolorgroup.html#mid">mid</a>() );
- p-&gt;<a href="ntqpainter.html#setBrush">setBrush</a>( cg.<a href="qcolorgroup.html#brush">brush</a>( TQColorGroup::ButtonText ) );
+ p-&gt;<a href="tqpainter.html#setPen">setPen</a>( cg.<a href="tqcolorgroup.html#mid">mid</a>() );
+ p-&gt;<a href="tqpainter.html#setBrush">setBrush</a>( cg.<a href="tqcolorgroup.html#brush">brush</a>( TQColorGroup::ButtonText ) );
} else {
- p-&gt;<a href="ntqpainter.html#setPen">setPen</a>( cg.<a href="qcolorgroup.html#buttonText">buttonText</a>() );
- p-&gt;<a href="ntqpainter.html#setBrush">setBrush</a>( cg.<a href="qcolorgroup.html#brush">brush</a>( TQColorGroup::Mid ) );
+ p-&gt;<a href="tqpainter.html#setPen">setPen</a>( cg.<a href="tqcolorgroup.html#buttonText">buttonText</a>() );
+ p-&gt;<a href="tqpainter.html#setBrush">setBrush</a>( cg.<a href="tqcolorgroup.html#brush">brush</a>( TQColorGroup::Mid ) );
}
- p-&gt;<a href="ntqpainter.html#drawPolygon">drawPolygon</a>( pa );
+ p-&gt;<a href="tqpainter.html#drawPolygon">drawPolygon</a>( pa );
} else {
// let the base style handle the other primitives
TQWindowsStyle::<a href="tqstyle.html#drawPrimitive">drawPrimitive</a>( pe, p, r, cg, flags, data );