SVN commit 841214 by mlaurent: Add const M +2 -2 groupwiseserver.cpp --- trunk/KDE/kdepim/kresources/groupwise/soap/groupwiseserver.cpp #841213:841214 @@ -135,7 +135,7 @@ if ( !sslErrors.isEmpty() ) { // ignore untrusted certs for now, we can't handle it async bool untrusted = false; - foreach( KSslError err, sslErrors ) { + foreach( const KSslError& err, sslErrors ) { if ( err.error() == KSslError::UntrustedCertificate ) { untrusted = true; break; @@ -1440,7 +1440,7 @@ { bool untrusted = false; - foreach( KSslError err, errors ) { + foreach( const KSslError& err, errors ) { // ignore untrusted certs for now, we can't handle it async if ( err.error() == KSslError::UntrustedCertificate ) { untrusted = true;