From e69010139dcfc67a3125f8d8e1c08fd8a576b9cd Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 25 Apr 2016 10:26:00 -0400 Subject: [PATCH] Fixed one last error. --- ui_darwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui_darwin.h b/ui_darwin.h index 9b07d6cc..2b125cff 100644 --- a/ui_darwin.h +++ b/ui_darwin.h @@ -119,7 +119,7 @@ _UI_EXTERN void uiDarwinControlSetSuperview(uiDarwinControl *, NSView *); // TODO document #define uiDarwinNewControl(type, var) \ - var = type(uiDarwinNewControl(sizeof (type), type ## Signature, #type)) \ + var = type(uiDarwinNewControl(sizeof (type), type ## Signature, #type)); \ uiControl(var)->Destroy = type ## Destroy; \ uiControl(var)->Handle = type ## Handle; \ uiControl(var)->Parent = type ## Parent; \