summaryrefslogtreecommitdiffstats
path: root/examples/helpsystem
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 19:25:43 +0900
commitfb401a891f1b426e9419c0cb16403df407138611 (patch)
tree045b51949b3140039e37d898d8b0513016a86bea /examples/helpsystem
parenta9d178f1000475ba1727ffe123a2c54585488c01 (diff)
downloadtqt3-fb401a891f1b426e9419c0cb16403df407138611.tar.gz
tqt3-fb401a891f1b426e9419c0cb16403df407138611.zip
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/helpsystem')
-rw-r--r--examples/helpsystem/mainwindow.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/examples/helpsystem/mainwindow.cpp b/examples/helpsystem/mainwindow.cpp
index cb64166b..95b2786f 100644
--- a/examples/helpsystem/mainwindow.cpp
+++ b/examples/helpsystem/mainwindow.cpp
@@ -59,9 +59,9 @@ MainWindow::MainWindow()
menuBar()->insertItem( "&File", fileMenu );
menuBar()->insertItem( "&Help", helpMenu );
- int fileId = fileMenu->insertItem( "E&xit", this, SLOT(close()) );
+ int fileId = fileMenu->insertItem( "E&xit", this, TQ_SLOT(close()) );
- int helpId = helpMenu->insertItem( "Open Assistant", this, SLOT(assistantSlot()) );
+ int helpId = helpMenu->insertItem( "Open Assistant", this, TQ_SLOT(assistantSlot()) );
// populate toolbar
TQToolBar* toolbar = new TQToolBar( this );
@@ -71,9 +71,9 @@ MainWindow::MainWindow()
//create tooltipgroup
TQToolTipGroup * tipGroup = new TQToolTipGroup( this );
- connect( tipGroup, SIGNAL(showTip(const TQString&)), statusBar(),
- SLOT(message(const TQString&)) );
- connect( tipGroup, SIGNAL(removeTip()), statusBar(), SLOT(clear()) );
+ connect( tipGroup, TQ_SIGNAL(showTip(const TQString&)), statusBar(),
+ TQ_SLOT(message(const TQString&)) );
+ connect( tipGroup, TQ_SIGNAL(removeTip()), statusBar(), TQ_SLOT(clear()) );
// set up tooltips
TQToolTip::add( assistantButton, tr ("Open Assistant"), tipGroup, "Opens TQt Assistant" );
@@ -95,13 +95,13 @@ MainWindow::MainWindow()
helpMenu->setWhatsThis( helpId, "Click here to open Assistant" );
// connections
- connect( assistantButton, SIGNAL(clicked()), this, SLOT(assistantSlot()) );
- connect( horizontalWhatsThis, SIGNAL(linkClicked(const TQString&)), assistant,
- SLOT(showPage(const TQString&)) );
- connect( verticalWhatsThis, SIGNAL(linkClicked(const TQString&)), assistant,
- SLOT(showPage(const TQString&)) );
- connect( cellWhatsThis, SIGNAL(linkClicked(const TQString&)), assistant,
- SLOT(showPage(const TQString&)) );
+ connect( assistantButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(assistantSlot()) );
+ connect( horizontalWhatsThis, TQ_SIGNAL(linkClicked(const TQString&)), assistant,
+ TQ_SLOT(showPage(const TQString&)) );
+ connect( verticalWhatsThis, TQ_SIGNAL(linkClicked(const TQString&)), assistant,
+ TQ_SLOT(showPage(const TQString&)) );
+ connect( cellWhatsThis, TQ_SIGNAL(linkClicked(const TQString&)), assistant,
+ TQ_SLOT(showPage(const TQString&)) );
}
MainWindow::~MainWindow()