summaryrefslogtreecommitdiff
path: root/delegate_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-04 22:21:53 -0400
committerPietro Gagliardi <[email protected]>2014-04-04 22:21:53 -0400
commit8eee2a92b7c4e3884c3b4e0c37a6bd7e6b37d4e4 (patch)
treeeea3ea1c6d51cf1e51b820b09ba0dc4931ef35c3 /delegate_darwin.go
parent8c109a0ae96bdbcabf61ea972cceb20b4dd5e2c5 (diff)
Changed the way drawRect: was being added to our Mac OS X Area such that we no longer need a separate function to add it to the class.
Diffstat (limited to 'delegate_darwin.go')
-rw-r--r--delegate_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/delegate_darwin.go b/delegate_darwin.go
index 87cf4d8..00bdf6e 100644
--- a/delegate_darwin.go
+++ b/delegate_darwin.go
@@ -48,7 +48,7 @@ var appDelegateSels = []selector{
}
func mkAppDelegate() error {
- id, _, err := makeClass(_goAppDelegate, _NSObject, appDelegateSels,
+ id, err := makeClass(_goAppDelegate, _NSObject, appDelegateSels,
"application delegate (handles events)")
if err != nil {
return err