From: Karsten Ballüder Date: Wed, 9 Sep 1998 08:49:33 +0000 (+0000) Subject: removed __WXMSW__ define X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5a2055fa9b4cacc94771e191460d8dc3b08537a4 removed __WXMSW__ define git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/dnd/dnd.cpp b/samples/dnd/dnd.cpp index 252a701692..9933d0d3bc 100644 --- a/samples/dnd/dnd.cpp +++ b/samples/dnd/dnd.cpp @@ -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;