diff options
author | Niclas Axelsson <[email protected]> | 2011-03-09 17:23:47 +0100 |
---|---|---|
committer | Niclas Axelsson <[email protected]> | 2011-03-09 17:23:59 +0100 |
commit | 3ad2818405636fcf8b0d7b50ce5d7add83578738 (patch) | |
tree | bbefe3a37ad851c4dfa4cd0e28cea8a154954d13 /lib/reltool/src/reltool_mod_win.erl | |
parent | 8d9c62960e47cbf31d36cefe36fef41e98c0833a (diff) | |
parent | d44c5c5a9b607ef67f70a8c4a9b57208b58c2543 (diff) | |
download | otp-3ad2818405636fcf8b0d7b50ce5d7add83578738.tar.gz otp-3ad2818405636fcf8b0d7b50ce5d7add83578738.tar.bz2 otp-3ad2818405636fcf8b0d7b50ce5d7add83578738.zip |
Merge branch 'ks/reltool-spec-fixes' into dev
* ks/reltool-spec-fixes:
Fix erroneous types
Eliminate two dialyzer warnings
Cleanup
Code cleanups and simplifications
Fix a bug in the calculation of circular dependencies
Use lists:foreach/2 when the return is not needed
Put files alphabetically
Fix two erroneous specs of reltool.erl
OTP-9120
Diffstat (limited to 'lib/reltool/src/reltool_mod_win.erl')
-rw-r--r-- | lib/reltool/src/reltool_mod_win.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/reltool/src/reltool_mod_win.erl b/lib/reltool/src/reltool_mod_win.erl index 281d2c8ad4..e1c2fa5100 100644 --- a/lib/reltool/src/reltool_mod_win.erl +++ b/lib/reltool/src/reltool_mod_win.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2009-2010. All Rights Reserved. +%% Copyright Ericsson AB 2009-2011. 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 @@ -744,7 +744,7 @@ create_editor(Parent) -> wxStyledTextCtrl:styleSetFont(Ed, Style, FixedFont), wxStyledTextCtrl:styleSetForeground(Ed, Style, Color) end, - [SetStyle(Style) || Style <- Styles], + lists:foreach(fun (Style) -> SetStyle(Style) end, Styles), wxStyledTextCtrl:setKeyWords(Ed, 0, keyWords()), %% Margins Markers |