summaryrefslogtreecommitdiff
path: root/new/darwin/checkbox.m
diff options
context:
space:
mode:
Diffstat (limited to 'new/darwin/checkbox.m')
-rw-r--r--new/darwin/checkbox.m4
1 files changed, 2 insertions, 2 deletions
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];