summaryrefslogtreecommitdiff
path: root/common_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-12-11 20:37:59 -0500
committerPietro Gagliardi <[email protected]>2015-12-11 20:37:59 -0500
commitf8e3f12ab02b528f2a05a4f713d7af7ea8e44b42 (patch)
tree82dedf4d37f0f6d31e88ebb2ca1ce6499dead261 /common_darwin.go
parente34c561ed5bedeb180437ec165882b98d70d38c1 (diff)
LET'S GET THIS FINAL REWRITE EVER STARTED
Diffstat (limited to 'common_darwin.go')
-rw-r--r--common_darwin.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/common_darwin.go b/common_darwin.go
deleted file mode 100644
index bf8c0c0..0000000
--- a/common_darwin.go
+++ /dev/null
@@ -1,20 +0,0 @@
-// 20 july 2014
-
-package ui
-
-// #include "objc_darwin.h"
-import "C"
-
-func fromBOOL(b C.BOOL) bool {
- if b != C.NO {
- return true
- }
- return false
-}
-
-func toBOOL(b bool) C.BOOL {
- if b == true {
- return C.YES
- }
- return C.NO
-}