Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nikita Churaev
gtk
Commits
e35fb548
Commit
e35fb548
authored
Jan 18, 1998
by
Tim Janik
Browse files
checked in wrong version of gtk_box_reorder_child previously.
-timj
parent
40808fa0
Changes
1
Hide whitespace changes
Inline
Side-by-side
gtk/gtkbox.c
View file @
e35fb548
...
...
@@ -298,7 +298,7 @@ gtk_box_reorder_child (GtkBox *box,
list
=
list
->
next
;
}
if
(
list
)
if
(
list
&&
box
->
children
->
next
)
{
GList
*
tmp_list
;
...
...
@@ -306,6 +306,8 @@ gtk_box_reorder_child (GtkBox *box,
list
->
next
->
prev
=
list
->
prev
;
if
(
list
->
prev
)
list
->
prev
->
next
=
list
->
next
;
else
box
->
children
=
list
->
next
;
tmp_list
=
box
->
children
;
while
(
pos
&&
tmp_list
->
next
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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