CVS commit by ogoffart: This fixes a frezee that can happen while downloading the MSN Picture. I don't know exactly why, but that's what Thiago said me to do. M +2 -1 msnsocket.cpp 1.83 --- kdenetwork/kopete/protocols/msn/msnsocket.cpp #1.82:1.83 @@ -77,5 +77,5 @@ void MSNSocket::connect( const QString & m_server = server; m_port = port; - m_socket = new KExtendedSocket( server, port, 0x600000 ); + m_socket = new KExtendedSocket( server, port, KExtendedSocket::bufferedSocket ); //can this prevent the kopete frezee? (http://lists.kde.org/?l=kopete-devel&m=107117795131722&w=2) m_socket->setBlockingMode( false ); @@ -494,4 +494,5 @@ QString MSNSocket::unescape( const QStri void MSNSocket::slotConnectionSuccess() { + m_socket->setBlockingMode( false ); //kdDebug( 14140 ) << k_funcinfo << endl; doneConnect();