summaryrefslogtreecommitdiffstats
path: root/knights/console.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/console.cpp')
-rw-r--r--knights/console.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/knights/console.cpp b/knights/console.cpp
index 443a1cc..5ae6d20 100644
--- a/knights/console.cpp
+++ b/knights/console.cpp
@@ -41,17 +41,17 @@ Console::Console(TQWidget *parent,
setBG();
myTextView->setStaticBackground( FALSE );
- connect( myLineEdit, TQT_SIGNAL( returnPressed( const TQString& ) ), this, TQT_SLOT( getText( const TQString& ) ) );
- connect( myResource->myAccel, TQT_SIGNAL( history_prev() ), this, TQT_SLOT( historyBackward() ) );
- connect( myResource->myAccel, TQT_SIGNAL( history_next() ), this, TQT_SLOT( historyForward() ) );
- connect( myResource->myAccel, TQT_SIGNAL( page_up() ), this, TQT_SLOT( pageUp() ) );
- connect( myResource->myAccel, TQT_SIGNAL( page_down() ), this, TQT_SLOT( pageDown() ) );
- connect( myResource->myAccel, TQT_SIGNAL( kibitz() ), this, TQT_SLOT( kibitz() ) );
- connect( myResource->myAccel, TQT_SIGNAL( whisper() ), this, TQT_SLOT( whisper() ) );
- connect( myResource->myAccel, TQT_SIGNAL( reply_tell() ), this, TQT_SLOT( replyPrivate() ) );
- connect( myResource->myAccel, TQT_SIGNAL( reply_channel() ), this, TQT_SLOT( replyChannel() ) );
- connect( myResource->myAccel, TQT_SIGNAL( focus() ), this, TQT_SLOT( getFocus() ) );
- connect( myResource->myAccel, TQT_SIGNAL( focus( const TQChar& ) ), this, TQT_SLOT( getFocus( const TQChar& ) ) );
+ connect( myLineEdit, TQ_SIGNAL( returnPressed( const TQString& ) ), this, TQ_SLOT( getText( const TQString& ) ) );
+ connect( myResource->myAccel, TQ_SIGNAL( history_prev() ), this, TQ_SLOT( historyBackward() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( history_next() ), this, TQ_SLOT( historyForward() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( page_up() ), this, TQ_SLOT( pageUp() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( page_down() ), this, TQ_SLOT( pageDown() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( kibitz() ), this, TQ_SLOT( kibitz() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( whisper() ), this, TQ_SLOT( whisper() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( reply_tell() ), this, TQ_SLOT( replyPrivate() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( reply_channel() ), this, TQ_SLOT( replyChannel() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( focus() ), this, TQ_SLOT( getFocus() ) );
+ connect( myResource->myAccel, TQ_SIGNAL( focus( const TQChar& ) ), this, TQ_SLOT( getFocus( const TQChar& ) ) );
myTextView->show();
myLineEdit->show();