diff options
author | Dan Gudmundsson <[email protected]> | 2012-03-01 14:35:27 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-03-01 14:35:27 +0100 |
commit | df8cd79bef0ca7178efcda97401c892d24f920bc (patch) | |
tree | 5e21c6a3d00b191646da7aa47b6ae0944627c37f /lib/wx/src/gen/wxListBox.erl | |
parent | 3fe585274070eb417ee435d5447389e123c667b4 (diff) | |
download | otp-df8cd79bef0ca7178efcda97401c892d24f920bc.tar.gz otp-df8cd79bef0ca7178efcda97401c892d24f920bc.tar.bz2 otp-df8cd79bef0ca7178efcda97401c892d24f920bc.zip |
[wx] Fix bad type references
Diffstat (limited to 'lib/wx/src/gen/wxListBox.erl')
-rw-r--r-- | lib/wx/src/gen/wxListBox.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/src/gen/wxListBox.erl b/lib/wx/src/gen/wxListBox.erl index bcaf5fad3b..3b41de9ffc 100644 --- a/lib/wx/src/gen/wxListBox.erl +++ b/lib/wx/src/gen/wxListBox.erl @@ -104,7 +104,7 @@ new(Parent,Id) | {size, {W::integer(), H::integer()}} | {choices, [[unicode:chardata()]]} | {style, integer()} - | {validator, wx:wx()}. + | {validator, wx:wx_object()}. new(#wx_ref{type=ParentT,ref=ParentRef},Id, Options) when is_integer(Id),is_list(Options) -> ?CLASS(ParentT,wxWindow), @@ -130,7 +130,7 @@ create(This,Parent,Id,Pos={PosX,PosY},Size={SizeW,SizeH},Choices) -spec create(This, Parent, Id, Pos, Size, Choices, [Option]) -> boolean() when This::wxListBox(), Parent::wxWindow:wxWindow(), Id::integer(), Pos::{X::integer(), Y::integer()}, Size::{W::integer(), H::integer()}, Choices::[[unicode:chardata()]], Option :: {style, integer()} - | {validator, wx:wx()}. + | {validator, wx:wx_object()}. create(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef},Id,{PosX,PosY},{SizeW,SizeH},Choices, Options) when is_integer(Id),is_integer(PosX),is_integer(PosY),is_integer(SizeW),is_integer(SizeH),is_list(Choices),is_list(Options) -> ?CLASS(ThisT,wxListBox), |