diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-08-14 20:28:30 +0000 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-08-04 17:06:27 +0200 |
commit | d1f7136481a286e3b363b5cb12631fe7db04ecb4 (patch) | |
tree | a5670afc517b9448c2504d1aadfbe47246ee99e1 /src/rotation-lock.h | |
parent | 220be12b373646b06b0a00250a8f2e382893dc17 (diff) | |
download | ayatana-indicator-display-d1f7136481a286e3b363b5cb12631fe7db04ecb4.tar.gz ayatana-indicator-display-d1f7136481a286e3b363b5cb12631fe7db04ecb4.tar.bz2 ayatana-indicator-display-d1f7136481a286e3b363b5cb12631fe7db04ecb4.zip |
cppcheck: Add several missing override statements to make cppcheck happy (which is one of our unit tests).
Diffstat (limited to 'src/rotation-lock.h')
-rw-r--r-- | src/rotation-lock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rotation-lock.h b/src/rotation-lock.h index 2354c4a..7bdfb14 100644 --- a/src/rotation-lock.h +++ b/src/rotation-lock.h @@ -30,9 +30,9 @@ public: RotationLockIndicator(); ~RotationLockIndicator(); - const char* name() const; - GSimpleActionGroup* action_group() const; - std::vector<std::shared_ptr<Profile>> profiles() const; + const char* name() const override; + GSimpleActionGroup* action_group() const override; + std::vector<std::shared_ptr<Profile>> profiles() const override; protected: class Impl; |