Resolved NSMakeRect() argument casting TODO in sizing_darwin.m.

This commit is contained in:
Pietro Gagliardi 2014-07-20 14:56:25 -04:00
parent 672efd5246
commit 6da105da56
1 changed files with 1 additions and 2 deletions

View File

@ -8,6 +8,5 @@
void moveControl(id c, intptr_t x, intptr_t y, intptr_t width, intptr_t height)
{
// TODO appropriate casts
[toNSView(c) setFrame:NSMakeRect(x, y, width, height)];
[toNSView(c) setFrame:NSMakeRect((CGFloat) x, (CGFloat) y, (CGFloat) width, (CGFloat) height)];
}