From acc4a543566550ed563887a5827735596a5d816c Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 16 May 2014 06:56:33 -0400 Subject: [PATCH] Resolved the TODO about one of the functions in sysdata_darwin.m not being properly type-checked: I forgot to include sysdata_darwin.h (it was commented out)! Not a problem anymore, of course... --- objc_darwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objc_darwin.h b/objc_darwin.h index d20eb46..34405c6 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -109,7 +109,7 @@ extern intptr_t comboboxSelectedIndex(id); extern void comboboxDelete(id, intptr_t); extern intptr_t comboboxLen(id); extern void comboboxSelectIndex(id, BOOL, intptr_t); -extern id makeLineEdit(BOOL); /* TODO I accidentally left this as taking no arguments and clang didn't complain when compiling sysdata_darwin.m?! */ +extern id makeLineEdit(BOOL); extern void lineeditSetText(id, id); extern id lineeditText(id); extern id makeLabel(void);