From 7552c6d73043b1040139033f6864db48ae5446cf Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 2 Jul 2024 21:37:22 +0900 Subject: Rename main window nt* related files to equivalent tq*. The file "ntqsession.h" was totally unnecessary and has been removed. Signed-off-by: Michele Calgaro --- doc/html/layout-example.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/html/layout-example.html') diff --git a/doc/html/layout-example.html b/doc/html/layout-example.html index 4a2ab99d5..164c73920 100644 --- a/doc/html/layout-example.html +++ b/doc/html/layout-example.html @@ -54,8 +54,8 @@ classes, TQGridLayout, #include <ntqlayout.h> #include <ntqlineedit.h> #include <ntqmultilineedit.h> -#include <ntqmenubar.h> -#include <ntqpopupmenu.h> +#include <tqmenubar.h> +#include <tqpopupmenu.h> class ExampleWidget : public TQWidget { @@ -72,12 +72,12 @@ public: TQBoxLayout *topLayout = new TQVBoxLayout( this, 5 ); // Create a menubar... - TQMenuBar *menubar = new TQMenuBar( this ); - menubar->setSeparator( TQMenuBar::InWindowsStyle ); - TQPopupMenu* popup; - popup = new TQPopupMenu( this ); - popup->insertItem( "&Quit", tqApp, TQ_SLOT(quit()) ); - menubar->insertItem( "&File", popup ); + TQMenuBar *menubar = new TQMenuBar( this ); + menubar->setSeparator( TQMenuBar::InWindowsStyle ); + TQPopupMenu* popup; + popup = new TQPopupMenu( this ); + popup->insertItem( "&Quit", tqApp, TQ_SLOT(quit()) ); + menubar->insertItem( "&File", popup ); // ...and tell the layout about it. topLayout->setMenuBar( menubar ); -- cgit v1.2.3