diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-07-01 09:36:57 +0000 |
---|---|---|
committer | CI bot <ps-jenkins@lists.canonical.com> | 2014-07-01 09:36:57 +0000 |
commit | 6ad9b8d2449c745953a1692b27e8d2b993a722d6 (patch) | |
tree | d0ce34b82460f52322d3bc9215fc7d989e642731 /src/engine-eds.cpp | |
parent | 6880613bbc6535242e95e7f5c65d9a9140eaa28b (diff) | |
parent | 194e79302027047ae36146f6ec4e7c0e9c1d2fc2 (diff) | |
download | ayatana-indicator-datetime-6ad9b8d2449c745953a1692b27e8d2b993a722d6.tar.gz ayatana-indicator-datetime-6ad9b8d2449c745953a1692b27e8d2b993a722d6.tar.bz2 ayatana-indicator-datetime-6ad9b8d2449c745953a1692b27e8d2b993a722d6.zip |
Expose the new alarm settings as DBus properties. Fixes: 1318997
Diffstat (limited to 'src/engine-eds.cpp')
-rw-r--r-- | src/engine-eds.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/engine-eds.cpp b/src/engine-eds.cpp index 80a47da..58be0c4 100644 --- a/src/engine-eds.cpp +++ b/src/engine-eds.cpp @@ -41,8 +41,7 @@ class EdsEngine::Impl { public: - Impl(EdsEngine& owner): - m_owner(owner), + Impl(): m_cancellable(g_cancellable_new()) { e_source_registry_new(m_cancellable, on_source_registry_ready, this); @@ -492,7 +491,6 @@ private: return G_SOURCE_CONTINUE; } - EdsEngine& m_owner; core::Signal<> m_changed; std::set<ESource*> m_sources; std::map<ESource*,ECalClient*> m_clients; @@ -508,7 +506,7 @@ private: ***/ EdsEngine::EdsEngine(): - p(new Impl(*this)) + p(new Impl()) { } |