diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-01-22 07:57:21 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-01-22 07:57:21 -0600 |
commit | 0ec1731c28ee208eab98f3ff53bc63cedb527b75 (patch) | |
tree | 51699c5844cafc206e284b112724f04204e8f884 /src | |
parent | f1027f7cd2f846211a46b072965331fb0eb69fec (diff) | |
download | ayatana-indicator-datetime-0ec1731c28ee208eab98f3ff53bc63cedb527b75.tar.gz ayatana-indicator-datetime-0ec1731c28ee208eab98f3ff53bc63cedb527b75.tar.bz2 ayatana-indicator-datetime-0ec1731c28ee208eab98f3ff53bc63cedb527b75.zip |
in PlannerEds, wire in planner.thisMonth and planner.upcoming
Diffstat (limited to 'src')
-rw-r--r-- | src/planner-eds.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/planner-eds.cpp b/src/planner-eds.cpp index b3f751a..f7a1d17 100644 --- a/src/planner-eds.cpp +++ b/src/planner-eds.cpp @@ -228,6 +228,7 @@ private: { getAppointments(begin, end, [this](const std::vector<Appointment>& appointments) { g_message("got %d appointments in this calendar month", (int)appointments.size()); + m_owner.thisMonth.set(appointments); }); } g_clear_pointer(&begin, g_date_time_unref); @@ -240,6 +241,7 @@ private: { getAppointments(begin, end, [this](const std::vector<Appointment>& appointments) { g_message("got %d upcoming appointments", (int)appointments.size()); + m_owner.upcoming.set(appointments); }); } g_clear_pointer(&begin, g_date_time_unref); |