summaryrefslogtreecommitdiff
path: root/src/caja-spatial-window.c
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2015-09-27 17:07:04 +0200
committermonsta <[email protected]>2015-10-19 16:06:57 +0300
commit5609227c672d94e54edec26e2b4db5f9e1697e17 (patch)
tree58e3dd3e0336c733981d8c4213089f59af5f2931 /src/caja-spatial-window.c
parentd14fef384a435471860130f7337d5dea5bb824a0 (diff)
downloadcaja-5609227c672d94e54edec26e2b4db5f9e1697e17.tar.bz2
caja-5609227c672d94e54edec26e2b4db5f9e1697e17.tar.xz
GTK3: Replace gtk_{v,h}box new with gtk_box_new
- gtk_{v,h}box usage is deprecated since gtk+-3.2.0
Diffstat (limited to 'src/caja-spatial-window.c')
-rw-r--r--src/caja-spatial-window.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/caja-spatial-window.c b/src/caja-spatial-window.c
index 4c655f64..4dfe9bfb 100644
--- a/src/caja-spatial-window.c
+++ b/src/caja-spatial-window.c
@@ -75,6 +75,10 @@
#define SPATIAL_ACTION_CLOSE_ALL_FOLDERS "Close All Folders"
#define MENU_PATH_SPATIAL_BOOKMARKS_PLACEHOLDER "/MenuBar/Other Menus/Places/Bookmarks Placeholder"
+#if GTK_CHECK_VERSION (3, 0, 0)
+#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y)
+#endif
+
struct _CajaSpatialWindowDetails
{
GtkActionGroup *spatial_action_group; /* owned by ui_manager */