summaryrefslogtreecommitdiffstats
path: root/examples/helpsystem
diff options
context:
space:
mode:
Diffstat (limited to 'examples/helpsystem')
-rw-r--r--examples/helpsystem/helpsystem.doc10
-rw-r--r--examples/helpsystem/whatsthis.h2
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/helpsystem/helpsystem.doc b/examples/helpsystem/helpsystem.doc
index 89107b08..8c090696 100644
--- a/examples/helpsystem/helpsystem.doc
+++ b/examples/helpsystem/helpsystem.doc
@@ -8,7 +8,7 @@
that can be used to provide context sensitive help
in an application.
- It uses TQToolTip and QWhatsThis to provide both static and
+ It uses TQToolTip and TQWhatsThis to provide both static and
dynamic balloon help for the widgets in the application, and
TQToolTipGroup to display extended information for each tooltip
in the statusbar. QAssistantClient is used to display help
@@ -77,7 +77,7 @@
The WhatsThis class is a subclass of both TQObject and
- QWhatsThis and serves as a base class for the HeaderWhatsThis
+ TQWhatsThis and serves as a base class for the HeaderWhatsThis
and TableWhatsThis classes. \footnote Note that moc requires that TQObject
is the first base class. \endfootnote WhatsThis
reimplements clicked() which will be called when the user clicks
@@ -91,7 +91,7 @@
but some widgets, like QTable, are more complex and have a
viewport() widget which receives the events. If such a widget
is passed to the constructor it will propagate the parameter to
- the QWhatsThis constructor and store the TQWidget pointer itself
+ the TQWhatsThis constructor and store the TQWidget pointer itself
in it's member variable to allow easier use of the TQWidget API
later on.
\skipto bool WhatsThis::clicked
@@ -124,7 +124,7 @@
a string which states the header's orientation and section.
\footnote
Note that we have to explicitly scope the orientation
- (TQObject or QWhatsThis) since HeaderWhatsThis uses multiple
+ (TQObject or TQWhatsThis) since HeaderWhatsThis uses multiple
inheritance. \endfootnote
\printuntil }
@@ -165,7 +165,7 @@
The MainWindow constructor creates an instance of
QAssistantClient using TQString::null as the first argument
so that the system path is used.
- \printto QWhatsThis::whatsThisButton
+ \printto TQWhatsThis::whatsThisButton
A QTable is used as the central widget and the table, the menus
and the toolbar are populated.
diff --git a/examples/helpsystem/whatsthis.h b/examples/helpsystem/whatsthis.h
index 85a77fee..d9cda8dd 100644
--- a/examples/helpsystem/whatsthis.h
+++ b/examples/helpsystem/whatsthis.h
@@ -10,7 +10,7 @@
#ifndef WHATSTHIS_H
#define WHATSTHIS_H
-#include <ntqwhatsthis.h>
+#include <tqwhatsthis.h>
class TQHeader;
class TQTable;