]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/textbuf.h
Added wxCriticalSection::TryEnter() method.
[wxWidgets.git] / include / wx / textbuf.h
index a5d39703ca185561568ae4d2b172c93c6c7a20ad..0db6a652799741326ad70f0635ac4487852466cd 100644 (file)
@@ -99,8 +99,10 @@ public:
     size_t GetLineCount() const { return m_aLines.size(); }
 
     // the returned line may be modified (but don't add CR/LF at the end!)
-    wxString& GetLine(size_t n)    const { return (wxString&)m_aLines[n]; }
-    wxString& operator[](size_t n) const { return (wxString&)m_aLines[n]; }
+          wxString& GetLine(size_t n)          { return m_aLines[n]; }
+    const wxString& GetLine(size_t n)    const { return m_aLines[n]; }
+          wxString& operator[](size_t n)       { return m_aLines[n]; }
+    const wxString& operator[](size_t n) const { return m_aLines[n]; }
 
     // the current line has meaning only when you're using
     // GetFirstLine()/GetNextLine() functions, it doesn't get updated when