]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/control.mm
fixed wide char codeset detection for systems which do support LE/BE variants (broken...
[wxWidgets.git] / src / cocoa / control.mm
index fe1ccaa7b5fd6ea45b01af5cadcd5b3d587177f8..596f9cf4b0189fb68e57b3dc8d9f56c1bb232fe3 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     2003/02/15
 // RCS-ID:      $Id: 
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows license
+// Licence:    wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
@@ -87,7 +87,7 @@ NS_ENDHANDLER
     if(cell)
     {
         NSSize cellSize = [cell cellSize];
-        wxSize size((int)ceilf(cellSize.width),(int)ceilf(cellSize.height));
+        wxSize size((int)ceil(cellSize.width),(int)ceil(cellSize.height));
         wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxControl=%p::DoGetBestSize()==(%d,%d) from NSCell"),this,size.x,size.y);
         return size;
     }
@@ -104,7 +104,7 @@ NS_ENDHANDLER
     if(didFit)
     {
         NSRect cocoaRect = [m_cocoaNSView frame];
-        wxSize size((int)ceilf(cocoaRect.size.width),(int)ceilf(cocoaRect.size.height));
+        wxSize size((int)ceil(cocoaRect.size.width),(int)ceil(cocoaRect.size.height));
         [m_cocoaNSView setFrame: storedRect];
         wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxControl=%p::DoGetBestSize()==(%d,%d) from sizeToFit"),this,size.x,size.y);
         return size;