]> git.saurik.com Git - wxWidgets.git/commitdiff
added missing conditional compilation test for MSW specific events
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 22 Jul 2001 17:00:57 +0000 (17:00 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 22 Jul 2001 17:00:57 +0000 (17:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11150 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/exec/exec.cpp

index 1634f47fb7bbc1243dcd36663204bad2ef59755b..50c351e463896676c6ef1601c061126fc70e42e6 100644 (file)
@@ -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)