diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /examples/helpsystem | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip |
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/helpsystem')
-rw-r--r-- | examples/helpsystem/helpsystem.doc | 10 | ||||
-rw-r--r-- | examples/helpsystem/whatsthis.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/helpsystem/helpsystem.doc b/examples/helpsystem/helpsystem.doc index 89107b08e..8c0906964 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 85a77fee5..d9cda8ddc 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; |