diff options
author | Kostis Sagonas <[email protected]> | 2011-03-06 15:42:05 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2011-03-06 15:42:05 +0200 |
commit | 5ed0324ceb1e01839aa55e547cdeef98cbe4ad24 (patch) | |
tree | 314d2e314c907fe35295d8184a071e6c21bb4323 /lib/reltool/src | |
parent | 54902e403659c4e0f34e5559b3b8a78ddd7ca107 (diff) | |
download | otp-5ed0324ceb1e01839aa55e547cdeef98cbe4ad24.tar.gz otp-5ed0324ceb1e01839aa55e547cdeef98cbe4ad24.tar.bz2 otp-5ed0324ceb1e01839aa55e547cdeef98cbe4ad24.zip |
Use lists:foreach/2 when the return is not needed
Diffstat (limited to 'lib/reltool/src')
-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 |