diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-02 17:44:13 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-02 17:44:13 -0500 |
| commit | 234b724403bb93171a0eac72a8c24db3879c5900 (patch) | |
| tree | c92f53c3757719cb58f671b049c06501428658c4 /bleh_darwin.m | |
| parent | 01e587174144ed4b6b5383346fdf2697f86f9423 (diff) | |
Added the other Combobox modification functions to the Mac OS X backend. Before continuing, I'll get messageboxes working...
Diffstat (limited to 'bleh_darwin.m')
| -rw-r--r-- | bleh_darwin.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bleh_darwin.m b/bleh_darwin.m index 80896ef..1b58e77 100644 --- a/bleh_darwin.m +++ b/bleh_darwin.m @@ -36,6 +36,11 @@ id objc_msgSend_int(id obj, SEL sel, intptr_t a) return objc_msgSend(obj, sel, (NSInteger) a); } +id objc_msgSend_id_int(id obj, SEL sel, id a, intptr_t b) +{ + return objc_msgSend(obj, sel, a, (NSInteger) b); +} + /* These are the objc_msgSend() wrappers around NSRect. The problem is that while on 32-bit systems, NSRect is a concrete structure, on 64-bit systems it's just a typedef to CGRect. While in practice just using CGRect everywhere seems to work, better to be safe than sorry. |
