From 5af4b77ff3152e9ecdd971fb88bf296724001327 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Sun, 22 Jul 2001 17:00:57 +0000 Subject: [PATCH] added missing conditional compilation test for MSW specific events git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11150 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/exec/exec.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/samples/exec/exec.cpp b/samples/exec/exec.cpp index 1634f47fb7..50c351e463 100644 --- a/samples/exec/exec.cpp +++ b/samples/exec/exec.cpp @@ -233,9 +233,11 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_MENU(Exec_OpenFile, MyFrame::OnFileExec) +#ifdef __WINDOWS__ EVT_MENU(Exec_DDEExec, MyFrame::OnDDEExec) EVT_MENU(Exec_DDERequest, MyFrame::OnDDERequest) - +#endif // __WINDOWS__ + EVT_MENU(Exec_About, MyFrame::OnAbout) EVT_IDLE(MyFrame::OnIdle) -- 2.45.2