]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/choice.cpp
Added SetBitmap, GetBitmap to wxWizard
[wxWidgets.git] / src / mac / carbon / choice.cpp
index 8898554b2075eaeecaa8204b7430897adfa23371..b0ba01d97debc5e1cddc9b5957889e335439a923 100644 (file)
@@ -17,6 +17,7 @@
 
 #ifndef WX_PRECOMP
     #include "wx/menu.h"
+    #include "wx/dcclient.h"
 #endif
 
 #include "wx/mac/uma.h"
@@ -100,7 +101,7 @@ bool wxChoice::Create(wxWindow *parent,
         SetSelection( 0 );
 
     // Needed because it is a wxControlWithItems
-    SetBestSize( size );
+    SetInitialSize( size );
 
     return true;
 }
@@ -358,6 +359,7 @@ wxSize wxChoice::DoGetBestSize() const
         wxCoord width, height ;
         dc.GetTextExtent( wxT("X"), &width, &height);
         int cx = width ;
+        lbHeight += 4;
 #else
         // And just a bit more
         int cx = ::TextWidth( "X" , 0 , 1 ) ;