diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-01-22 14:28:20 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-01-22 14:28:20 -0600 |
commit | aad7e86a109aeec75b3772cda20478363f966745 (patch) | |
tree | 5049662b13435cc5b422e1194bd617a1089e6fb6 /src/clock.cpp | |
parent | e2fd6e620ce7f18c2cbf7c7b353d7cb5f86dce11 (diff) | |
download | ayatana-indicator-datetime-aad7e86a109aeec75b3772cda20478363f966745.tar.gz ayatana-indicator-datetime-aad7e86a109aeec75b3772cda20478363f966745.tar.bz2 ayatana-indicator-datetime-aad7e86a109aeec75b3772cda20478363f966745.zip |
Alarms is going to need to know when the clock's minute changes. We already have a timer for that in Formatter, so move it from there to Clock and add a corresponding public signal Clock.minuteChanged that both Formatter and Alarms can use. Sync unit tests.
Diffstat (limited to 'src/clock.cpp')
-rw-r--r-- | src/clock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clock.cpp b/src/clock.cpp index 7c3b8c7..d5293cc 100644 --- a/src/clock.cpp +++ b/src/clock.cpp @@ -81,7 +81,7 @@ Clock::onPrepareForSleep(GDBusConnection* /*connection*/, GVariant* /*parameters*/, gpointer gself) { - static_cast<Clock*>(gself)->skewDetected(); + static_cast<Clock*>(gself)->minuteChanged(); } /*** |