From 6b08a2b18f9c5f0ddc01a37e2cf26fa7bdf9d98e Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 16 Apr 2015 15:08:49 -0400 Subject: Fixed the OS X build, including warnings. It works. I'm still a bit unhappy about the way these backends are turning out... --- new/darwin/checkbox.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'new/darwin/checkbox.m') diff --git a/new/darwin/checkbox.m b/new/darwin/checkbox.m index 5ad6961..a7ccfb3 100644 --- a/new/darwin/checkbox.m +++ b/new/darwin/checkbox.m @@ -50,7 +50,7 @@ static void checkboxOnToggled(uiCheckbox *c, void (*f)(uiCheckbox *, void *), vo { uiCheckboxNSButton *cc; - cc = (uiCheckboxNSButton *) uiControlHandle(uiCheckbox(c)); + cc = (uiCheckboxNSButton *) uiControlHandle(uiControl(c)); cc.uiOnToggled = f; cc.uiOnToggledData = data; } @@ -83,7 +83,7 @@ uiCheckbox *uiNewCheckbox(const char *text) c = uiNew(uiCheckbox); uiDarwinNewControl(uiControl(c), [uiCheckboxNSButton class], NO, NO); - cc = (uiCheckboxNSButton *) uiControlHandle(c); + cc = (uiCheckboxNSButton *) uiControlHandle(uiControl(c)); [cc setTitle:toNSString(text)]; [cc setButtonType:NSSwitchButton]; -- cgit v1.2.3