]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.cpp
added missing wxCMPFUNC_CONVs (patch 820862)
[wxWidgets.git] / src / stc / stc.cpp
index 829cb32e6173407be04e8cc4f1bdda9cda484b51..c6438a351e05f84d8a430bd177ab31360d6dfc5f 100644 (file)
@@ -2117,9 +2117,9 @@ bool wxStyledTextCtrl::SaveFile(const wxString& filename)
 
     bool success = file.Write(GetText(), *wxConvCurrent);
 
-    if (success) {
+    if (success)
         SetSavePoint();
-    }
+
     return success;
 }
 
@@ -2136,7 +2136,6 @@ bool wxStyledTextCtrl::LoadFile(const wxString& filename)
 #else
         wxString buffer;
 #endif
-        
         off_t len = file.Length();
         if (len > 0)
         {
@@ -2164,6 +2163,18 @@ 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); 
+} 
+
+
+bool wxStyledTextCtrl::DoDropText(long x, long y, const wxString& data) { 
+    return m_swx->DoDropText(x, y, data);
+}
+#endif
+
+
 //----------------------------------------------------------------------
 // Event handlers