diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-06-10 11:56:07 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-06-10 11:56:07 -0500 |
commit | e32110f08d6888e25db5bcedb7fd274aa8caea51 (patch) | |
tree | d33ae62cecc7990f874945b3d43a2e75626890eb | |
parent | ce7397dce272c913d93a6bd3852907bc917a4e6f (diff) | |
download | ayatana-indicator-datetime-e32110f08d6888e25db5bcedb7fd274aa8caea51.tar.gz ayatana-indicator-datetime-e32110f08d6888e25db5bcedb7fd274aa8caea51.tar.bz2 ayatana-indicator-datetime-e32110f08d6888e25db5bcedb7fd274aa8caea51.zip |
in UhaWakeupTimer, ensure the timeout signal gets emitted from inside a glib idle callback.
-rw-r--r-- | src/wakeup-timer-uha.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wakeup-timer-uha.cpp b/src/wakeup-timer-uha.cpp index 7e19075..437eda2 100644 --- a/src/wakeup-timer-uha.cpp +++ b/src/wakeup-timer-uha.cpp @@ -102,7 +102,7 @@ private: static gboolean kick_idle (gpointer gself) { - static_cast<Impl*>(gself)->timeout(); + static_cast<Impl*>(gself)->m_timeout(); return G_SOURCE_REMOVE; } |