diff options
Diffstat (limited to 'multiload')
-rw-r--r-- | multiload/load-graph.c | 3 | ||||
-rw-r--r-- | multiload/main.c | 2 | ||||
-rw-r--r-- | multiload/properties.c | 5 |
3 files changed, 10 insertions, 0 deletions
diff --git a/multiload/load-graph.c b/multiload/load-graph.c index a6508056..3a15d4ba 100644 --- a/multiload/load-graph.c +++ b/multiload/load-graph.c @@ -15,6 +15,9 @@ #include "global.h" +#if GTK_CHECK_VERSION (3, 0, 0) +#define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y) +#endif /* Shifts data right diff --git a/multiload/main.c b/multiload/main.c index b8e065bb..a3203fcc 100644 --- a/multiload/main.c +++ b/multiload/main.c @@ -35,6 +35,8 @@ #define MATE_DESKTOP_USE_UNSTABLE_API #include <libmate-desktop/mate-desktop-utils.h> #define gdk_spawn_command_line_on_screen mate_gdk_spawn_command_line_on_screen +#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 #include "global.h" diff --git a/multiload/properties.c b/multiload/properties.c index df2433d1..3753a44b 100644 --- a/multiload/properties.c +++ b/multiload/properties.c @@ -33,6 +33,11 @@ #define HIG_IDENTATION " " #define NEVER_SENSITIVE "never_sensitive" +#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 + /* set sensitive and setup NEVER_SENSITIVE appropriately */ static void hard_set_sensitive (GtkWidget *w, gboolean sensitivity) |