diff options
Diffstat (limited to 'charpick/properties.c')
-rw-r--r-- | charpick/properties.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/charpick/properties.c b/charpick/properties.c index e732a730..22104235 100644 --- a/charpick/properties.c +++ b/charpick/properties.c @@ -15,6 +15,11 @@ #define CHARPICK_STOCK_EDIT "charpick-stock-edit" +#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 + void register_stock_for_edit (void) { |