We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 209f595 commit 6a72f9dCopy full SHA for 6a72f9d
src/core/gtk_container_extension.cr
@@ -7,8 +7,8 @@ module Gtk
7
list = LibGtk.container_get_children(@pointer.as(LibGtk::Container*)).as(LibGLib::List*)
8
if !list.value.data.null?
9
childs << Gtk::Widget.new list.value.data.as(LibGtk::Widget*)
10
- while !list.value.next_.null?
11
- list = list.value.next_.as(LibGLib::List*)
+ while !list.value._next.null?
+ list = list.value._next.as(LibGLib::List*)
12
13
14
end
0 commit comments