From: Gilles Depeyrot Date: Sun, 22 Jul 2001 17:00:57 +0000 (+0000) Subject: added missing conditional compilation test for MSW specific events X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5af4b77ff3152e9ecdd971fb88bf296724001327?ds=inline 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 --- 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)