diff options
author | raveit65 <[email protected]> | 2016-06-22 11:49:11 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-22 11:49:11 +0200 |
commit | a0292d6425b8413fe465285c78a670e6f09d72ec (patch) | |
tree | 2a0517763e685ef74070803aad36a6916c31a9de /cut-n-paste/toolbar-editor/egg-editable-toolbar.c | |
parent | fd09fb9251212e7161796a2007f2b1f8c97e57a9 (diff) | |
download | atril-a0292d6425b8413fe465285c78a670e6f09d72ec.tar.bz2 atril-a0292d6425b8413fe465285c78a670e6f09d72ec.tar.xz |
GTK+-3: do not use deprecated gtk_{h/v}box_new
Diffstat (limited to 'cut-n-paste/toolbar-editor/egg-editable-toolbar.c')
-rw-r--r-- | cut-n-paste/toolbar-editor/egg-editable-toolbar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c index 480abc14..2e40162c 100644 --- a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c +++ b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c @@ -38,6 +38,7 @@ static GdkPixbuf * new_separator_pixbuf (void); #if GTK_CHECK_VERSION (3, 0, 0) #define gdk_cursor_unref g_object_unref #define gtk_widget_render_icon(A,B,C,D) gtk_widget_render_icon_pixbuf(A,B,C) +#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y) #endif static const GtkTargetEntry dest_drag_types[] = { |