diff options
author | Dan Gudmundsson <dgud@erlang.org> | 2020-09-30 08:36:21 +0200 |
---|---|---|
committer | Dan Gudmundsson <dgud@erlang.org> | 2020-12-21 12:04:28 +0100 |
commit | 0e80c1c8c102df6e2cdac7e2636b07b3a719797e (patch) | |
tree | 2d6100b1be9a4247b85238ae5fc99145ff7b949d /lib/reltool | |
parent | f67cd49710dbe0b866fd614a06194932476671b5 (diff) | |
download | erlang-0e80c1c8c102df6e2cdac7e2636b07b3a719797e.tar.gz |
EXTERNAL APPS COMPAT
Diffstat (limited to 'lib/reltool')
-rw-r--r-- | lib/reltool/src/reltool_mod_win.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/reltool/src/reltool_mod_win.erl b/lib/reltool/src/reltool_mod_win.erl index 7df62b71be..64c78c8b54 100644 --- a/lib/reltool/src/reltool_mod_win.erl +++ b/lib/reltool/src/reltool_mod_win.erl @@ -471,7 +471,7 @@ handle_event(#state{xref_pid = Xref} = S, Wx) -> #wx{id = ?GOTO_ENTRY, event = #wxCommand{type = command_text_enter, cmdString = Str}} -> goto_line(S, Str); - #wx{event = #wxNotebook{type = command_notebook_page_changed}} -> + #wx{event = #wxBookCtrl{type = command_notebook_page_changed}} -> case wxNotebook:getSelection(S#state.book) of 0 -> % Deps page S; @@ -746,7 +746,6 @@ create_editor(Parent) -> {?wxSTC_ERLANG_CHARACTER,{236,155,172}}, {?wxSTC_ERLANG_MACRO, {40,144,170}}, {?wxSTC_ERLANG_RECORD, {40,100,20}}, - {?wxSTC_ERLANG_SEPARATOR,{0,0,0}}, {?wxSTC_ERLANG_NODE_NAME,{0,0,0}}], SetStyle = fun({Style, Color}) -> wxStyledTextCtrl:styleSetFont(Ed, Style, FixedFont), |