Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
vte
Commits
9d9b0ab6
Commit
9d9b0ab6
authored
Nov 09, 2010
by
Javier Jardón
Browse files
Use gtk_paned_new() instead gtk_[h|v]paned_new()
parent
d5125165
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/reflect.c
View file @
9d9b0ab6
...
...
@@ -284,7 +284,11 @@ main(int argc, char **argv)
gtk_scrolled_window_add_with_viewport
(
GTK_SCROLLED_WINDOW
(
sw
),
label
);
gtk_widget_show
(
label
);
#if GTK_CHECK_VERSION (2, 91, 2)
pane
=
gtk_paned_new
(
GTK_ORIENTATION_VERTICAL
);
#else
pane
=
gtk_vpaned_new
();
#endif
gtk_paned_pack1
(
GTK_PANED
(
pane
),
tophalf
,
TRUE
,
FALSE
);
gtk_paned_pack2
(
GTK_PANED
(
pane
),
sw
,
TRUE
,
FALSE
);
gtk_widget_show
(
tophalf
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment