From 0582c90a9ed4b965629267713f51c0da7c38b39d Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 4 Sep 2024 11:53:23 +0900 Subject: Rename remaining ntq[m-r]* related files to equivalent tq* (except ntqmodules.h) Signed-off-by: Michele Calgaro --- doc/html/simple-application.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/html/simple-application.html') diff --git a/doc/html/simple-application.html b/doc/html/simple-application.html index 165f1971a..9713605b6 100644 --- a/doc/html/simple-application.html +++ b/doc/html/simple-application.html @@ -514,7 +514,7 @@ close means that the window is going away for good.

If the text hasn't been edited, we just accept the event. The window will be closed, and because we used the WDestructiveClose widget flag in the ApplicationWindow() constructor, the widget will be deleted. -

        switch( TQMessageBox::information( this, "TQt Application Example",
+

        switch( TQMessageBox::information( this, "TQt Application Example",
                                           "Do you want to save the changes"
                                           " to the document?",
                                           "Yes", "No", "Cancel",
@@ -546,14 +546,14 @@ simple.
 

Last but not least we implement the slots used by the help menu entries.

    void ApplicationWindow::about()
     {
-        TQMessageBox::about( this, "TQt Application Example",
+        TQMessageBox::about( this, "TQt Application Example",
                             "This example demonstrates simple use of "
                             "TQMainWindow,\nTQMenuBar and TQToolBar.");
     }
 
     void ApplicationWindow::aboutTQt()
     {
-        TQMessageBox::aboutTQt( this, "TQt Application Example" );
+        TQMessageBox::aboutTQt( this, "TQt Application Example" );
     }
 

These two slots use ready-made "about" functions to provide some -- cgit v1.2.1