diff options
| author | Pietro Gagliardi <[email protected]> | 2014-05-16 06:56:33 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-05-16 06:56:33 -0400 |
| commit | acc4a543566550ed563887a5827735596a5d816c (patch) | |
| tree | 82b6aef600a867854d0b57db66c1875b1a91f7a7 | |
| parent | ebcbaa129de05909a39e6a6884eac94629d46083 (diff) | |
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...
| -rw-r--r-- | objc_darwin.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
