diff options
Diffstat (limited to 'geyes')
-rw-r--r-- | geyes/geyes.c | 5 | ||||
-rw-r--r-- | geyes/themes.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/geyes/geyes.c b/geyes/geyes.c index 161c1682..49a79402 100644 --- a/geyes/geyes.c +++ b/geyes/geyes.c @@ -27,6 +27,11 @@ #define UPDATE_TIMEOUT 100 +#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 + static void applet_back_change (MatePanelApplet *a, MatePanelAppletBackgroundType type, diff --git a/geyes/themes.c b/geyes/themes.c index 9af46d4b..325a14af 100644 --- a/geyes/themes.c +++ b/geyes/themes.c @@ -29,6 +29,11 @@ #define NUM_THEME_DIRECTORIES 2 #define HIG_IDENTATION " " +#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 + static char *theme_directories[NUM_THEME_DIRECTORIES]; enum { |