From: Olivier Goffart Date: Tue, 20 Oct 2015 09:35:25 +0000 (+0200) Subject: Fix compilation warning X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~1533 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=557b70406985aca65677be3c5f803883849d215d;p=nextcloud-desktop.git Fix compilation warning shibbolethcredentials.h:59:10: warning: 'askFromUser' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] --- 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;