diff options
author | Dan Gudmundsson <[email protected]> | 2012-03-30 08:54:18 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-03-30 08:54:18 +0200 |
commit | dff1bdcc40ef0ee723bef06f0fe9221a979507cb (patch) | |
tree | dea7c61a818160ccbf2ecf55483f18898c844f8e /lib/wx/src/gen/wxSingleChoiceDialog.erl | |
parent | 6a3780b940c9406a48df6d55a0623e6d01892ac4 (diff) | |
parent | a7e1dafe23eb566c662d361e6dca192db9f816e5 (diff) | |
download | otp-dff1bdcc40ef0ee723bef06f0fe9221a979507cb.tar.gz otp-dff1bdcc40ef0ee723bef06f0fe9221a979507cb.tar.bz2 otp-dff1bdcc40ef0ee723bef06f0fe9221a979507cb.zip |
Merge branch 'dgud/wx/misc-improvements/OTP-9947' into maint
* dgud/wx/misc-improvements/OTP-9947:
[wx] Fix list in list in list specs
Diffstat (limited to 'lib/wx/src/gen/wxSingleChoiceDialog.erl')
-rw-r--r-- | lib/wx/src/gen/wxSingleChoiceDialog.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/src/gen/wxSingleChoiceDialog.erl b/lib/wx/src/gen/wxSingleChoiceDialog.erl index 6f96e283c8..db6b41ae75 100644 --- a/lib/wx/src/gen/wxSingleChoiceDialog.erl +++ b/lib/wx/src/gen/wxSingleChoiceDialog.erl @@ -94,7 +94,7 @@ new() -> %% @equiv new(Parent,Message,Caption,Choices, []) -spec new(Parent, Message, Caption, Choices) -> wxSingleChoiceDialog() when - Parent::wxWindow:wxWindow(), Message::unicode:chardata(), Caption::unicode:chardata(), Choices::[[unicode:chardata()]]. + Parent::wxWindow:wxWindow(), Message::unicode:chardata(), Caption::unicode:chardata(), Choices::[unicode:chardata()]. new(Parent,Message,Caption,Choices) when is_record(Parent, wx_ref),is_list(Message),is_list(Caption),is_list(Choices) -> @@ -102,7 +102,7 @@ new(Parent,Message,Caption,Choices) %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxsinglechoicedialog.html#wxsinglechoicedialogwxsinglechoicedialog">external documentation</a>. -spec new(Parent, Message, Caption, Choices, [Option]) -> wxSingleChoiceDialog() when - Parent::wxWindow:wxWindow(), Message::unicode:chardata(), Caption::unicode:chardata(), Choices::[[unicode:chardata()]], + Parent::wxWindow:wxWindow(), Message::unicode:chardata(), Caption::unicode:chardata(), Choices::[unicode:chardata()], Option :: {style, integer()} | {pos, {X::integer(), Y::integer()}}. new(#wx_ref{type=ParentT,ref=ParentRef},Message,Caption,Choices, Options) |