diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-23 17:14:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-23 17:14:37 +0100 |
commit | 9892189d2e7ab94b750f99e6da4cbfc3c8014517 (patch) | |
tree | 18634bacebb9e922feceff40c924cdc48550d7ac /src/gui_beval.h | |
parent | 6bd364e08461159ad3c153ffba4def5b896486a1 (diff) | |
download | vim-git-9892189d2e7ab94b750f99e6da4cbfc3c8014517.tar.gz |
patch 7.4.1402v7.4.1402
Problem: GTK 3 is not supported.
Solution: Add GTK 3 support. (Kazunobu Kuriyama)
Diffstat (limited to 'src/gui_beval.h')
-rw-r--r-- | src/gui_beval.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui_beval.h b/src/gui_beval.h index 859c08193..ead0fb172 100644 --- a/src/gui_beval.h +++ b/src/gui_beval.h @@ -11,7 +11,11 @@ #define GUI_BEVAL_H #ifdef FEAT_GUI_GTK -# include <gtk/gtkwidget.h> +# ifdef USE_GTK3 +# include <gtk/gtk.h> +# else +# include <gtk/gtkwidget.h> +# endif #else # if defined(FEAT_GUI_X11) # include <X11/Intrinsic.h> |