|
From: <gi...@gp...> - 2011-05-22 21:45:49
|
The branch, master has been updated
via 416ccb60d759cd0e4e27d230a2af01bcc9f3ccdc (commit)
from 1bdbe76f428d1c536ce460c34290e639f7a95746 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
src/hid/gtk/gui-output-events.c | 8 --------
1 files changed, 0 insertions(+), 8 deletions(-)
=================
Commit Messages
=================
commit 416ccb60d759cd0e4e27d230a2af01bcc9f3ccdc
Author: Felix Ruoff <Fe...@po...>
Commit: Krzysztof KoÅciuszkiewicz <k.k...@gm...>
hid/gtk: Cleanup conditional code because GTK 2.12 is required now
Closes-bug: lp-699510
:100644 100644 5f5f16e... c275d7b... M src/hid/gtk/gui-output-events.c
=========
Changes
=========
commit 416ccb60d759cd0e4e27d230a2af01bcc9f3ccdc
Author: Felix Ruoff <Fe...@po...>
Commit: Krzysztof KoÅciuszkiewicz <k.k...@gm...>
hid/gtk: Cleanup conditional code because GTK 2.12 is required now
Closes-bug: lp-699510
diff --git a/src/hid/gtk/gui-output-events.c b/src/hid/gtk/gui-output-events.c
index 5f5f16e..c275d7b 100644
--- a/src/hid/gtk/gui-output-events.c
+++ b/src/hid/gtk/gui-output-events.c
@@ -518,13 +518,6 @@ ghid_port_drawing_area_configure_event_cb (GtkWidget * widget,
}
-#if GTK_CHECK_VERSION(2,12,0)
-# define ENABLE_TOOLTIPS 1
-#else
-# define ENABLE_TOOLTIPS 0
-#endif
-
-#if ENABLE_TOOLTIPS
static char *
describe_location (LocationType X, LocationType Y)
{
@@ -638,7 +631,6 @@ queue_tooltip_update (GHidPort *out)
(GSourceFunc) check_object_tooltips,
out);
}
-#endif
gint
ghid_port_window_motion_cb (GtkWidget * widget,
|