From 557b70406985aca65677be3c5f803883849d215d Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Tue, 20 Oct 2015 11:35:25 +0200 Subject: [PATCH] Fix compilation warning shibbolethcredentials.h:59:10: warning: 'askFromUser' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] --- src/gui/creds/shibbolethcredentials.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/creds/shibbolethcredentials.h b/src/gui/creds/shibbolethcredentials.h index 2fc57bfdc..f4024bb7c 100644 --- a/src/gui/creds/shibbolethcredentials.h +++ b/src/gui/creds/shibbolethcredentials.h @@ -56,7 +56,7 @@ public: QNetworkAccessManager* getQNAM() const Q_DECL_OVERRIDE; bool ready() const Q_DECL_OVERRIDE; void fetchFromKeychain() Q_DECL_OVERRIDE; - void askFromUser(); + void askFromUser() Q_DECL_OVERRIDE; bool stillValid(QNetworkReply *reply) Q_DECL_OVERRIDE; void persist() Q_DECL_OVERRIDE; void invalidateToken() Q_DECL_OVERRIDE;