diff options
author | Ted Gould <ted@gould.cx> | 2011-04-12 22:18:26 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-04-12 22:18:26 -0500 |
commit | bf82669e3caf6e5f9f08e25039539634ace12db2 (patch) | |
tree | e918f0e076de0bd33eb87bc06b8bbae40c5ae6d0 /src/datetime-service.c | |
parent | 6d42bccac27b7214e5e650f698c2b117231e3f77 (diff) | |
parent | ea0c8c5ef4d8c790304d6c4f3c791b3e56244027 (diff) | |
download | ayatana-indicator-datetime-bf82669e3caf6e5f9f08e25039539634ace12db2.tar.gz ayatana-indicator-datetime-bf82669e3caf6e5f9f08e25039539634ace12db2.tar.bz2 ayatana-indicator-datetime-bf82669e3caf6e5f9f08e25039539634ace12db2.zip |
Work around libindicator not sending a close event by looking for it directly in the indicator
Diffstat (limited to 'src/datetime-service.c')
-rw-r--r-- | src/datetime-service.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/datetime-service.c b/src/datetime-service.c index df37b5e..08b352a 100644 --- a/src/datetime-service.c +++ b/src/datetime-service.c @@ -440,28 +440,6 @@ day_selected_double_click_cb (DbusmenuMenuitem * menuitem, gchar *name, GVariant return TRUE; } -static gboolean -close_menu_cb (DbusmenuMenuitem * menuitem, gchar *name, GVariant *variant) -{ - if (calendar == NULL) return FALSE; - g_debug("Resetting date on menu close"); - start_time_appointments = 0; - // TODO create a variant which will be an array of 3 ints {y,m,d} - GVariant *date_variant; - time_t curtime; - struct tm *t1; - time(&curtime); - t1 = localtime(&curtime); - GVariant *date[3]; - date[0] = g_variant_new_uint32(t1->tm_year + 1900); - date[1] = g_variant_new_uint32(t1->tm_mon); - date[2] = g_variant_new_uint32(t1->tm_mday); - date_variant = g_variant_new_array(NULL, date, 3); - - dbusmenu_menuitem_property_set_variant (calendar, CALENDAR_MENUITEM_PROP_SET_DATE, date_variant); - return TRUE; -} - static guint ecaltimer = 0; static void @@ -1439,9 +1417,6 @@ main (int argc, char ** argv) build_menus(root); - // Connect to the close signal to reset the calendar date - g_signal_connect(root, "event::closed", G_CALLBACK(close_menu_cb), NULL); - /* Cache the timezone */ update_current_timezone(); |