const-ness warnings in non-Unicode again.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-04-16 17:26:23 +00:00
parent b2219150ca
commit 9626e0bfc6
2 changed files with 3 additions and 3 deletions

View File

@@ -535,7 +535,7 @@ void wxPropertyValue::WritePropertyType(ostream& stream) // Write as any othe
{
// stream << "\"";
int i;
wxWX2MBbuf strbuf = wxConv_libc.cWX2MB(m_value.string);
const wxWX2MBbuf strbuf = wxConv_libc.cWX2MB(m_value.string);
int len = strlen(strbuf);
for (i = 0; i < len; i++)
{