summaryrefslogtreecommitdiffstats
path: root/doc/html/tooltip-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-02 21:37:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-06 11:24:55 +0900
commit7552c6d73043b1040139033f6864db48ae5446cf (patch)
treef90d24d072dd3ee6a3f909bf7778abc7669f03ef /doc/html/tooltip-example.html
parentc113da2069b66130f67a0f27c699e1cec83588a5 (diff)
downloadtqt3-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.html12
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 &lt;<a href="tqwidget-h.html">tqwidget.h</a>&gt;
-#include &lt;<a href="qtooltip-h.html">ntqtooltip.h</a>&gt;
+#include &lt;<a href="tqtooltip-h.html">tqtooltip.h</a>&gt;
-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> &amp;pos )
+<a name="x451"></a>void DynamicTip::<a href="tqtooltip.html#maybeTip">maybeTip</a>( const <a href="ntqpoint.html">TQPoint</a> &amp;pos )
{
if ( !parentWidget()-&gt;inherits( "TellMe" ) )
return;
- <a href="ntqrect.html">TQRect</a> r( ((TellMe*)<a href="ntqtooltip.html#parentWidget">parentWidget</a>())-&gt;tip(pos) );
+ <a href="ntqrect.html">TQRect</a> r( ((TellMe*)<a href="tqtooltip.html#parentWidget">parentWidget</a>())-&gt;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" ); // &lt;- helpful
+<a name="x450"></a> TQToolTip::<a href="tqtooltip.html#add">add</a>( this, r3, "this color is called red" ); // &lt;- helpful
}