]> git.saurik.com Git - wxWidgets.git/commitdiff
removed __WXMSW__ define
authorKarsten Ballüder <ballueder@usa.net>
Wed, 9 Sep 1998 08:49:33 +0000 (08:49 +0000)
committerKarsten Ballüder <ballueder@usa.net>
Wed, 9 Sep 1998 08:49:33 +0000 (08:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/dnd/dnd.cpp

index 252a70169220bf7fb80dc464e5ba6bcd8c8f48da..9933d0d3bca9d22c535258fd033b0b928ad6d39b 100644 (file)
@@ -191,10 +191,8 @@ DnDFrame::DnDFrame(wxFrame *frame, char *title, int x, int y, int w, int h)
   m_pLogPrev = wxLog::SetActiveTarget(m_pLog);
 
   // associate drop targets with 2 text controls
-#ifdef __WXMSW__  // it's not supported (yet) on other platforms
   m_ctrlFile->SetDropTarget(new DnDFile(m_ctrlFile));
-#endif  //MSW
-  m_ctrlText->SetDropTarget(new DnDText(m_ctrlText));  
+  //m_ctrlText->SetDropTarget(new DnDText(m_ctrlText));  
 
   wxLayoutConstraints *c;