From fb401a891f1b426e9419c0cb16403df407138611 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 27 Dec 2023 19:25:43 +0900 Subject: Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT Signed-off-by: Michele Calgaro --- doc/html/ntqmenubar.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/html/ntqmenubar.html') diff --git a/doc/html/ntqmenubar.html b/doc/html/ntqmenubar.html index 4dde93ad7..143a14a90 100644 --- a/doc/html/ntqmenubar.html +++ b/doc/html/ntqmenubar.html @@ -118,8 +118,8 @@ appropriately whenever the parent is resized.
        TQPopupMenu *file = new TQPopupMenu( this );
-
        file->insertItem( p1, "&Open",  this, SLOT(open()), CTRL+Key_O );
-        file->insertItem( p2, "&New", this, SLOT(news()), CTRL+Key_N );
+
        file->insertItem( p1, "&Open",  this, TQ_SLOT(open()), CTRL+Key_O );
+        file->insertItem( p2, "&New", this, TQ_SLOT(news()), CTRL+Key_N );
 
        menu = new TQMenuBar( this );
 
        menu->insertItem( "&File", file );
 
@@ -268,8 +268,8 @@ connects it to the slot member in the object receiver.
         TQMenuBar   *mainMenu = new TQMenuBar;
         TQPopupMenu *fileMenu = new TQPopupMenu;
-        fileMenu->insertItem( "New",  myView, SLOT(newFile()), CTRL+Key_N );
-        fileMenu->insertItem( "Open", myView, SLOT(open()),    CTRL+Key_O );
+        fileMenu->insertItem( "New",  myView, TQ_SLOT(newFile()), CTRL+Key_N );
+        fileMenu->insertItem( "Open", myView, TQ_SLOT(open()),    CTRL+Key_O );
         mainMenu->insertItem( "File", fileMenu );
     
@@ -279,7 +279,7 @@ accelerator key. Use connectItem() an accelerator. (For translations use a string key sequence.):
-        fileMenu->insertItem( tr("Open"), myView, SLOT(open()),
+        fileMenu->insertItem( tr("Open"), myView, TQ_SLOT(open()),
                               tr("Ctrl+O") );
     
-- cgit v1.2.1