summaryrefslogtreecommitdiffstats
path: root/doc/html/t10-cannon-cpp.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/t10-cannon-cpp.html')
-rw-r--r--doc/html/t10-cannon-cpp.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/html/t10-cannon-cpp.html b/doc/html/t10-cannon-cpp.html
index 7f1b1865..e6f41cae 100644
--- a/doc/html/t10-cannon-cpp.html
+++ b/doc/html/t10-cannon-cpp.html
@@ -40,7 +40,7 @@ body { background: #ffffff; color: black; }
#include "cannon.h"
#include &lt;<a href="tqpainter-h.html">tqpainter.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;
<a name="f48"></a>CannonField::CannonField( <a href="tqwidget.html">TQWidget</a> *parent, const char *name )
@@ -82,28 +82,28 @@ void CannonField::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="tq
if ( !e-&gt;<a href="tqpaintevent.html#rect">rect</a>().intersects( cannonRect() ) )
return;
- <a href="ntqrect.html">TQRect</a> cr = cannonRect();
- <a href="ntqpixmap.html">TQPixmap</a> pix( cr.<a href="ntqrect.html#size">size</a>() );
- pix.<a href="ntqpixmap.html#fill">fill</a>( this, cr.<a href="ntqrect.html#topLeft">topLeft</a>() );
+ <a href="tqrect.html">TQRect</a> cr = cannonRect();
+ <a href="tqpixmap.html">TQPixmap</a> pix( cr.<a href="tqrect.html#size">size</a>() );
+ pix.<a href="tqpixmap.html#fill">fill</a>( this, cr.<a href="tqrect.html#topLeft">topLeft</a>() );
<a href="tqpainter.html">TQPainter</a> p( &amp;pix );
p.<a href="tqpainter.html#setBrush">setBrush</a>( blue );
p.<a href="tqpainter.html#setPen">setPen</a>( NoPen );
- p.<a href="tqpainter.html#translate">translate</a>( 0, pix.<a href="ntqpixmap.html#height">height</a>() - 1 );
+ p.<a href="tqpainter.html#translate">translate</a>( 0, pix.<a href="tqpixmap.html#height">height</a>() - 1 );
p.<a href="tqpainter.html#drawPie">drawPie</a>( TQRect( -35,-35, 70, 70 ), 0, 90*16 );
p.<a href="tqpainter.html#rotate">rotate</a>( -ang );
p.<a href="tqpainter.html#drawRect">drawRect</a>( TQRect(33, -4, 15, 8) );
p.<a href="tqpainter.html#end">end</a>();
p.<a href="tqpainter.html#begin">begin</a>( this );
- p.<a href="tqpainter.html#drawPixmap">drawPixmap</a>( cr.<a href="ntqrect.html#topLeft">topLeft</a>(), pix );
+ p.<a href="tqpainter.html#drawPixmap">drawPixmap</a>( cr.<a href="tqrect.html#topLeft">topLeft</a>(), pix );
}
TQRect <a name="f51"></a>CannonField::cannonRect() const
{
- <a href="ntqrect.html">TQRect</a> r( 0, 0, 50, 50 );
- r.<a href="ntqrect.html#moveBottomLeft">moveBottomLeft</a>( <a href="tqwidget.html#rect">rect</a>().bottomLeft() );
+ <a href="tqrect.html">TQRect</a> r( 0, 0, 50, 50 );
+ r.<a href="tqrect.html#moveBottomLeft">moveBottomLeft</a>( <a href="tqwidget.html#rect">rect</a>().bottomLeft() );
return r;
}