aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/indicator.h6
-rw-r--r--src/rotation-lock.h6
-rw-r--r--tests/unit/adbd-client-test.cpp2
-rw-r--r--tests/unit/rotation-lock-test.cpp4
4 files changed, 9 insertions, 9 deletions
diff --git a/src/indicator.h b/src/indicator.h
index c55be79..b5524d1 100644
--- a/src/indicator.h
+++ b/src/indicator.h
@@ -64,10 +64,10 @@ public:
SimpleProfile(const char* name, const std::shared_ptr<GMenuModel>& menu): m_name(name), m_menu(menu) {}
virtual ~SimpleProfile();
- std::string name() const {return m_name;}
+ std::string name() const override {return m_name;}
core::Property<Header>& header() {return m_header;}
- const core::Property<Header>& header() const {return m_header;}
- std::shared_ptr<GMenuModel> menu_model() const {return m_menu;}
+ const core::Property<Header>& header() const override {return m_header;}
+ std::shared_ptr<GMenuModel> menu_model() const override {return m_menu;}
protected:
const std::string m_name;
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;
diff --git a/tests/unit/adbd-client-test.cpp b/tests/unit/adbd-client-test.cpp
index d1ce740..9b5f1b3 100644
--- a/tests/unit/adbd-client-test.cpp
+++ b/tests/unit/adbd-client-test.cpp
@@ -38,7 +38,7 @@ protected:
std::shared_ptr<std::string> m_tmpdir;
- void SetUp()
+ void SetUp() override
{
super::SetUp();
diff --git a/tests/unit/rotation-lock-test.cpp b/tests/unit/rotation-lock-test.cpp
index b9630b5..a5a6f6c 100644
--- a/tests/unit/rotation-lock-test.cpp
+++ b/tests/unit/rotation-lock-test.cpp
@@ -28,12 +28,12 @@ private:
protected:
- void SetUp()
+ void SetUp() override
{
super::SetUp();
}
- void TearDown()
+ void TearDown() override
{
super::TearDown();
}