aboutsummaryrefslogtreecommitdiff
path: root/src/app-menu-item.c
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2010-02-04 18:40:18 -0800
committerSebastien Bacher <seb128@ubuntu.com>2010-02-04 18:40:18 -0800
commit5747ab334feab5f4c2b439631cc511987f25484a (patch)
treec44c5b277324c8a0a7ee8e0be4ee85e32baa9a1b /src/app-menu-item.c
parent27152b308f81f820833391ef228c4499c73c2183 (diff)
parent35115483c700bf370c579328c8a51e717e3947c4 (diff)
downloadayatana-indicator-messages-5747ab334feab5f4c2b439631cc511987f25484a.tar.gz
ayatana-indicator-messages-5747ab334feab5f4c2b439631cc511987f25484a.tar.bz2
ayatana-indicator-messages-5747ab334feab5f4c2b439631cc511987f25484a.zip
releasing version 0.3.1-0ubuntu1
Diffstat (limited to 'src/app-menu-item.c')
-rw-r--r--src/app-menu-item.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app-menu-item.c b/src/app-menu-item.c
index aa0b60c..9c51475 100644
--- a/src/app-menu-item.c
+++ b/src/app-menu-item.c
@@ -57,7 +57,7 @@ static void app_menu_item_class_init (AppMenuItemClass *klass);
static void app_menu_item_init (AppMenuItem *self);
static void app_menu_item_dispose (GObject *object);
static void app_menu_item_finalize (GObject *object);
-static void activate_cb (AppMenuItem * self, gpointer data);
+static void activate_cb (AppMenuItem * self, guint timestamp, gpointer data);
static void count_changed (IndicateListener * listener, IndicateListenerServer * server, guint count, gpointer data);
static void count_cb (IndicateListener * listener, IndicateListenerServer * server, guint value, gpointer data);
static void desktop_cb (IndicateListener * listener, IndicateListenerServer * server, gchar * value, gpointer data);
@@ -259,11 +259,11 @@ desktop_cb (IndicateListener * listener, IndicateListenerServer * server, gchar
}
static void
-activate_cb (AppMenuItem * self, gpointer data)
+activate_cb (AppMenuItem * self, guint timestamp, gpointer data)
{
AppMenuItemPrivate * priv = APP_MENU_ITEM_GET_PRIVATE(self);
- indicate_listener_display(priv->listener, priv->server, NULL);
+ indicate_listener_display(priv->listener, priv->server, NULL, timestamp);
return;
}