search for: 1fd980044

Displaying 1 result from an estimated 1 matches for "1fd980044".

Did you mean: 1980044
2018 Nov 06
1
[PATCH] p2v: use newer GTK APIs if possible
...3,10,0) /* gtk < 3.10 */ +#define gdk_event_get_event_type(event) ((event)->type) +#endif + #if GTK_CHECK_VERSION(3,10,0) /* gtk >= 3.10 */ #undef GTK_STOCK_DIALOG_WARNING #define GTK_STOCK_DIALOG_WARNING "dialog-warning" diff --git a/p2v/gui.c b/p2v/gui.c index a23d0ea53..1fd980044 100644 --- a/p2v/gui.c +++ b/p2v/gui.c @@ -1329,15 +1329,20 @@ maybe_identify_click (GtkWidget *interfaces_list, GdkEventButton *event, gpointer data) { gboolean ret = FALSE; /* Did we handle this event? */ + guint button; /* Single left click only. */ - if...