]> git.saurik.com Git - wxWidgets.git/commitdiff
const-ness warnings in non-Unicode again.
authorOve Kaaven <ovek@arcticnet.no>
Fri, 16 Apr 1999 17:26:23 +0000 (17:26 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Fri, 16 Apr 1999 17:26:23 +0000 (17:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2203 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/dcpsg.cpp
src/generic/prop.cpp

index 1d6dc9b7be5cd2953f59ab7e4601ee956aa5edca..a611e4881de38d88459678a02f2b5ebc0e275b81 100644 (file)
@@ -1090,7 +1090,7 @@ void wxPostScriptDC::DrawText( const wxString& text, long x, long y, bool WXUNUS
     *m_pstream << XLOG2DEV(x) << " " << YLOG2DEV(by) << " moveto\n";
 
     *m_pstream << "(";
-    wxWX2MBbuf textbuf = text.mb_str();
+    const wxWX2MBbuf textbuf = text.mb_str();
     int len = strlen (textbuf);
     int i;
     for (i = 0; i < len; i++)
@@ -1572,7 +1572,7 @@ void wxPostScriptDC::GetTextExtent( const wxString& string, long *x, long *y,
     wxCHECK_RET( x, _T("GetTextExtent: x == NULL") );
     wxCHECK_RET( y, _T("GetTextExtent: y == NULL") );
 
-    wxWX2MBbuf strbuf = string.mb_str();
+    const wxWX2MBbuf strbuf = string.mb_str();
 
 #if !USE_AFM_FOR_POSTSCRIPT
     /* Provide a VERY rough estimate (avoid using it).
index 6037890fecf41b91a56481d0c61e81ee8026e7f1..058a0d5026f94f8293bcd22f2724e749ac499f81 100644 (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++)
       {