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/wxCheckBox.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/wxCheckBox.erl')
-rw-r--r-- | lib/wx/src/gen/wxCheckBox.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/src/gen/wxCheckBox.erl b/lib/wx/src/gen/wxCheckBox.erl index 37bca77cae..6e30f14207 100644 --- a/lib/wx/src/gen/wxCheckBox.erl +++ b/lib/wx/src/gen/wxCheckBox.erl @@ -99,7 +99,7 @@ new(Parent,Id,Label) Option :: {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} - | {validator, wx:wx()}. + | {validator, wx:wx_object()}. new(#wx_ref{type=ParentT,ref=ParentRef},Id,Label, Options) when is_integer(Id),is_list(Label),is_list(Options) -> ?CLASS(ParentT,wxWindow), @@ -127,7 +127,7 @@ create(This,Parent,Id,Label) Option :: {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} - | {validator, wx:wx()}. + | {validator, wx:wx_object()}. create(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=ParentT,ref=ParentRef},Id,Label, Options) when is_integer(Id),is_list(Label),is_list(Options) -> ?CLASS(ThisT,wxCheckBox), |