From 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Jun 2024 23:07:22 +0900 Subject: Rename ntqwidget* related files to equivalent tqwidget* Signed-off-by: Michele Calgaro --- doc/html/helpsystem-example.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/helpsystem-example.html') diff --git a/doc/html/helpsystem-example.html b/doc/html/helpsystem-example.html index 300b2499e..bbb45097f 100644 --- a/doc/html/helpsystem-example.html +++ b/doc/html/helpsystem-example.html @@ -60,7 +60,7 @@ a TQTable as the central widget. TQHeader and TQTable by reimplementing maybeTip(). The constructors differ from the TQToolTip constructor in having a TQHeader and a TQTable respectively as the first parameter for -the constructor instead of a TQWidget. This is because +the constructor instead of a TQWidget. This is because we want to ensure that only headers and tables can be passed as arguments. A TQToolTipGroup can be provided as the second argument to show tooltips in, for example a statusbar. @@ -147,16 +147,16 @@ in a tooltip and to provide text for the TQToolTipG { TQ_OBJECT public: - WhatsThis( TQWidget *w, TQWidget *watch = 0 ); + WhatsThis( TQWidget *w, TQWidget *watch = 0 ); bool clicked( const TQString &link ); - TQWidget *parentWidget() const; + TQWidget *parentWidget() const; signals: void linkClicked( const TQString &link ); private: - TQWidget *widget; + TQWidget *widget; }; @@ -168,7 +168,7 @@ and TableWhatsThis classes. (1) WhatsThis::WhatsThis( TQWidget *w, TQWidget *watch ) +
    WhatsThis::WhatsThis( TQWidget *w, TQWidget *watch )
     : TQWhatsThis( watch ? watch : w ), widget( w )
     {
     }
@@ -179,7 +179,7 @@ one which receives the events. Normally this is the same widget,
 but some widgets, like TQTable, 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 TQWhatsThis 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.
 
    bool WhatsThis::clicked( const TQString &link )
@@ -368,7 +368,7 @@ so that the system path is used.
         menuBar()->insertItem( "&File", fileMenu );
         menuBar()->insertItem( "&Help", helpMenu );
 
-        int fileId = fileMenu->insertItem( "E&xit", this, TQ_SLOT(close()) );
+        int fileId = fileMenu->insertItem( "E&xit", this, TQ_SLOT(close()) );
 
         int helpId = helpMenu->insertItem( "Open Assistant", this, TQ_SLOT(assistantSlot()) );
 
@@ -463,7 +463,7 @@ in TQt Assistant.
     {
         TQApplication app( argc, argv );
         MainWindow main;
-        main.show();
+        main.show();
         app.setMainWidget( &main );
         return app.exec();
     }
-- 
cgit v1.2.3