diff options
Diffstat (limited to 'examples/helpdemo/helpdemo.cpp')
-rw-r--r-- | examples/helpdemo/helpdemo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/helpdemo/helpdemo.cpp b/examples/helpdemo/helpdemo.cpp index 4ca9039ef..88ed7cb94 100644 --- a/examples/helpdemo/helpdemo.cpp +++ b/examples/helpdemo/helpdemo.cpp @@ -28,11 +28,11 @@ HelpDemo::HelpDemo( TQWidget *parent, const char *name ) TQAction *helpAction = new TQAction( "Show Help", TQKeySequence(tr("F1")), this ); helpAction->addTo( menu ); - connect( helpAction, SIGNAL(activated()), this, SLOT(showHelp()) ); - connect( assistant, SIGNAL(assistantOpened()), this, SLOT(assistantOpened()) ); - connect( assistant, SIGNAL(assistantClosed()), this, SLOT(assistantClosed())); - connect( assistant, SIGNAL(error(const TQString&)), - this, SLOT(showAssistantErrors(const TQString&)) ); + connect( helpAction, TQ_SIGNAL(activated()), this, TQ_SLOT(showHelp()) ); + connect( assistant, TQ_SIGNAL(assistantOpened()), this, TQ_SLOT(assistantOpened()) ); + connect( assistant, TQ_SIGNAL(assistantClosed()), this, TQ_SLOT(assistantClosed())); + connect( assistant, TQ_SIGNAL(error(const TQString&)), + this, TQ_SLOT(showAssistantErrors(const TQString&)) ); closeTQAButton->setEnabled(FALSE); } |