projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Declarations missing from VC++ 5
[wxWidgets.git]
/
src
/
common
/
textbuf.cpp
diff --git
a/src/common/textbuf.cpp
b/src/common/textbuf.cpp
index b1950d24bc4590902a1c1b84fa9c90b1fdf8efbe..2aa823d9b3511deef6ce03dca404c0f0826a266b 100644
(file)
--- a/
src/common/textbuf.cpp
+++ b/
src/common/textbuf.cpp
@@
-181,14
+181,14
@@
bool wxTextBuffer::Create()
return true;
}
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);
}
{
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() );
{
// 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;
}
return true;
}
-bool wxTextBuffer::Write(wxTextFileType typeNew, wxMBConv& conv)
+bool wxTextBuffer::Write(wxTextFileType typeNew,
const
wxMBConv& conv)
{
return OnWrite(typeNew, conv);
}
{
return OnWrite(typeNew, conv);
}