diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2012-09-20 12:13:34 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2012-09-20 12:13:34 +0000 |
commit | cf60516dfb380e4679fb929422988033f21436eb (patch) | |
tree | 6b53e189ec3eef1cbba18e605a60204a48d0d5d9 /src/indicator-datetime.c | |
parent | 4e28e95f3bf1320fa92e88f6f103eab5a3812efa (diff) | |
parent | 3f4134737085a73ab0b9379922d1db941f66137e (diff) | |
download | ayatana-indicator-datetime-cf60516dfb380e4679fb929422988033f21436eb.tar.gz ayatana-indicator-datetime-cf60516dfb380e4679fb929422988033f21436eb.tar.bz2 ayatana-indicator-datetime-cf60516dfb380e4679fb929422988033f21436eb.zip |
When clock skew is detected, rebuild the date/time labels.. Fixes: https://bugs.launchpad.net/bugs/917236. Approved by jenkins, Lars Uebernickel.
Diffstat (limited to 'src/indicator-datetime.c')
-rw-r--r-- | src/indicator-datetime.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/indicator-datetime.c b/src/indicator-datetime.c index 9e34a65..2356c6d 100644 --- a/src/indicator-datetime.c +++ b/src/indicator-datetime.c @@ -154,6 +154,7 @@ GType indicator_datetime_get_type (void) G_GNUC_CONST; static void indicator_datetime_class_init (IndicatorDatetimeClass *klass); static void indicator_datetime_init (IndicatorDatetime *self); +static void timezone_update_all_labels (IndicatorDatetime *self); static void set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec); static void get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); static void indicator_datetime_dispose (GObject *object); @@ -280,6 +281,10 @@ menu_visible_notfy_cb(GtkWidget * menu, G_GNUC_UNUSED GParamSpec *pspec, gpointe // Set the calendar to todays date ido_calendar_menu_item_set_date (self->priv->ido_calendar, y, m-1, d); + /* Update in case date was changed outside of indicator-datetime */ + update_label(self, NULL); + timezone_update_all_labels(self); + // Make sure the day-selected signal is sent so the menu updates - may duplicate /*GVariant *variant = g_variant_new_uint32((guint)curtime); guint timestamp = (guint)time(NULL); |