summaryrefslogtreecommitdiffstats
path: root/doc/html/helpsystem-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/helpsystem-example.html')
-rw-r--r--doc/html/helpsystem-example.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/html/helpsystem-example.html b/doc/html/helpsystem-example.html
index 5afaeebfd..5e19cd6c2 100644
--- a/doc/html/helpsystem-example.html
+++ b/doc/html/helpsystem-example.html
@@ -37,7 +37,7 @@ body { background: #ffffff; color: black; }
This example demonstrates the different TQt classes
that can be used to provide context sensitive help
in an application.
-<p> It uses <a href="tqtooltip.html">TQToolTip</a> and <a href="ntqwhatsthis.html">TQWhatsThis</a> to provide both static and
+<p> It uses <a href="tqtooltip.html">TQToolTip</a> and <a href="tqwhatsthis.html">TQWhatsThis</a> to provide both static and
dynamic balloon help for the widgets in the application, and
<a href="tqtooltipgroup.html">TQToolTipGroup</a> to display extended information for each tooltip
in the statusbar. <a href="ntqassistantclient.html">TQAssistantClient</a> is used to display help
@@ -163,13 +163,13 @@ in a tooltip and to provide text for the <a href="tqtooltipgroup.html">TQToolTip
<p> The WhatsThis class is a subclass of both <a href="tqobject.html">TQObject</a> and
-<a href="ntqwhatsthis.html">TQWhatsThis</a> and serves as a base class for the HeaderWhatsThis
+<a href="tqwhatsthis.html">TQWhatsThis</a> and serves as a base class for the HeaderWhatsThis
and TableWhatsThis classes. <a href="#footnote1"><sup>(1)</sup></a><a name="footnote-call1"></a> WhatsThis
reimplements clicked() which will be called when the user clicks
inside the "What's this?" window. It also declares a signal
linkClicked() which will be emitted when a hyperlink is clicked.
<pre> WhatsThis::WhatsThis( <a href="tqwidget.html">TQWidget</a> *w, TQWidget *watch )
- : <a href="ntqwhatsthis.html">TQWhatsThis</a>( watch ? watch : w ), widget( w )
+ : <a href="tqwhatsthis.html">TQWhatsThis</a>( watch ? watch : w ), widget( w )
{
}
</pre>
@@ -379,7 +379,7 @@ so that the system path is used.
</pre>
<p> A <a href="ntqtable.html">TQTable</a> is used as the central widget and the table, the menus
and the toolbar are populated.
-<pre> <a name="x2699"></a> TQWhatsThis::<a href="ntqwhatsthis.html#whatsThisButton">whatsThisButton</a>( toolbar );
+<pre> <a name="x2699"></a> TQWhatsThis::<a href="tqwhatsthis.html#whatsThisButton">whatsThisButton</a>( toolbar );
</pre>
<p> The static function whatsThisButton() creates a <a href="tqtoolbutton.html">TQToolButton</a>
which will enter "What's this?" mode when clicked.
@@ -406,7 +406,7 @@ specifies the widget we want to add dynamic tooltips for and the
second argument specifies the <a href="tqtooltipgroup.html">TQToolTipGroup</a> they should belong
to.
<pre> // set up whats this
- <a name="x2698"></a> TQWhatsThis::<a href="ntqwhatsthis.html#add">add</a> ( assistantButton, "This is a toolbutton which opens Assistant" );
+ <a name="x2698"></a> TQWhatsThis::<a href="tqwhatsthis.html#add">add</a> ( assistantButton, "This is a toolbutton which opens Assistant" );
HeaderWhatsThis *horizontalWhatsThis = new HeaderWhatsThis( table-&gt;<a href="ntqtable.html#horizontalHeader">horizontalHeader</a>() );
HeaderWhatsThis *verticalWhatsThis = new HeaderWhatsThis( table-&gt;<a href="ntqtable.html#verticalHeader">verticalHeader</a>() );
@@ -480,7 +480,7 @@ Note that <a href="moc.html#moc">moc</a> requires that <a href="tqobject.html">T
is the first base class. <a href="#footnote-call1">Back...</a> <li><a name="footnote2"></a>
Note that we have to explicitly scope the orientation
-(TQObject or <a href="ntqwhatsthis.html">TQWhatsThis</a>) since HeaderWhatsThis uses multiple
+(TQObject or <a href="tqwhatsthis.html">TQWhatsThis</a>) since HeaderWhatsThis uses multiple
inheritance. <a href="#footnote-call2">Back...</a></ol>
</hr><p>See also <a href="examples.html">Examples</a>.