Displaying 5 results from an estimated 5 matches for "mark_wxsiz".
Did you mean:
mark_wxsizer
2007 May 28
0
[1033] trunk/wxruby2/swig: GC fixes for nested sizers; fix crashes in html.rb demo
...ule(directors="1") wxBoxSizer
</span><span class="cx"> GC_MANAGE_AS_OBJECT(wxBoxSizer);
</span><span class="cx">
</span><ins>+
+// shared functions for GC marking
+%include "../shared/sizers.i"
+%markfunc wxBoxSizer "mark_wxSizer";
+
+
</ins><span class="cx"> %import "include/wxObject.h"
</span><span class="cx"> %import "include/wxSizer.h"
</span><span class="cx">
</span></span></pre></div>
<a id="tr...
2007 Jul 04
0
[1108] trunk/wxruby2/swig: Revised mem mgmt for Sizers to address more GC crashes in Sizers demo
...ot;>
</span><span class="cx">
</span><del>-// shared functions for GC marking
</del><ins>+// shared functions
</ins><span class="cx"> %include "../shared/sizers.i"
</span><del>-%markfunc wxBoxSizer "mark_wxSizer";
</del><span class="cx">
</span><del>-
</del><span class="cx"> %import "include/wxObject.h"
</span><span class="cx"> %import "include/wxSizer.h"
</span><span class="cx">...
2007 Jun 26
0
[1087] trunk/wxruby2/swig/classes/StaticBoxSizer.i: Fix a dopey typo introduced recently
...ines">@@ -8,7 +8,7 @@
</span><span class="cx">
</span><span class="cx"> // shared functions for GC marking
</span><span class="cx"> %include "../shared/sizers.i"
</span><del>-%markfunc wxBoxSizer "mark_wxSizer";
</del><ins>+%markfunc wxStaticBoxSizer "mark_wxSizer";
</ins><span class="cx">
</span><span class="cx"> // Must ensure that the C++ detach method is called, else the associated
</span><span class="cx">...
2007 Jun 26
0
[1079] trunk/wxruby2/swig/classes/StaticBoxSizer.i: Fix a misnamed function accidentally added in SVN:1077
...gt;
</span><span class="cx"> // shared functions for GC marking
</span><span class="cx"> %include "../shared/sizers.i"
</span><del>-%markfunc wxBoxSizer "mark_wxSBSizer";
</del><ins>+%markfunc wxBoxSizer "mark_wxSizer";
</ins><span class="cx">
</span><span class="cx"> // Must ensure that the C++ detach method is called, else the associated
</span><span class="cx"> // StaticBox will be double-freed
</span></span></pre>
<...
2007 Jun 26
0
[1077] trunk/wxruby2/swig/classes/StaticBoxSizer.i: Avoid crash-on-exit with StatBoxSizer by removing some unnec director methods
...nes">@@ -8,8 +8,15 @@
</span><span class="cx">
</span><span class="cx"> // shared functions for GC marking
</span><span class="cx"> %include "../shared/sizers.i"
</span><del>-%markfunc wxBoxSizer "mark_wxSizer";
</del><ins>+%markfunc wxBoxSizer "mark_wxSBSizer";
</ins><span class="cx">
</span><ins>+// Must ensure that the C++ detach method is called, else the associated
+// StaticBox will be double-freed
+%feature(nodirector) wxStaticBoxSize...