diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-01-30 12:45:50 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-01-30 12:45:50 -0600 |
commit | d2caa37e18191c31d866dd3042b676c135bae50d (patch) | |
tree | 603cdc81a45c1d6e5250e72954f3876b56ca24e1 /include/datetime/actions.h | |
parent | 9752ca1cd3e75e1245ebb8dcb4719503e332a352 (diff) | |
download | ayatana-indicator-datetime-d2caa37e18191c31d866dd3042b676c135bae50d.tar.gz ayatana-indicator-datetime-d2caa37e18191c31d866dd3042b676c135bae50d.tar.bz2 ayatana-indicator-datetime-d2caa37e18191c31d866dd3042b676c135bae50d.zip |
as per review, don't inline getters
Diffstat (limited to 'include/datetime/actions.h')
-rw-r--r-- | include/datetime/actions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/datetime/actions.h b/include/datetime/actions.h index 3686b95..6817b4c 100644 --- a/include/datetime/actions.h +++ b/include/datetime/actions.h @@ -50,8 +50,8 @@ public: virtual void open_appointment(const std::string& uid) =0; virtual void set_location(const std::string& zone, const std::string& name)=0; void set_calendar_date(const DateTime&); - GActionGroup* action_group() { return G_ACTION_GROUP(m_actions); } - std::shared_ptr<State> state() { return m_state; } + GActionGroup* action_group(); + std::shared_ptr<State> state(); protected: Actions(const std::shared_ptr<State>& state); |