diff options
author | raveit65 <[email protected]> | 2016-06-22 20:57:19 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-24 20:48:20 +0200 |
commit | 38d2394892d7c1403b9c6a8932c8dea4a502f960 (patch) | |
tree | e794ca48843aa449116bb0c33fabb925afc9e07c | |
parent | 1dbdaee023e47edba8dcc14ca6fced372b89c25b (diff) | |
download | atril-38d2394892d7c1403b9c6a8932c8dea4a502f960.tar.bz2 atril-38d2394892d7c1403b9c6a8932c8dea4a502f960.tar.xz |
GTK+-3: fix deprecated gtk_{v/h}separator_new
-rw-r--r-- | cut-n-paste/toolbar-editor/egg-editable-toolbar.c | 4 | ||||
-rw-r--r-- | cut-n-paste/toolbar-editor/egg-toolbar-editor.c | 4 |
2 files changed, 8 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 c81aea4c..d25d6b39 100644 --- a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c +++ b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c @@ -1822,7 +1822,11 @@ new_separator_pixbuf (void) GtkWidget *separator; GdkPixbuf *pixbuf; +#if GTK_CHECK_VERSION(3, 0, 0) + separator = gtk_separator_new (GTK_ORIENTATION_VERTICAL); +#else separator = gtk_vseparator_new (); +#endif pixbuf = new_pixbuf_from_widget (separator); return pixbuf; } diff --git a/cut-n-paste/toolbar-editor/egg-toolbar-editor.c b/cut-n-paste/toolbar-editor/egg-toolbar-editor.c index b61bf1a1..d3c2223a 100644 --- a/cut-n-paste/toolbar-editor/egg-toolbar-editor.c +++ b/cut-n-paste/toolbar-editor/egg-toolbar-editor.c @@ -555,7 +555,11 @@ append_table (GtkTable *table, GList *items, gint y, gint width) if (y > 0) { +#if GTK_CHECK_VERSION(3, 0, 0) + item = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); +#else item = gtk_hseparator_new (); +#endif alignment = gtk_alignment_new (0.5, 0.5, 1.0, 0.0); gtk_container_add (GTK_CONTAINER (alignment), item); gtk_widget_show (alignment); |