diff options
Diffstat (limited to 'Mainpage.dox')
| -rw-r--r-- | Mainpage.dox | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mainpage.dox b/Mainpage.dox index 83718a18f..89147c625 100644 --- a/Mainpage.dox +++ b/Mainpage.dox @@ -74,9 +74,9 @@ This demonstrates the use of ActionButtons, that lets you associate multiple but single action with extreme ease. \c listenPB and \c listenCB are kept in sync with the action. \code -connect(bt, SIGNAL(activated()), this, SLOT(activateAction())); -connect(bt, SIGNAL(clicked(TQButton*, bool)), bt, SLOT(activate())); -connect(bt, SIGNAL(authorized()), this, SLOT(actionActivated())); +connect(bt, TQ_SIGNAL(activated()), this, TQ_SLOT(activateAction())); +connect(bt, TQ_SIGNAL(clicked(TQButton*, bool)), bt, TQ_SLOT(activate())); +connect(bt, TQ_SIGNAL(authorized()), this, TQ_SLOT(actionActivated())); \endcode Those three signals are all you need to control the action and the activation. Action::activated() |
