]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tglbtn.cpp
Fixed to work with the new wxMacControl system.
[wxWidgets.git] / src / msw / tglbtn.cpp
index 072604992c505fa3bab5398be3ef6f3272928e3b..9b6d07128d7e3f7118f16705d05de37f4c2f38f3 100644 (file)
@@ -130,11 +130,15 @@ wxSize wxToggleButton::DoGetBestSize() const
    // the button height is proportional to the height of the font used
    int hBtn = BUTTON_HEIGHT_FROM_CHAR_HEIGHT(hChar);
 
+#if wxUSE_BUTTON
    wxSize sz = wxButton::GetDefaultSize();
    if (wBtn > sz.x)
        sz.x = wBtn;
    if (hBtn > sz.y)
        sz.y = hBtn;
+#else
+   wxSize sz(wBtn, hBtn);
+#endif
 
    return sz;
 }