diff options
Diffstat (limited to 'doc/html/tooltip-example.html')
-rw-r--r-- | doc/html/tooltip-example.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/tooltip-example.html b/doc/html/tooltip-example.html index f527ab768..b3a81e63f 100644 --- a/doc/html/tooltip-example.html +++ b/doc/html/tooltip-example.html @@ -51,10 +51,10 @@ tool tips on the blue rectangles and a static tool tip on the red one. *****************************************************************************/ #include <<a href="tqwidget-h.html">tqwidget.h</a>> -#include <<a href="qtooltip-h.html">ntqtooltip.h</a>> +#include <<a href="tqtooltip-h.html">tqtooltip.h</a>> -class DynamicTip : public <a href="ntqtooltip.html">TQToolTip</a> +class DynamicTip : public <a href="tqtooltip.html">TQToolTip</a> { public: DynamicTip( <a href="tqwidget.html">TQWidget</a> * parent ); @@ -105,18 +105,18 @@ private: <a name="f251"></a>DynamicTip::DynamicTip( <a href="tqwidget.html">TQWidget</a> * parent ) - : <a href="ntqtooltip.html">TQToolTip</a>( parent ) + : <a href="tqtooltip.html">TQToolTip</a>( parent ) { // no explicit initialization needed } -<a name="x451"></a>void DynamicTip::<a href="ntqtooltip.html#maybeTip">maybeTip</a>( const <a href="ntqpoint.html">TQPoint</a> &pos ) +<a name="x451"></a>void DynamicTip::<a href="tqtooltip.html#maybeTip">maybeTip</a>( const <a href="ntqpoint.html">TQPoint</a> &pos ) { if ( !parentWidget()->inherits( "TellMe" ) ) return; - <a href="ntqrect.html">TQRect</a> r( ((TellMe*)<a href="ntqtooltip.html#parentWidget">parentWidget</a>())->tip(pos) ); + <a href="ntqrect.html">TQRect</a> r( ((TellMe*)<a href="tqtooltip.html#parentWidget">parentWidget</a>())->tip(pos) ); <a name="x448"></a> if ( !r.<a href="ntqrect.html#isValid">isValid</a>() ) return; @@ -136,7 +136,7 @@ private: t = new DynamicTip( this ); -<a name="x450"></a> TQToolTip::<a href="ntqtooltip.html#add">add</a>( this, r3, "this color is called red" ); // <- helpful +<a name="x450"></a> TQToolTip::<a href="tqtooltip.html#add">add</a>( this, r3, "this color is called red" ); // <- helpful } |