diff options
author | Dan Gudmundsson <[email protected]> | 2016-10-07 10:04:56 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2016-10-07 10:04:56 +0200 |
commit | 672c14dc0ed9e681856932c58b26d08f3d449e71 (patch) | |
tree | 1750c85999e0bf7946d7d3b49e18d441f356f8ec /lib/wx/src/gen/wxGridCellBoolEditor.erl | |
parent | e9bb2e8797931efefac711d1b6d0de9571024c4d (diff) | |
parent | 668e0ae7e0e06edc03eb188f1cb6b223ec8c8d47 (diff) | |
download | otp-672c14dc0ed9e681856932c58b26d08f3d449e71.tar.gz otp-672c14dc0ed9e681856932c58b26d08f3d449e71.tar.bz2 otp-672c14dc0ed9e681856932c58b26d08f3d449e71.zip |
Merge branch 'maint'
* maint:
New file erlang-edoc.el to support EDoc in erlang-mode
Allow reusing mnesia select continuations
Fix guard test for chardata
Diffstat (limited to 'lib/wx/src/gen/wxGridCellBoolEditor.erl')
-rw-r--r-- | lib/wx/src/gen/wxGridCellBoolEditor.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wx/src/gen/wxGridCellBoolEditor.erl b/lib/wx/src/gen/wxGridCellBoolEditor.erl index 1d949d54ff..59348f94f8 100644 --- a/lib/wx/src/gen/wxGridCellBoolEditor.erl +++ b/lib/wx/src/gen/wxGridCellBoolEditor.erl @@ -52,7 +52,7 @@ new() -> -spec isTrueValue(Value) -> boolean() when Value::unicode:chardata(). isTrueValue(Value) - when is_list(Value) -> + when ?is_chardata(Value) -> Value_UC = unicode:characters_to_binary([Value,0]), wxe_util:call(?wxGridCellBoolEditor_IsTrueValue, <<(byte_size(Value_UC)):32/?UI,(Value_UC)/binary, 0:(((8- ((4+byte_size(Value_UC)) band 16#7)) band 16#7))/unit:8>>). |