diff options
author | Robert Tari <robert@tari.in> | 2023-10-09 20:06:34 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2023-10-09 20:06:34 +0200 |
commit | bb479fd0def20ceee01b6f65b69de24bf18028fe (patch) | |
tree | f3946c6d4499b35de2b8bfcf08fa9dc8c624fd6c /src | |
parent | f8ee1db7c062b321d9ea742500a7e0fb2e023d18 (diff) | |
download | ayatana-indicator-display-bb479fd0def20ceee01b6f65b69de24bf18028fe.tar.gz ayatana-indicator-display-bb479fd0def20ceee01b6f65b69de24bf18028fe.tar.bz2 ayatana-indicator-display-bb479fd0def20ceee01b6f65b69de24bf18028fe.zip |
src/indicator.h: Fix multiple definitions of header property
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/indicator.h b/src/indicator.h index 7379b32..c9ccb1e 100644 --- a/src/indicator.h +++ b/src/indicator.h @@ -1,5 +1,6 @@ /* * Copyright 2014-2016 Canonical Ltd. + * Copyright 2023 Robert Tari * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published @@ -15,6 +16,7 @@ * * Authors: * Charles Kerr <charles.kerr@canonical.com> + * Robert Tari <robert@tari.in> */ #pragma once @@ -50,7 +52,7 @@ class Profile { public: virtual std::string name() const =0; - virtual const core::Property<Header>& header() const =0; + virtual core::Property<Header>& header() =0; virtual std::shared_ptr<GMenuModel> menu_model() const =0; virtual ~Profile(); @@ -66,8 +68,7 @@ public: virtual ~SimpleProfile(); std::string name() const override {return m_name;} - core::Property<Header>& header() {return m_header;} - const core::Property<Header>& header() const override {return m_header;} + core::Property<Header>& header() override {return m_header;} std::shared_ptr<GMenuModel> menu_model() const override {return m_menu;} protected: @@ -86,4 +87,3 @@ public: virtual GSimpleActionGroup* action_group() const =0; virtual std::vector<std::shared_ptr<Profile>> profiles() const =0; }; - |