aboutsummaryrefslogtreecommitdiffstats
path: root/lib/wx/examples/demo/ex_sashWindow.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/wx/examples/demo/ex_sashWindow.erl')
-rw-r--r--lib/wx/examples/demo/ex_sashWindow.erl4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/wx/examples/demo/ex_sashWindow.erl b/lib/wx/examples/demo/ex_sashWindow.erl
index d8a8958f28..9eb3b9b27e 100644
--- a/lib/wx/examples/demo/ex_sashWindow.erl
+++ b/lib/wx/examples/demo/ex_sashWindow.erl
@@ -112,6 +112,10 @@ handle_info(Msg, State) ->
demo:format(State#state.config, "Got Info ~p\n", [Msg]),
{noreply, State}.
+handle_call(shutdown, _From, State=#state{parent=Panel}) ->
+ wxPanel:destroy(Panel),
+ {stop, normal, ok, State};
+
handle_call(Msg, _From, State) ->
demo:format(State#state.config, "Got Call ~p\n", [Msg]),
{reply,{error, nyi}, State}.