diff options
author | Robert Tari <robert@tari.in> | 2022-02-11 15:24:06 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-16 11:41:25 +0100 |
commit | bfc0251b1e448ea595b5837c46cb5656bc666ec4 (patch) | |
tree | 3e3b2e2b0fd29075f17334a52bea2cce08b0895f /src | |
parent | adb447d7067f73db4040ad3119a2a52cd08879a2 (diff) | |
download | ayatana-indicator-datetime-bfc0251b1e448ea595b5837c46cb5656bc666ec4.tar.gz ayatana-indicator-datetime-bfc0251b1e448ea595b5837c46cb5656bc666ec4.tar.bz2 ayatana-indicator-datetime-bfc0251b1e448ea595b5837c46cb5656bc666ec4.zip |
Fix build warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/wakeup-timer-powerd.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/wakeup-timer-powerd.cpp b/src/wakeup-timer-powerd.cpp index f775999..77893c8 100644 --- a/src/wakeup-timer-powerd.cpp +++ b/src/wakeup-timer-powerd.cpp @@ -1,6 +1,6 @@ /* * Copyright 2014 Canonical Ltd. - * Copyright 2021 Robert Tari + * Copyright 2021-2022 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 @@ -41,7 +41,6 @@ class PowerdWakeupTimer::Impl public: explicit Impl(const std::shared_ptr<Clock>& clock): - m_clock(clock), m_cancellable(g_cancellable_new()) { g_bus_get(G_BUS_TYPE_SYSTEM, m_cancellable, on_bus_ready, this); @@ -271,7 +270,6 @@ private: ***/ core::Signal<> m_timeout; - const std::shared_ptr<Clock>& m_clock; DateTime m_wakeup_time; std::shared_ptr<GDBusConnection> m_bus; |