# HG changeset patch # User Sebastien Jodogne # Date 1754659317 -7200 # Node ID c41542e14885140bc894b98220c2c4fbab36748b # Parent e957ca44391791daae082fb1f18290107bde0757 cppcheck diff -r e957ca443917 -r c41542e14885 Plugin/AuthorizationWebService.h --- a/Plugin/AuthorizationWebService.h Mon Jul 14 11:40:03 2025 +0200 +++ b/Plugin/AuthorizationWebService.h Fri Aug 08 15:21:57 2025 +0200 @@ -102,9 +102,10 @@ const std::string& tokenKey, const std::string& tokenValue) ORTHANC_OVERRIDE; - virtual bool GetSettingsRoles(Json::Value& roles); + virtual bool GetSettingsRoles(Json::Value& roles) ORTHANC_OVERRIDE; + virtual bool UpdateSettingsRoles(Json::Value& response, - const Json::Value& roles); + const Json::Value& roles) ORTHANC_OVERRIDE; static void ToJson(Json::Value& output, const UserProfile& profile); diff -r e957ca443917 -r c41542e14885 Plugin/CachedAuthorizationService.h --- a/Plugin/CachedAuthorizationService.h Mon Jul 14 11:40:03 2025 +0200 +++ b/Plugin/CachedAuthorizationService.h Fri Aug 08 15:21:57 2025 +0200 @@ -105,12 +105,13 @@ tokenValue); } - virtual bool GetSettingsRoles(Json::Value& roles) + virtual bool GetSettingsRoles(Json::Value& roles) ORTHANC_OVERRIDE { return decorated_->GetSettingsRoles(roles); } - virtual bool UpdateSettingsRoles(Json::Value& response, const Json::Value& roles) + virtual bool UpdateSettingsRoles(Json::Value& response, + const Json::Value& roles) ORTHANC_OVERRIDE { return decorated_->UpdateSettingsRoles(response, roles); }