aboutsummaryrefslogtreecommitdiffstats
path: root/lib/wx/api_gen/wx_gen.erl
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2013-08-29 10:50:00 +0200
committerDan Gudmundsson <[email protected]>2013-08-29 10:50:00 +0200
commit18d4e3e1a8aa59afbf360c41a540062194ff3dd1 (patch)
treed7fc6345dbdf93b972fa00eec01cc2273bdb207b /lib/wx/api_gen/wx_gen.erl
parent3bbfd3bd72601f7881115284ebf41bc25711a6d8 (diff)
parent6a6bc2560c60ea790780dcfbc91336a734eff1be (diff)
downloadotp-18d4e3e1a8aa59afbf360c41a540062194ff3dd1.tar.gz
otp-18d4e3e1a8aa59afbf360c41a540062194ff3dd1.tar.bz2
otp-18d4e3e1a8aa59afbf360c41a540062194ff3dd1.zip
Merge branch 'maint'
Diffstat (limited to 'lib/wx/api_gen/wx_gen.erl')
-rw-r--r--lib/wx/api_gen/wx_gen.erl8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/wx/api_gen/wx_gen.erl b/lib/wx/api_gen/wx_gen.erl
index 2eb9d9d33d..3ca8cd7d14 100644
--- a/lib/wx/api_gen/wx_gen.erl
+++ b/lib/wx/api_gen/wx_gen.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2008-2012. All Rights Reserved.
+%% Copyright Ericsson AB 2008-2013. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -1350,7 +1350,11 @@ extract_enum3([#xmlElement{name=name,content=[#xmlText{value=Name}]}|R], Id, Acc
end;
extract_enum3([#xmlElement{name=initializer,content=Cs}|_],_Id,[{Name,_}|Acc]) ->
- String = extract_def2(Cs),
+ String = case extract_def2(Cs) of
+ "= " ++ Str0 -> Str0; %% Doxygen 1.8.3.1 keeps the '=' sign
+ "=" ++ Str0 -> Str0; %% Doxygen 1.8.3.1 keeps the '=' sign
+ Str0 -> Str0
+ end,
Val0 = gen_util:tokens(String,"<& "),
try
case Val0 of