diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2015-03-12 17:00:03 +0100 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2015-03-12 17:00:03 +0100 |
| commit | b681228881fc7cbe3237a9958355b580b75270b6 (patch) | |
| tree | 4f88f6c3c13657b225bcd11c66c8e9a00d115645 /src/client/QXmppOutgoingClient.cpp | |
| parent | 9646724764a0ff11807c3a32690e2d60372d1a7b (diff) | |
| download | qxmpp-b681228881fc7cbe3237a9958355b580b75270b6.tar.gz | |
rename 'error' to 'errors' in socketSslErrors slot
Diffstat (limited to 'src/client/QXmppOutgoingClient.cpp')
| -rw-r--r-- | src/client/QXmppOutgoingClient.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/QXmppOutgoingClient.cpp b/src/client/QXmppOutgoingClient.cpp index b7a6f35b..2846cba2 100644 --- a/src/client/QXmppOutgoingClient.cpp +++ b/src/client/QXmppOutgoingClient.cpp @@ -269,15 +269,15 @@ void QXmppOutgoingClient::_q_socketDisconnected() } } -void QXmppOutgoingClient::socketSslErrors(const QList<QSslError> & error) +void QXmppOutgoingClient::socketSslErrors(const QList<QSslError> &errors) { // log errors warning("SSL errors"); - for(int i = 0; i< error.count(); ++i) - warning(error.at(i).errorString()); + for(int i = 0; i< errors.count(); ++i) + warning(errors.at(i).errorString()); // relay signal - emit sslErrors(error); + emit sslErrors(errors); // if configured, ignore the errors if (configuration().ignoreSslErrors()) |
