summaryrefslogtreecommitdiff
path: root/mate-panel
diff options
context:
space:
mode:
Diffstat (limited to 'mate-panel')
-rw-r--r--mate-panel/nothing.cP3
-rw-r--r--mate-panel/panel-addto.c5
-rw-r--r--mate-panel/panel-ditem-editor.c4
-rw-r--r--mate-panel/panel-force-quit.c4
4 files changed, 15 insertions, 1 deletions
diff --git a/mate-panel/nothing.cP b/mate-panel/nothing.cP
index cfb935c5..13d45cc3 100644
--- a/mate-panel/nothing.cP
+++ b/mate-panel/nothing.cP
@@ -8,6 +8,7 @@
#include <gdk/gdkkeysyms.h>
#if GTK_CHECK_VERSION (3, 0, 0)
#include <gdk/gdkkeysyms-compat.h>
+#define gtk_vbox_new(X, Y) gtk_box_new(GTK_ORIENTATION_VERTICAL, Y)
#endif
#include <canberra-gtk.h>
@@ -1571,4 +1572,4 @@ panel_dialog_window_event (GtkWidget *window,
return FALSE;
}
-#endif \ No newline at end of file
+#endif
diff --git a/mate-panel/panel-addto.c b/mate-panel/panel-addto.c
index 377ec852..401fd9ed 100644
--- a/mate-panel/panel-addto.c
+++ b/mate-panel/panel-addto.c
@@ -52,6 +52,11 @@
#include "panel-schemas.h"
#include "panel-stock-icons.h"
+#if GTK_CHECK_VERSION (3, 0, 0)
+#define gtk_vbox_new(X, Y) gtk_box_new(GTK_ORIENTATION_VERTICAL, Y)
+#define gtk_hbox_new(X, Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL, Y)
+#endif
+
typedef struct {
PanelWidget *panel_widget;
diff --git a/mate-panel/panel-ditem-editor.c b/mate-panel/panel-ditem-editor.c
index 7a4a9e64..9521df17 100644
--- a/mate-panel/panel-ditem-editor.c
+++ b/mate-panel/panel-ditem-editor.c
@@ -40,6 +40,10 @@
#include "panel-util.h"
#include "panel-marshal.h"
+#if GTK_CHECK_VERSION (3, 0, 0)
+#define gtk_hbox_new(X, Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL, Y)
+#endif
+
struct _PanelDItemEditorPrivate
{
/* we keep a ditem around, since we can never have absolutely
diff --git a/mate-panel/panel-force-quit.c b/mate-panel/panel-force-quit.c
index 9b3afaa0..8231b8f1 100644
--- a/mate-panel/panel-force-quit.c
+++ b/mate-panel/panel-force-quit.c
@@ -35,6 +35,10 @@
#include "panel-icon-names.h"
#include "panel-stock-icons.h"
+#if GTK_CHECK_VERSION (3, 0, 0)
+#define gtk_vbox_new(X, Y) gtk_box_new(GTK_ORIENTATION_VERTICAL, Y)
+#endif
+
static GdkFilterReturn popup_filter (GdkXEvent *gdk_xevent,
GdkEvent *event,
GtkWidget *popup);