diff options
author | Dan Gudmundsson <[email protected]> | 2013-01-11 09:54:57 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2013-01-11 09:54:57 +0100 |
commit | 81923b068139ddfd0b960a55506fcad834102147 (patch) | |
tree | ae78455bb1c2ea63fecb4be888b47edba9d9415d /lib/debugger/src | |
parent | c7a03db603434507108413605d6701758d3842c1 (diff) | |
download | otp-81923b068139ddfd0b960a55506fcad834102147.tar.gz otp-81923b068139ddfd0b960a55506fcad834102147.tar.bz2 otp-81923b068139ddfd0b960a55506fcad834102147.zip |
debugger: Remove bad gs:call
A present non working gs call was left in the code
Diffstat (limited to 'lib/debugger/src')
-rw-r--r-- | lib/debugger/src/dbg_wx_trace_win.erl | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/lib/debugger/src/dbg_wx_trace_win.erl b/lib/debugger/src/dbg_wx_trace_win.erl index 40d110f071..ffe7401904 100644 --- a/lib/debugger/src/dbg_wx_trace_win.erl +++ b/lib/debugger/src/dbg_wx_trace_win.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 @@ -19,7 +19,6 @@ %% -module(dbg_wx_trace_win). --compile([{nowarn_deprecated_function,{gs,config,2}}]). %% External exports -export([init/0, stop/1]). @@ -481,13 +480,9 @@ display(#winInfo{window=Win, sb=Sb},Arg) -> %% Contents = string() %% Note: remove_code/2 should not be used for currently shown module. %%-------------------------------------------------------------------- -is_shown(WinInfo, Mod) -> - case lists:keyfind(Mod, 1, WinInfo#winInfo.editors) of - {Mod, Editor} -> - gs:config(Editor, raise), %% BUGBUG - {true, WinInfo#winInfo{editor={Mod, Editor}}}; - false -> false - end. +is_shown(_WinInfo, _Mod) -> + %% Previously cached modules here, nyi so return false + false. show_code(WinInfo = #winInfo{editor={_, Ed}}, Mod, Contents) -> %% Insert code and update breakpoints, if any |