-rw-r--r-- | noncore/comm/keypebble/krfbconnection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/comm/keypebble/krfbconnection.cpp b/noncore/comm/keypebble/krfbconnection.cpp index c413186..c51f18a 100644 --- a/noncore/comm/keypebble/krfbconnection.cpp +++ b/noncore/comm/keypebble/krfbconnection.cpp @@ -121,10 +121,10 @@ void KRFBConnection::gotRFBConnection() } -void KRFBConnection::gotSocketError( int errno ) +void KRFBConnection::gotSocketError( int err ) { currentState_ = Error; // Do some error handling stuff - qWarning( "KRFBConnection: Socket error %d", errno ); + qWarning( "KRFBConnection: Socket error %d", err ); static QString refused = tr( "Connection Refused" ); @@ -136,5 +136,5 @@ void KRFBConnection::gotSocketError( int errno ) QString msg; - switch ( errno ) { + switch ( err ) { case QSocket::ErrConnectionRefused: msg = refused; |