diff options
author | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2011-07-21 18:20:19 +0200 |
---|---|---|
committer | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2011-07-21 18:20:19 +0200 |
commit | 6cb0f2f76838e6d25e96bece26bdf65ed8e1c4cf (patch) | |
tree | 11f77cd285d972539052cf4d95e452ed8c22cac7 | |
parent | f23ee31ab2140f3776f54eca4a4594534d11d313 (diff) | |
download | ayatana-indicator-messages-6cb0f2f76838e6d25e96bece26bdf65ed8e1c4cf.tar.gz ayatana-indicator-messages-6cb0f2f76838e6d25e96bece26bdf65ed8e1c4cf.tar.bz2 ayatana-indicator-messages-6cb0f2f76838e6d25e96bece26bdf65ed8e1c4cf.zip |
X and Y pointer position aren't supported anymore by libindicator
Dropping them!
-rw-r--r-- | src/indicator-messages.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/indicator-messages.c b/src/indicator-messages.c index 56f90b0..4849e77 100644 --- a/src/indicator-messages.c +++ b/src/indicator-messages.c @@ -93,9 +93,8 @@ static GtkImage * get_icon (IndicatorObject * io); static GtkMenu * get_menu (IndicatorObject * io); static void indicator_messages_middle_click (IndicatorObject * io, IndicatorObjectEntry * entry, - guint time, gint x, gint y, - gpointer data); -static const gchar * get_accessible_desc (IndicatorObject * io); + guint time, gpointer data); +static const gchar * get_accessible_desc (IndicatorObject * io); static void connection_change (IndicatorServiceManager * sm, gboolean connected, gpointer user_data); @@ -812,7 +811,7 @@ get_accessible_desc (IndicatorObject * io) /* Hide the notifications on middle-click over the indicator-messages */ static void indicator_messages_middle_click (IndicatorObject * io, IndicatorObjectEntry * entry, - guint time, gint x, gint y, gpointer data) + guint time, gpointer data) { g_return_if_fail(attention); |