Displaying 1 result from an estimated 1 matches for "statusbarerror".
2006 Nov 21
0
[ wxruby-Bugs-6809 ] Weird SWIG error when constructing statusbar
...uire ''wx''
class CrasherApp < Wx::App
def on_init
Wx::init_all_image_handlers
f = Wx::Frame.new(nil, -1, ''crash_app'')
s = Wx::StatusBar.new(f, -1)
f.set_status_bar(s)
f.show
end
end
CrasherApp.new.main_loop
# The exception is:
tests/statusbarerror.rb:9:in `process_event'': Swig director type mismatch in output value of type ''bool'' (TypeError)
from tests/statusbarerror.rb:9:in `show''
from tests/statusbarerror.rb:9:in `on_init''
from tests/statusbarerror.rb:13:in `main_loop''
from tests/st...