diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-02 21:37:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-06 11:24:55 +0900 |
commit | 7552c6d73043b1040139033f6864db48ae5446cf (patch) | |
tree | f90d24d072dd3ee6a3f909bf7778abc7669f03ef /doc/html/tooltip-example.html | |
parent | c113da2069b66130f67a0f27c699e1cec83588a5 (diff) | |
download | tqt3-7552c6d73043b1040139033f6864db48ae5446cf.tar.gz tqt3-7552c6d73043b1040139033f6864db48ae5446cf.zip |
Rename main window nt* related files to equivalent tq*. The file
"ntqsession.h" was totally unnecessary and has been removed.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 } |