]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stc/stc.h
Fix wrong tab order in wxAuiNotebook after dragging.
[wxWidgets.git] / include / wx / stc / stc.h
index ca27bc89f7b7da122b46c9b71c63f937bc6eb6b8..1edf28158efae43e5eadce80305d0586b8ac9d33 100644 (file)
@@ -4628,8 +4628,18 @@ public:
     // implement wxTextAreaBase pure virtual methods
     // ---------------------------------------------
 
-    virtual int GetLineLength(long n) const { return GetLine(n).length(); }
-    virtual wxString GetLineText(long n) const { return GetLine(n); }
+    virtual int GetLineLength(long lineNo) const { return static_cast<int>(GetLineText(lineNo).length()); }
+    virtual wxString GetLineText(long lineNo) const
+    {
+        wxString text = GetLine(static_cast<int>(lineNo));
+        size_t lastNewLine = text.find_last_not_of(wxS("\r\n"));
+
+        if ( lastNewLine != wxString::npos )
+            text.erase(lastNewLine + 1); // remove trailing cr+lf
+        else
+            text.clear();
+        return text;
+    }
     virtual int GetNumberOfLines() const { return GetLineCount(); }
 
     virtual bool IsModified() const { return GetModify(); }