Displaying 1 result from an estimated 1 matches for "wxwindowlist".
Did you mean:
windowlist
2007 Mar 18
0
[895] branches/wxruby2/wxwidgets_282/swig/classes: Fix Window::GetChildren method for changes in 2.6 -> 2.8 API
...nt * INOUT { int * x_INOUT, int * y_INOUT }
</span><span class="cx">
</span><span class="cx"> // Typemap for GetChildren - casts wxObjects to correct ruby wrappers
</span><del>-%typemap(out) wxList& {
</del><ins>+%typemap(out) wxWindowList& {
</ins><span class="cx"> $result = rb_ary_new();
</span><span class="cx">
</span><del>- wxNode *node = $1->GetFirst();
</del><ins>+ wxWindowListNode *node = $1->GetFirst();
</ins><span class="cx"...