/////////////////////////////////////////////////////////////////////////////
-// Name: cocoa/control.mm
+// Name: src/cocoa/control.mm
// Purpose: wxControl class
// Author: David Elliiott
// Modified by:
// Created: 2003/02/15
-// RCS-ID: $Id:
+// RCS-ID: $Id$
// Copyright: (c) 2003 David Elliott
-// Licence: wxWindows license
+// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
+
+#include "wx/control.h"
+
#ifndef WX_PRECOMP
- #include "wx/defs.h"
- #include "wx/control.h"
#include "wx/log.h"
#endif
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;
}
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;
{
[GetNSControl() setEnabled: enable];
}
-