diff options
author | Stefano Karapetsas <[email protected]> | 2014-04-30 23:24:04 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-04-30 23:24:04 +0200 |
commit | 36c964e0a6d1deaee624cd2a6a76ff5c73141865 (patch) | |
tree | 1479121d344123a17ec1e4238aa276ee59572d4e /mate-dictionary/src/gdict-applet.c | |
parent | 309200788af7a414b4c54234d7791a31ca4abcff (diff) | |
download | mate-utils-36c964e0a6d1deaee624cd2a6a76ff5c73141865.tar.bz2 mate-utils-36c964e0a6d1deaee624cd2a6a76ff5c73141865.tar.xz |
mate-dictionary: Add GTK3 support
Diffstat (limited to 'mate-dictionary/src/gdict-applet.c')
-rw-r--r-- | mate-dictionary/src/gdict-applet.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mate-dictionary/src/gdict-applet.c b/mate-dictionary/src/gdict-applet.c index ae94b698..b29b8cd8 100644 --- a/mate-dictionary/src/gdict-applet.c +++ b/mate-dictionary/src/gdict-applet.c @@ -27,9 +27,12 @@ #include <glib/gi18n.h> #include <gio/gio.h> +#include <gtk/gtk.h> #include <gdk/gdkkeysyms.h> +#if GTK_CHECK_VERSION (3, 0, 0) +#include <gdk/gdkkeysyms-compat.h> +#endif #include <gdk-pixbuf/gdk-pixbuf.h> -#include <gtk/gtk.h> #include "gdict-applet.h" #include "gdict-about.h" @@ -742,6 +745,7 @@ gdict_applet_cmd_help (GtkAction *action, } } +#if !GTK_CHECK_VERSION (3, 0, 0) static void gdict_applet_change_background (MatePanelApplet *applet, MatePanelAppletBackgroundType type, @@ -754,6 +758,7 @@ gdict_applet_change_background (MatePanelApplet *applet, color, pixmap); } +#endif static void gdict_applet_change_orient (MatePanelApplet *applet, @@ -1111,7 +1116,9 @@ gdict_applet_class_init (GdictAppletClass *klass) widget_class->size_allocate = gdict_applet_size_allocate; widget_class->style_set = gdict_applet_style_set; +#if !GTK_CHECK_VERSION (3, 0, 0) applet_class->change_background = gdict_applet_change_background; +#endif applet_class->change_orient = gdict_applet_change_orient; g_type_class_add_private (gobject_class, sizeof (GdictAppletPrivate)); |