From: Stefan Csomor Date: Fri, 25 Jun 2004 12:19:33 +0000 (+0000) Subject: font retrieval synched for setsize and bestsize X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3413ceade83fb3026228e192d5737389aef3ad89 font retrieval synched for setsize and bestsize git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/mac/carbon/radiobox.cpp b/src/mac/carbon/radiobox.cpp index 0fbd9fa5f1..bae7911630 100644 --- a/src/mac/carbon/radiobox.cpp +++ b/src/mac/carbon/radiobox.cpp @@ -483,7 +483,7 @@ void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags) { if (i&&((i%m_majorDim)==0)) // not to do for the zero button! { - if (m_windowStyle & wxRA_VERTICAL) + if (m_windowStyle & wxRA_SPECIFY_ROWS) { x_offset += maxWidth + charWidth; y_offset = y_start; @@ -512,7 +512,7 @@ wxSize wxRadioBox::DoGetBestSize() const int eachWidth, eachHeight; int totWidth, totHeight; - wxFont font = GetParent()->GetFont(); + wxFont font = /*GetParent()->*/GetFont(); GetTextExtent(wxT("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"), &charWidth, &charHeight, NULL, NULL, &font);