X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4ae776b767f12af7e0c4f8e64a7848cfd44ada44..ce7208d49d5ce2ca1dc0b3b83f14f1d04f29c4bf:/src/common/textbuf.cpp diff --git a/src/common/textbuf.cpp b/src/common/textbuf.cpp index b1950d24bc..2aa823d9b3 100644 --- a/src/common/textbuf.cpp +++ b/src/common/textbuf.cpp @@ -181,14 +181,14 @@ bool wxTextBuffer::Create() return true; } -bool wxTextBuffer::Open(const wxString& strBufferName, wxMBConv& conv) +bool wxTextBuffer::Open(const wxString& strBufferName, const wxMBConv& conv) { m_strBufferName = strBufferName; return Open(conv); } -bool wxTextBuffer::Open(wxMBConv& conv) +bool wxTextBuffer::Open(const wxMBConv& conv) { // buffer name must be either given in ctor or in Open(const wxString&) wxASSERT( !m_strBufferName.empty() ); @@ -276,7 +276,7 @@ bool wxTextBuffer::Close() return true; } -bool wxTextBuffer::Write(wxTextFileType typeNew, wxMBConv& conv) +bool wxTextBuffer::Write(wxTextFileType typeNew, const wxMBConv& conv) { return OnWrite(typeNew, conv); }