summaryrefslogtreecommitdiffstats
path: root/doc/html/tooltip-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tooltip-example.html')
-rw-r--r--doc/html/tooltip-example.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/html/tooltip-example.html b/doc/html/tooltip-example.html
index b3a81e63f..edccc2c2d 100644
--- a/doc/html/tooltip-example.html
+++ b/doc/html/tooltip-example.html
@@ -74,7 +74,7 @@ public:
<a href="ntqrect.html">TQRect</a> tip( const <a href="ntqpoint.html">TQPoint</a> &amp; );
protected:
- void paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * );
+ void paintEvent( <a href="tqpaintevent.html">TQPaintEvent</a> * );
void mousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> * );
void resizeEvent( <a href="qresizeevent.html">TQResizeEvent</a> * );
@@ -100,7 +100,7 @@ private:
#include "tooltip.h"
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
-#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
+#include &lt;<a href="tqpainter-h.html">tqpainter.h</a>&gt;
#include &lt;stdlib.h&gt;
@@ -147,25 +147,25 @@ TellMe::~TellMe()
}
-void TellMe::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> * e )
+void TellMe::<a href="tqwidget.html#paintEvent">paintEvent</a>( <a href="tqpaintevent.html">TQPaintEvent</a> * e )
{
- <a href="ntqpainter.html">TQPainter</a> p( this );
+ <a href="tqpainter.html">TQPainter</a> p( this );
// I try to be efficient here, and repaint only what's needed
-<a name="x446"></a> if ( e-&gt;<a href="qpaintevent.html#rect">rect</a>().intersects( r1 ) ) {
-<a name="x445"></a> p.<a href="ntqpainter.html#setBrush">setBrush</a>( blue );
-<a name="x444"></a> p.<a href="ntqpainter.html#drawRect">drawRect</a>( r1 );
+<a name="x446"></a> if ( e-&gt;<a href="tqpaintevent.html#rect">rect</a>().intersects( r1 ) ) {
+<a name="x445"></a> p.<a href="tqpainter.html#setBrush">setBrush</a>( blue );
+<a name="x444"></a> p.<a href="tqpainter.html#drawRect">drawRect</a>( r1 );
}
- if ( e-&gt;<a href="qpaintevent.html#rect">rect</a>().intersects( r2 ) ) {
- p.<a href="ntqpainter.html#setBrush">setBrush</a>( blue );
- p.<a href="ntqpainter.html#drawRect">drawRect</a>( r2 );
+ if ( e-&gt;<a href="tqpaintevent.html#rect">rect</a>().intersects( r2 ) ) {
+ p.<a href="tqpainter.html#setBrush">setBrush</a>( blue );
+ p.<a href="tqpainter.html#drawRect">drawRect</a>( r2 );
}
- if ( e-&gt;<a href="qpaintevent.html#rect">rect</a>().intersects( r3 ) ) {
- p.<a href="ntqpainter.html#setBrush">setBrush</a>( red );
- p.<a href="ntqpainter.html#drawRect">drawRect</a>( r3 );
+ if ( e-&gt;<a href="tqpaintevent.html#rect">rect</a>().intersects( r3 ) ) {
+ p.<a href="tqpainter.html#setBrush">setBrush</a>( red );
+ p.<a href="tqpainter.html#drawRect">drawRect</a>( r3 );
}
}