suppress more float/double->int conversion warnings to be able to see anything else in wxOSX/Cocoa build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61146 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-06-20 21:27:20 +00:00
parent 6398a32d3b
commit e490b0d23b
4 changed files with 38 additions and 38 deletions

View File

@@ -106,10 +106,10 @@ public:
{
wxNSTabView* slf = (wxNSTabView*) m_osxView;
NSRect r = [slf contentRect];
left = r.origin.x;
top = r.origin.y;
width = r.size.width;
height = r.size.height;
left = (int)r.origin.x;
top = (int)r.origin.y;
width = (int)r.size.width;
height = (int)r.size.height;
}
void SetValue( wxInt32 value )