]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/stc/stc.cpp
mention ShouldInheritColours() change
[wxWidgets.git] / contrib / src / stc / stc.cpp
index 493db91db63ba26bd3059a8d16800b27a1e2bf85..c6438a351e05f84d8a430bd177ab31360d6dfc5f 100644 (file)
@@ -2163,6 +2163,7 @@ bool wxStyledTextCtrl::LoadFile(const wxString& filename)
 }
 
 
+#if wxUSE_DRAG_AND_DROP
 wxDragResult wxStyledTextCtrl::DoDragOver(wxCoord x, wxCoord y, wxDragResult def) { 
         return m_swx->DoDragOver(x, y, def); 
 } 
@@ -2171,6 +2172,7 @@ wxDragResult wxStyledTextCtrl::DoDragOver(wxCoord x, wxCoord y, wxDragResult def
 bool wxStyledTextCtrl::DoDropText(long x, long y, const wxString& data) { 
     return m_swx->DoDropText(x, y, data);
 }
+#endif
 
 
 //----------------------------------------------------------------------