aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2013-08-20 10:16:17 +0200
committerDan Gudmundsson <[email protected]>2013-08-20 12:49:22 +0200
commit51258174f9f56f6f5149459f0025f8da030321f5 (patch)
tree6db14cf5c1a9c4788a4f1ce20179ff8c9afa06c3
parent81ac8ee8eba862d4e8a12f88f15e2ee526d74dbd (diff)
downloadotp-51258174f9f56f6f5149459f0025f8da030321f5.tar.gz
otp-51258174f9f56f6f5149459f0025f8da030321f5.tar.bz2
otp-51258174f9f56f6f5149459f0025f8da030321f5.zip
wx: Fix api generator
Be usable with doxygen 1.8.3
-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