From 217343d158afe60a5a6a15e8b894b6fd62611ad3 Mon Sep 17 00:00:00 2001 From: Dan Gudmundsson Date: Tue, 21 Feb 2012 16:05:37 +0100 Subject: [wx] Fix spec errors --- lib/wx/src/gen/wxRadioButton.erl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/wx/src/gen/wxRadioButton.erl') diff --git a/lib/wx/src/gen/wxRadioButton.erl b/lib/wx/src/gen/wxRadioButton.erl index d95972da22..a013bd65e4 100644 --- a/lib/wx/src/gen/wxRadioButton.erl +++ b/lib/wx/src/gen/wxRadioButton.erl @@ -85,7 +85,7 @@ new() -> %% @equiv new(Parent,Id,Label, []) -spec new(Parent, Id, Label) -> wxRadioButton() when - Parent::wxWindow:wxWindow(), Id::integer(), Label::string(). + Parent::wxWindow:wxWindow(), Id::integer(), Label::unicode:chardata(). new(Parent,Id,Label) when is_record(Parent, wx_ref),is_integer(Id),is_list(Label) -> @@ -93,7 +93,7 @@ new(Parent,Id,Label) %% @doc See external documentation. -spec new(Parent, Id, Label, [Option]) -> wxRadioButton() when - Parent::wxWindow:wxWindow(), Id::integer(), Label::string(), + Parent::wxWindow:wxWindow(), Id::integer(), Label::unicode:chardata(), Option :: {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} @@ -113,7 +113,7 @@ new(#wx_ref{type=ParentT,ref=ParentRef},Id,Label, Options) %% @equiv create(This,Parent,Id,Label, []) -spec create(This, Parent, Id, Label) -> boolean() when - This::wxRadioButton(), Parent::wxWindow:wxWindow(), Id::integer(), Label::string(). + This::wxRadioButton(), Parent::wxWindow:wxWindow(), Id::integer(), Label::unicode:chardata(). create(This,Parent,Id,Label) when is_record(This, wx_ref),is_record(Parent, wx_ref),is_integer(Id),is_list(Label) -> @@ -121,7 +121,7 @@ create(This,Parent,Id,Label) %% @doc See external documentation. -spec create(This, Parent, Id, Label, [Option]) -> boolean() when - This::wxRadioButton(), Parent::wxWindow:wxWindow(), Id::integer(), Label::string(), + This::wxRadioButton(), Parent::wxWindow:wxWindow(), Id::integer(), Label::unicode:chardata(), Option :: {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} @@ -158,7 +158,7 @@ setValue(#wx_ref{type=ThisT,ref=ThisRef},Val) <>). %% @doc Destroys this object, do not use object again --spec destroy(This::wxRadioButton) -> ok. +-spec destroy(This::wxRadioButton()) -> ok. destroy(Obj=#wx_ref{type=Type}) -> ?CLASS(Type,wxRadioButton), wxe_util:destroy(?DESTROY_OBJECT,Obj), -- cgit v1.2.3