diff options
Diffstat (limited to 'src/modules/channelsjoin/channelsjoinwindow.cpp')
-rw-r--r-- | src/modules/channelsjoin/channelsjoinwindow.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/channelsjoin/channelsjoinwindow.cpp b/src/modules/channelsjoin/channelsjoinwindow.cpp index 8c5e71e0..57c31930 100644 --- a/src/modules/channelsjoin/channelsjoinwindow.cpp +++ b/src/modules/channelsjoin/channelsjoinwindow.cpp @@ -66,8 +66,8 @@ KviChannelsJoinWindow::KviChannelsJoinWindow(TQWidget * par, const char * name) m_pListView->setRootIsDecorated(true); m_pListView->setSelectionMode(KviTalListView::Single); g->addMultiCellWidget(m_pListView,0,0,0,1); - connect(m_pListView,TQT_SIGNAL(clicked(KviTalListViewItem *)),this,TQT_SLOT(itemClicked(KviTalListViewItem *))); - connect(m_pListView,TQT_SIGNAL(doubleClicked(KviTalListViewItem *)),this,TQT_SLOT(itemDoubleClicked(KviTalListViewItem *))); + connect(m_pListView,TQ_SIGNAL(clicked(KviTalListViewItem *)),this,TQ_SLOT(itemClicked(KviTalListViewItem *))); + connect(m_pListView,TQ_SIGNAL(doubleClicked(KviTalListViewItem *)),this,TQ_SLOT(itemDoubleClicked(KviTalListViewItem *))); m_pGroupBox = new KviTalGroupBox(2,TQt::Horizontal,__tr2qs("Channel" ),this); @@ -76,8 +76,8 @@ KviChannelsJoinWindow::KviChannelsJoinWindow(TQWidget * par, const char * name) TQLabel * l = new TQLabel(szMsg,m_pGroupBox); m_pChannelEdit = new TQLineEdit(m_pGroupBox); - connect(m_pChannelEdit,TQT_SIGNAL(returnPressed()), this, TQT_SLOT(editReturnPressed())); - connect(m_pChannelEdit,TQT_SIGNAL(textChanged(const TQString &)),this,TQT_SLOT(editTextChanged(const TQString &))); + connect(m_pChannelEdit,TQ_SIGNAL(returnPressed()), this, TQ_SLOT(editReturnPressed())); + connect(m_pChannelEdit,TQ_SIGNAL(textChanged(const TQString &)),this,TQ_SLOT(editTextChanged(const TQString &))); szMsg = __tr2qs("Password"); szMsg.append(":"); @@ -92,7 +92,7 @@ KviChannelsJoinWindow::KviChannelsJoinWindow(TQWidget * par, const char * name) m_pJoinButton = new TQPushButton(__tr2qs("&Join"),this); // Join on return pressed m_pJoinButton->setDefault(true); - connect(m_pJoinButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(joinClicked())); + connect(m_pJoinButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(joinClicked())); g->addMultiCellWidget(m_pJoinButton,2,2,0,1,AlignHCenter); @@ -103,7 +103,7 @@ KviChannelsJoinWindow::KviChannelsJoinWindow(TQWidget * par, const char * name) TQPushButton * cancelButton = new TQPushButton(__tr2qs("Close"),this); - connect(cancelButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(cancelClicked())); + connect(cancelButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(cancelClicked())); g->addWidget(cancelButton,3,1); @@ -112,9 +112,9 @@ KviChannelsJoinWindow::KviChannelsJoinWindow(TQWidget * par, const char * name) hb->setSpacing(4); TQPushButton * namesButton = new TQPushButton("/names", hb); - connect(namesButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(namesClicked())); + connect(namesButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(namesClicked())); TQPushButton * whoButton = new TQPushButton("/who", hb); - connect(whoButton,TQT_SIGNAL(clicked()),this,TQT_SLOT(whoClicked())); + connect(whoButton,TQ_SIGNAL(clicked()),this,TQ_SLOT(whoClicked())); g->addWidget(hb,2,0); */ |