summaryrefslogtreecommitdiff
path: root/prev/common_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2016-05-30 00:14:46 -0400
committerPietro Gagliardi <[email protected]>2016-05-30 00:14:46 -0400
commit52f7d276a6bb04b8827ac019ad1e135b43819cea (patch)
tree5f0ebbfdf5885ef832e77e243b5916e59f46ba18 /prev/common_darwin.go
parentc9b32c1333e4009b342eedc5f5b39127a724fb42 (diff)
Removed prev/.
Diffstat (limited to 'prev/common_darwin.go')
-rw-r--r--prev/common_darwin.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/prev/common_darwin.go b/prev/common_darwin.go
deleted file mode 100644
index bf8c0c0..0000000
--- a/prev/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
-}