]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.cpp.in
fix for handling (Shift-)Ctrl-Tab when the notebook itself has focus (patch 813507)
[wxWidgets.git] / src / stc / stc.cpp.in
index 2df0a99cc2e805f445997566ea25849957323a3a..2b531a6f5416163d3d721017ba98d72068ad3d64 100644 (file)
@@ -368,6 +368,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); 
 } 
@@ -376,6 +377,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
 
 
 //----------------------------------------------------------------------