diff options
author | Dan Gudmundsson <[email protected]> | 2010-03-02 09:52:31 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-03-12 06:41:31 +0100 |
commit | 556b7f0aea69c7a82a2d0b4c844d07732d005288 (patch) | |
tree | 9634c0a57894a758c11cd33ea12adba202dc4163 /lib/wx/api_gen/gl_gen.erl | |
parent | e68047c805927face88ef43fd6fdbc2a631b9d0a (diff) | |
download | otp-556b7f0aea69c7a82a2d0b4c844d07732d005288.tar.gz otp-556b7f0aea69c7a82a2d0b4c844d07732d005288.tar.bz2 otp-556b7f0aea69c7a82a2d0b4c844d07732d005288.zip |
Fixed code generation from newer doxygen versions.
Also changed the wx.hrl output order.
Tried to get it to work with both doxygen-1.4.6 and doxygen-1.6.3.
Minor problems still exists with doxygen-1.6.3.
Diffstat (limited to 'lib/wx/api_gen/gl_gen.erl')
-rw-r--r-- | lib/wx/api_gen/gl_gen.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/api_gen/gl_gen.erl b/lib/wx/api_gen/gl_gen.erl index 91a6a1adbf..ac5671ae53 100644 --- a/lib/wx/api_gen/gl_gen.erl +++ b/lib/wx/api_gen/gl_gen.erl @@ -47,9 +47,9 @@ safe(What, QuitOnErr) -> io:format("Completed succesfully~n~n", []), QuitOnErr andalso gen_util:halt(0) catch Err:Reason -> - catch gen_util:close(), io:format("Error ~p: ~p:~p~n ~p~n", [get(current_func),Err,Reason,erlang:get_stacktrace()]), + (catch gen_util:close()), timer:sleep(1999), QuitOnErr andalso gen_util:halt(1) end. @@ -605,7 +605,7 @@ is_equal(F1=#func{type=T1,params=A1},F2=#func{type=T2,params=A2}) -> true -> ok; false -> %% io:format("A1: ~p~nA2: ~p~n",[A1,A2]), - ?warning("Skipped Ext Not Equal ~p ~p~n", + ?warning("Keeping Ext Not Equal ~p ~p~n", [F1#func.name,F2#func.name]) end, Equal. |