diff options
author | Dan Gudmundsson <[email protected]> | 2012-06-28 10:57:29 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-06-28 10:57:29 +0200 |
commit | 1d197cd0219caec4d3619c931d5aa8c206379691 (patch) | |
tree | 56a21ccc6bee7ebe5a3b4e1350d3cbc4a999c34a /lib/et | |
parent | 11c1dc2449da78f4ecb9f45da4ffdd3be112adc1 (diff) | |
download | otp-1d197cd0219caec4d3619c931d5aa8c206379691.tar.gz otp-1d197cd0219caec4d3619c931d5aa8c206379691.tar.bz2 otp-1d197cd0219caec4d3619c931d5aa8c206379691.zip |
[et] Remove dead code (and fix dialyser warnings)
Diffstat (limited to 'lib/et')
-rw-r--r-- | lib/et/src/et_wx_contents_viewer.erl | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/lib/et/src/et_wx_contents_viewer.erl b/lib/et/src/et_wx_contents_viewer.erl index 86f46f25d0..b559da8807 100644 --- a/lib/et/src/et_wx_contents_viewer.erl +++ b/lib/et/src/et_wx_contents_viewer.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2000-2011. All Rights Reserved. +%% Copyright Ericsson AB 2000-2012. 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 @@ -245,12 +245,7 @@ handle_event(#wx{id = Id, Data when is_record(Data, filter) -> F = Data, ChildState= S#state{active_filter = F#filter.name}, - case wx_object:start_link(?MODULE, [ChildState], []) of - {ok, Pid} when S#state.parent_pid =/= self() -> - unlink(Pid); - _ -> - ignore - end; + wx_object:start_link(?MODULE, [ChildState], []); {hide, Actors} -> send_viewer_event(S, {delete_actors, Actors}); {show, Actors} -> @@ -356,12 +351,7 @@ handle_event(#wx{event = #wxKey{rawCode = KeyCode}}, S) -> case lists:keysearch(?DEFAULT_FILTER_NAME, #filter.name, S#state.filters) of {value, F} when is_record(F, filter) -> ChildState= S#state{active_filter = F#filter.name}, - case wx_object:start_link(?MODULE, [ChildState], []) of - {ok, Pid} when S#state.parent_pid =/= self() -> - unlink(Pid); - _ -> - ignore - end; + wx_object:start_link(?MODULE, [ChildState], []); false -> ignore end, @@ -370,12 +360,7 @@ handle_event(#wx{event = #wxKey{rawCode = KeyCode}}, S) -> case catch lists:nth(Int-$0, S#state.filters) of F when is_record(F, filter) -> ChildState= S#state{active_filter = F#filter.name}, - case wx_object:start_link(?MODULE, [ChildState], []) of - {ok, Pid} when S#state.parent_pid =/= self() -> - unlink(Pid); - _ -> - ignore - end; + wx_object:start_link(?MODULE, [ChildState], []); {'EXIT', _} -> ignore end, |