diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-09-19 14:34:11 +0000 |
---|---|---|
committer | CI bot <ps-jenkins@lists.canonical.com> | 2014-09-19 14:34:11 +0000 |
commit | a72a776c15a48341b9b06bbdd113d4112acd3e20 (patch) | |
tree | 86ecb9508b3e3f32b5e5c727b2bcbf8a3840d243 /include/datetime | |
parent | 790f43bcea23f926f6617e0fe41026a3adaee8cc (diff) | |
parent | 8da361db324d454ee9910ea3e169f428d32a925a (diff) | |
download | ayatana-indicator-datetime-a72a776c15a48341b9b06bbdd113d4112acd3e20.tar.gz ayatana-indicator-datetime-a72a776c15a48341b9b06bbdd113d4112acd3e20.tar.bz2 ayatana-indicator-datetime-a72a776c15a48341b9b06bbdd113d4112acd3e20.zip |
Adjust our floating alarms when the local timezone changes.
Fixes: 1332095
Approved by: Ted Gould, PS Jenkins bot
Diffstat (limited to 'include/datetime')
-rw-r--r-- | include/datetime/clock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/datetime/clock.h b/include/datetime/clock.h index 0b2a543..64d275b 100644 --- a/include/datetime/clock.h +++ b/include/datetime/clock.h @@ -68,7 +68,7 @@ private: **** ***/ -class Timezones; +class Timezone; /** * \brief A live #Clock that provides the actual system time. @@ -76,7 +76,7 @@ class Timezones; class LiveClock: public Clock { public: - LiveClock (const std::shared_ptr<const Timezones>& zones); + LiveClock (const std::shared_ptr<const Timezone>& zones); virtual ~LiveClock(); virtual DateTime localtime() const; |