diff options
author | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2016-03-31 12:42:33 -0300 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-07-05 00:55:39 +0200 |
commit | 7965d5b411db00de44f5c43dffac935e70347ec6 (patch) | |
tree | 0c95ea3ef66a5fb78187d9bb1a4725753dc479ea | |
parent | 66e8c8eac3f95246f103505d4b54a56ad1a62baf (diff) | |
download | ayatana-indicator-datetime-7965d5b411db00de44f5c43dffac935e70347ec6.tar.gz ayatana-indicator-datetime-7965d5b411db00de44f5c43dffac935e70347ec6.tar.bz2 ayatana-indicator-datetime-7965d5b411db00de44f5c43dffac935e70347ec6.zip |
Rebuild events list in case of accounts changed.
-rw-r--r-- | src/engine-eds.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine-eds.cpp b/src/engine-eds.cpp index f3b08cd..bd94251 100644 --- a/src/engine-eds.cpp +++ b/src/engine-eds.cpp @@ -61,9 +61,9 @@ public: e_source_registry_new(m_cancellable.get(), on_source_registry_ready, this); m_myself = std::unique_ptr<Myself>(new Myself()); - /*m_myself->emails().changed().connect([this](const std::set<std::string> &) { + m_myself->emails().changed().connect([this](std::vector<std::string>) { set_dirty_soon(); - });*/ + }); } ~Impl() |