aboutsummaryrefslogtreecommitdiff
path: root/src/indicator.h
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-08-04 17:08:17 +0200
committerRobert Tari <robert@tari.in>2021-08-04 17:08:17 +0200
commit53bab0ef23c8396dd6e3473593ffe027cb2d5fc4 (patch)
tree8413072aa2b936f1bdf9ed07ad5c645472161245 /src/indicator.h
parent4d6d205398bec86a702ed4af9c7834b950f67c8c (diff)
parent3336228bccde7de599e7f56b4b8b67b8552c6a95 (diff)
downloadayatana-indicator-display-53bab0ef23c8396dd6e3473593ffe027cb2d5fc4.tar.gz
ayatana-indicator-display-53bab0ef23c8396dd6e3473593ffe027cb2d5fc4.tar.bz2
ayatana-indicator-display-53bab0ef23c8396dd6e3473593ffe027cb2d5fc4.zip
Merge branch 'sunweaver-pr/travis-ci'
Attributes GH PR #15: https://github.com/AyatanaIndicators/ayatana-indicator-display/pull/15
Diffstat (limited to 'src/indicator.h')
-rw-r--r--src/indicator.h6
1 files changed, 3 insertions, 3 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;