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/fr-window.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/fr-window.c')
-rw-r--r-- | src/fr-window.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fr-window.c b/src/fr-window.c index 84bac36..505f702 100644 --- a/src/fr-window.c +++ b/src/fr-window.c @@ -100,6 +100,12 @@ static int dir_tree_icon_size = 0; #define FR_CLIPBOARD (gdk_atom_intern_static_string ("_RNGRAMPA_SPECIAL_CLIPBOARD")) #define FR_SPECIAL_URI_LIST (gdk_atom_intern_static_string ("application/engrampa-uri-list")) +#if GTK_CHECK_VERSION (3, 0, 0) +#define gtk_hpaned_new() gtk_paned_new(GTK_ORIENTATION_HORIZONTAL) +#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 GtkTargetEntry clipboard_targets[] = { { "application/engrampa-uri-list", 0, 1 } }; |