aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-06-10 11:56:07 -0500
committerCharles Kerr <charles.kerr@canonical.com>2014-06-10 11:56:07 -0500
commite32110f08d6888e25db5bcedb7fd274aa8caea51 (patch)
treed33ae62cecc7990f874945b3d43a2e75626890eb /src
parentce7397dce272c913d93a6bd3852907bc917a4e6f (diff)
downloadayatana-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.
Diffstat (limited to 'src')
-rw-r--r--src/wakeup-timer-uha.cpp2
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;
}