]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/stattext.cpp
Added log.h inclusion
[wxWidgets.git] / src / mac / stattext.cpp
index ac2dc2e4d081f8b2144bcd6e38081c8279003978..5509db4dddea933a0b659ce26fed1884933ade79 100644 (file)
@@ -51,7 +51,7 @@ bool wxStaticText::Create(wxWindow *parent, wxWindowID id,
         m_windowId = id;
 
     m_windowStyle = style;
-    m_label = label ;
+    m_label = wxStripMenuCodes(label) ;
 
     bool ret = wxControl::Create( parent, id, pos, size, style , wxDefaultValidator , name );
     SetBestSize( size ) ;
@@ -76,7 +76,6 @@ void wxStaticText::DrawParagraph(wxDC &dc, wxString paragraph, int &y)
 
   int x = 0 ;
 
-  int i = 0 ;
   bool linedrawn = true;
   while( paragraph.Length() > 0 )
   {
@@ -157,7 +156,7 @@ void wxStaticText::OnDraw( wxDC &dc )
   }
 
   wxString paragraph;
-  int i = 0 ;
+  size_t i = 0 ;
   wxString text = m_label;
   int y = 0 ;
   while (i < text.Length())