diff options
author | Dan Gudmundsson <[email protected]> | 2012-03-29 12:14:21 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-03-29 12:14:21 +0200 |
commit | a7e1dafe23eb566c662d361e6dca192db9f816e5 (patch) | |
tree | 886078440eea5f347b962038ba92853d0ec3fc7b /lib/wx/src/gen/wxControlWithItems.erl | |
parent | 8d5372dcb2aaed98063d9a9c74a052612ecfa3ca (diff) | |
download | otp-a7e1dafe23eb566c662d361e6dca192db9f816e5.tar.gz otp-a7e1dafe23eb566c662d361e6dca192db9f816e5.tar.bz2 otp-a7e1dafe23eb566c662d361e6dca192db9f816e5.zip |
[wx] Fix list in list in list specs
To many lists
Diffstat (limited to 'lib/wx/src/gen/wxControlWithItems.erl')
-rw-r--r-- | lib/wx/src/gen/wxControlWithItems.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wx/src/gen/wxControlWithItems.erl b/lib/wx/src/gen/wxControlWithItems.erl index 1e2f89dbf0..92632a1c31 100644 --- a/lib/wx/src/gen/wxControlWithItems.erl +++ b/lib/wx/src/gen/wxControlWithItems.erl @@ -103,7 +103,7 @@ append(#wx_ref{type=ThisT,ref=ThisRef},Item,ClientData) %% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxcontrolwithitems.html#wxcontrolwithitemsappend">external documentation</a>. -spec appendStrings(This, Strings) -> ok when - This::wxControlWithItems(), Strings::[[unicode:chardata()]]. + This::wxControlWithItems(), Strings::[unicode:chardata()]. appendStrings(#wx_ref{type=ThisT,ref=ThisRef},Strings) when is_list(Strings) -> ?CLASS(ThisT,wxControlWithItems), |