CVS commit by johnflux: Remove some connects which aren't needed anymore M +0 -1 channel.cpp 1.201 M +0 -1 dccchat.cpp 1.18 M +0 -1 query.cpp 1.74 --- kdeextragear-2/konversation/konversation/channel.cpp #1.200:1.201 @@ -270,5 +270,4 @@ Channel::Channel(QWidget* parent) : Chat connect(textView,SIGNAL (newText(const QString&,bool)),this,SLOT (newTextInView(const QString&,bool)) ); - connect(textView,SIGNAL (gotFocus()),this,SLOT (adjustFocus()) ); connect(textView,SIGNAL (sendFile()),this,SLOT (sendFileMenu()) ); connect(textView,SIGNAL (autoText(const QString&)),this,SLOT (sendChannelText(const QString&)) ); --- kdeextragear-2/konversation/konversation/dccchat.cpp #1.17:1.18 @@ -77,5 +77,4 @@ DccChat::DccChat(QWidget* parent,Server* connect(dccChatInput,SIGNAL (textPasted(QString)),this,SLOT (textPasted(QString)) ); - connect(getTextView(),SIGNAL (gotFocus()),this,SLOT (adjustFocus()) ); connect(getTextView(),SIGNAL (newText(const QString&,bool)),this,SLOT (newTextInView(const QString&,bool)) ); connect(getTextView(),SIGNAL (autoText(const QString&)),this,SLOT (sendDccChatText(const QString&)) ); --- kdeextragear-2/konversation/konversation/query.cpp #1.73:1.74 @@ -75,5 +75,4 @@ Query::Query(QWidget* parent) : ChatWind connect(textView,SIGNAL (newText(const QString&,bool)),this,SLOT (newTextInView(const QString&,bool)) ); - connect(textView,SIGNAL (gotFocus()),this,SLOT (adjustFocus()) ); connect(textView,SIGNAL (sendFile()),this,SLOT (sendFileMenu()) ); connect(textView,SIGNAL (extendedPopup(int)),this,SLOT (popup(int)) );