Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2014-07-10 01:22:28 +0400
committerOlivier Goffart <ogoffart@woboq.com>2014-07-10 01:31:56 +0400
commitbcfa34357b3472d250090fc8cfe04d72a45d0047 (patch)
tree971824546961ca9f0e9cec8829252de4d0bbc51b /src/owncloudcmd
parente0c2e8ed86ad38ca47677bc0c5ab528125dfd372 (diff)
Add Q_DECL_OVERRIDE for all function that are overriding something
This was made automatically with clang-modernize -override-macros -add-override
Diffstat (limited to 'src/owncloudcmd')
-rw-r--r--src/owncloudcmd/simplesslerrorhandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/owncloudcmd/simplesslerrorhandler.h b/src/owncloudcmd/simplesslerrorhandler.h
index 0a6bfd702..8e6876161 100644
--- a/src/owncloudcmd/simplesslerrorhandler.h
+++ b/src/owncloudcmd/simplesslerrorhandler.h
@@ -20,7 +20,7 @@ class QSslCertificate;
class SimpleSslErrorHandler : public Mirall::AbstractSslErrorHandler {
public:
- bool handleErrors(QList<QSslError> errors, QList<QSslCertificate> *certs, Mirall::Account*);
+ bool handleErrors(QList<QSslError> errors, QList<QSslCertificate> *certs, Mirall::Account*) Q_DECL_OVERRIDE;
};
#endif // SIMPLESSLERRORHANDLER_H