[KBear-cvs] kbear/kbear/lib/interfaces connectionmanager.cpp,1.31,1.32
Brought to you by:
kbjorn
From: <fri...@us...> - 2003-11-12 21:16:17
|
Update of /cvsroot/kbear/kbear/kbear/lib/interfaces In directory sc8-pr-cvs1:/tmp/cvs-serv9165/kbear/lib/interfaces Modified Files: connectionmanager.cpp Log Message: Fixed compilation problem with certain KDE versions (3.1.3 and 3.1.4) Index: connectionmanager.cpp =================================================================== RCS file: /cvsroot/kbear/kbear/kbear/lib/interfaces/connectionmanager.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** connectionmanager.cpp 23 Aug 2003 07:47:51 -0000 1.31 --- connectionmanager.cpp 12 Nov 2003 21:16:12 -0000 1.32 *************** *** 149,157 **** KIO::Slave* slave = connection->getSlave(); if( slave ) { ! #if KDE_IS_VERSION( 3, 1, 3 ) ! slave->send( KIO::CMD_SPECIAL, data ); ! #else slave->connection()->send( KIO::CMD_SPECIAL, data ); ! #endif } } --- 149,157 ---- KIO::Slave* slave = connection->getSlave(); if( slave ) { ! //#if KDE_IS_VERSION( 3, 1, 3 ) ! // slave->send( KIO::CMD_SPECIAL, data ); ! //#else slave->connection()->send( KIO::CMD_SPECIAL, data ); ! //#endif } } |