diff options
author | infirit <[email protected]> | 2014-11-20 19:26:59 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-20 19:40:56 +0100 |
commit | 0ecd00c6f86b4558e978c07221baebe64039525b (patch) | |
tree | da35027c96ed8f36f0d4148015552edf7e980641 /src/dlg-add-files.c | |
parent | 09fe261d9d0e6bbb9c44d073e6211c5eed37b2c0 (diff) | |
download | engrampa-0ecd00c6f86b4558e978c07221baebe64039525b.tar.bz2 engrampa-0ecd00c6f86b4558e978c07221baebe64039525b.tar.xz |
Gtk3: Silence the GtkBox and GtkPaned deprecation warnings
Diffstat (limited to 'src/dlg-add-files.c')
-rw-r--r-- | src/dlg-add-files.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dlg-add-files.c b/src/dlg-add-files.c index 03f3828..18b70c8 100644 --- a/src/dlg-add-files.c +++ b/src/dlg-add-files.c @@ -31,6 +31,9 @@ #include "gtk-utils.h" #include "preferences.h" +#if GTK_CHECK_VERSION (3, 0, 0) +#define gtk_hbox_new(X, Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL, Y) +#endif typedef struct { FrWindow *window; |