]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/button.cpp
don't create non-existing groups in HasEntry()
[wxWidgets.git] / src / mac / classic / button.cpp
index 12864683c98d46497d957874a618204afebd191b..a12aa3a9b9e3212bb4131b9cc0d9cd8ca8910414 100644 (file)
 #endif
 
 #include "wx/button.h"
-#include "wx/panel.h"
+
+#ifndef WX_PRECOMP
+    #include "wx/panel.h"
+#endif
+
 #include "wx/stockitem.h"
 
 IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
@@ -90,7 +94,7 @@ wxSize wxButton::DoGetBestSize() const
 {
     wxSize sz = GetDefaultSize() ;
 
-    int wBtn = m_label.Length() * 8 + 12 + 2 * kMacOSXHorizontalBorder ;
+    int wBtn = m_label.length() * 8 + 12 + 2 * kMacOSXHorizontalBorder ;
 
     if (wBtn > sz.x) sz.x = wBtn;