diff options
author | Stefano Karapetsas <[email protected]> | 2013-10-26 15:21:44 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-10-26 15:21:44 +0200 |
commit | a7a5e35d8a5418d9b9939f6de99367f72ded7b6d (patch) | |
tree | b99dd50be3a75be0a4dd57dc77773f27136b75f5 | |
parent | 59b9e630489b3804538db6f45b629f7a72083f6c (diff) | |
download | mate-panel-a7a5e35d8a5418d9b9939f6de99367f72ded7b6d.tar.bz2 mate-panel-a7a5e35d8a5418d9b9939f6de99367f72ded7b6d.tar.xz |
Fix gtkx.h include for GTK2
-rw-r--r-- | mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c b/mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c index e99c8cf8..0ca1861b 100644 --- a/mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c +++ b/mate-panel/libmate-panel-applet-private/mate-panel-applet-container.c @@ -21,7 +21,10 @@ */ #include <string.h> +#include <gtk/gtk.h> +#if GTK_CHECK_VERSION (3, 0, 0) #include <gtk/gtkx.h> +#endif #include "mate-panel-applet-container.h" #include "panel-marshal.h" |