summaryrefslogtreecommitdiff
path: root/bleh_darwin.m
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-04 19:51:23 -0400
committerPietro Gagliardi <[email protected]>2014-04-04 19:51:59 -0400
commit5a5b486b6abd568d80150d36ed85746b445bf2fb (patch)
tree33775c2909f96f0e8d04fd62a77a118b46c2df24 /bleh_darwin.m
parentdd4a7b9cbef10d5469aa6660286dcecfde9a6ad2 (diff)
Removed objc_msgSend_rect(). This also consolidates all initWithFrame: calls into a simple initWithDummyFrame().
Diffstat (limited to 'bleh_darwin.m')
-rw-r--r--bleh_darwin.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/bleh_darwin.m b/bleh_darwin.m
index c6f1364..45df9d5 100644
--- a/bleh_darwin.m
+++ b/bleh_darwin.m
@@ -103,7 +103,7 @@ struct xrect objc_msgSend_stret_rect_noargs(id obj, SEL sel)
#define OurRect() (NSMakeRect((CGFloat) x, (CGFloat) y, (CGFloat) w, (CGFloat) h))
-id _objc_msgSend_rect(id obj, SEL sel, int64_t x, int64_t y, int64_t w, int64_t h)
+id objc_msgSend_rect(id obj, SEL sel, int64_t x, int64_t y, int64_t w, int64_t h)
{
return objc_msgSend(obj, sel, OurRect());
}