]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/radiobut.cpp
Use string.h instead of memory.h, since some system don't have memory.h and
[wxWidgets.git] / src / msw / radiobut.cpp
index 5196c0ba0558c6c06fc6a8866e766a3a427d378f..61ab90ded265b4f0b055972fb2e014f526214230 100644 (file)
@@ -297,7 +297,7 @@ wxSize wxRadioButton::DoGetBestSize() const
     int wRadio, hRadio;
     if ( !str.empty() )
     {
-        GetTextExtent(wxStripMenuCodes(str), &wRadio, &hRadio);
+        GetTextExtent(GetLabelText(str), &wRadio, &hRadio);
         wRadio += s_radioSize + GetCharWidth();
 
         if ( hRadio < s_radioSize )