search for: gdk_event_get_event_type

Displaying 2 results from an estimated 2 matches for "gdk_event_get_event_type".

2018 Nov 06
1
[PATCH] p2v: use newer GTK APIs if possible
...ne hbox_new(box, homogeneous, spacing) \ do { \ @@ -79,6 +91,10 @@ gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (container), child) #endif +#if !GTK_CHECK_VERSION(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 +1...
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am