diff options
author | Dan Gudmundsson <[email protected]> | 2011-12-07 15:13:24 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2011-12-09 14:53:04 +0100 |
commit | 44d21ab66987c4dc4df461901600618efd2907c3 (patch) | |
tree | f19c657ef344c79a0420619e5695f58e188fa419 /lib/wx/examples/sudoku | |
parent | 7fdc3f2f145c0b2f4785b5efec522218d0080cf6 (diff) | |
download | otp-44d21ab66987c4dc4df461901600618efd2907c3.tar.gz otp-44d21ab66987c4dc4df461901600618efd2907c3.tar.bz2 otp-44d21ab66987c4dc4df461901600618efd2907c3.zip |
[wx] Add handle_cast to avoid behaviour warning
Diffstat (limited to 'lib/wx/examples/sudoku')
-rw-r--r-- | lib/wx/examples/sudoku/sudoku_board.erl | 8 | ||||
-rw-r--r-- | lib/wx/examples/sudoku/sudoku_gui.erl | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/lib/wx/examples/sudoku/sudoku_board.erl b/lib/wx/examples/sudoku/sudoku_board.erl index 756837582f..4b26ff97da 100644 --- a/lib/wx/examples/sudoku/sudoku_board.erl +++ b/lib/wx/examples/sudoku/sudoku_board.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2009. 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 @@ -30,7 +30,7 @@ draw/3, %% Callbacks init/1, handle_sync_event/3, - handle_event/2, handle_info/2, handle_call/3, + handle_event/2, handle_info/2, handle_call/3, handle_cast/2, code_change/3, terminate/2]). -include("sudoku.hrl"). @@ -209,6 +209,10 @@ handle_call({draw, DC, Size},_From, S) -> redraw(DC,Size,S), {reply, ok, S}. +handle_cast(Msg, State) -> + io:format("Got cast ~p~n",[Msg]), + {noreply,State}. + code_change(_, _, State) -> {stop, not_yet_implemented, State}. diff --git a/lib/wx/examples/sudoku/sudoku_gui.erl b/lib/wx/examples/sudoku/sudoku_gui.erl index 4aaecfe086..3d0c95ffa7 100644 --- a/lib/wx/examples/sudoku/sudoku_gui.erl +++ b/lib/wx/examples/sudoku/sudoku_gui.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2009. 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 @@ -24,7 +24,7 @@ %%%------------------------------------------------------------------- -module(sudoku_gui). --export([init/1, handle_info/2, handle_call/3, handle_event/2, +-export([init/1, handle_info/2, handle_call/3, handle_cast/2, handle_event/2, terminate/2, code_change/3]). -compile(export_all). @@ -230,6 +230,10 @@ handle_event(Msg,S) -> handle_call(What, _From, State) -> {stop, {call, What}, State}. +handle_cast(Msg, State) -> + io:format("Got cast ~p~n",[Msg]), + {noreply,State}. + code_change(_, _, State) -> {stop, not_yet_implemented, State}. |