diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-04 19:08:25 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-04 19:08:25 -0400 |
| commit | 461b0cc023f7297e8cb77e0aa2707cf6e4494e87 (patch) | |
| tree | 8a02be66675a8ca4d7e43f6046308036da9832aa /objc_darwin.go | |
| parent | ba2c1d6d20c9b9afe67a46120969a05672be76cd (diff) | |
Removed objc_msgSend_rect_bool().
Diffstat (limited to 'objc_darwin.go')
| -rw-r--r-- | objc_darwin.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/objc_darwin.go b/objc_darwin.go index 9ad554d..b3cfb9d 100644 --- a/objc_darwin.go +++ b/objc_darwin.go @@ -66,12 +66,6 @@ func objc_msgSend_rect(obj C.id, sel C.SEL, x int, y int, w int, h int) C.id { C.int64_t(x), C.int64_t(y), C.int64_t(w), C.int64_t(h)) } -func objc_msgSend_rect_bool(obj C.id, sel C.SEL, x int, y int, w int, h int, b C.BOOL) C.id { - return C._objc_msgSend_rect_bool(obj, sel, - C.int64_t(x), C.int64_t(y), C.int64_t(w), C.int64_t(h), - b) -} - func objc_msgSend_rect_uint_uint_bool(obj C.id, sel C.SEL, x int, y int, w int, h int, b uintptr, c uintptr, d C.BOOL) C.id { return C._objc_msgSend_rect_uint_uint_bool(obj, sel, C.int64_t(x), C.int64_t(y), C.int64_t(w), C.int64_t(h), |
