diff options
author | Dan Gudmundsson <[email protected]> | 2011-12-10 09:50:23 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2011-12-10 09:50:23 +0100 |
commit | 8d03b919f06db216a271bc90cf90d9c697a5a5c8 (patch) | |
tree | 49dc8f7773e4ee0db65c84b8a79fdb19bad6663d /lib/debugger | |
parent | f20b520b0d2d990ab70b56345b63a8b508edde1a (diff) | |
parent | 44d21ab66987c4dc4df461901600618efd2907c3 (diff) | |
download | otp-8d03b919f06db216a271bc90cf90d9c697a5a5c8.tar.gz otp-8d03b919f06db216a271bc90cf90d9c697a5a5c8.tar.bz2 otp-8d03b919f06db216a271bc90cf90d9c697a5a5c8.zip |
Merge branch 'dgud/wx/behaviour-spec'
* dgud/wx/behaviour-spec:
[wx] Add handle_cast to avoid behaviour warning
[wx] Avoid missing wx_object behaviour warning
[wx] Remove warnings Add an additional cast when casting buffer offsets, to remove warnings "cast to pointer from integer of different size"
[wx] Add callback specs to wx_object
Diffstat (limited to 'lib/debugger')
-rw-r--r-- | lib/debugger/src/dbg_wx_filedialog_win.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/debugger/src/dbg_wx_filedialog_win.erl b/lib/debugger/src/dbg_wx_filedialog_win.erl index de9e11d81f..f109652a70 100644 --- a/lib/debugger/src/dbg_wx_filedialog_win.erl +++ b/lib/debugger/src/dbg_wx_filedialog_win.erl @@ -24,7 +24,7 @@ -export([new/3, getFilename/1, getFilenames/1, getDirectory/1, destroy/1]). %% Internal --export([init/1, handle_call/3, handle_event/2, +-export([init/1, handle_call/3, handle_event/2, handle_cast/2, handle_info/2, code_change/3, terminate/2]). -include_lib("wx/include/wx.hrl"). @@ -193,6 +193,9 @@ handle_call(getDirectory, _From, State = #state{path=Dir}) -> handle_call(destroy, _From, State) -> {stop, normal, ok, State}. +handle_cast(_, State) -> + {noreply, State}. + %% events handle_event(#wx{id=?wxID_UP}, State0) -> State = update_window(change_dir(0, State0)), |