summaryrefslogtreecommitdiff
path: root/redo/control_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-04 13:39:33 -0400
committerPietro Gagliardi <[email protected]>2014-08-04 13:39:33 -0400
commit0ac40be173f9a1410c5149da605ffd1db24fc911 (patch)
treec4489c16c36bcba5bb85888615895d43b8f0fa06 /redo/control_darwin.go
parent0496cf77b52e1713749fe40a8ef1b22f4918ad1d (diff)
Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right.
Diffstat (limited to 'redo/control_darwin.go')
-rw-r--r--redo/control_darwin.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/redo/control_darwin.go b/redo/control_darwin.go
index c356749..faeb899 100644
--- a/redo/control_darwin.go
+++ b/redo/control_darwin.go
@@ -20,14 +20,6 @@ func basesetParent(c controlPrivate, p *controlParent) {
C.parent(c.id(), p.id)
}
-func basecontainerShow(c controlPrivate) {
- C.controlSetHidden(c.id(), C.NO)
-}
-
-func basecontainerHide(c controlPrivate) {
- C.controlSetHidden(c.id(), C.YES)
-}
-
func basepreferredSize(c controlPrivate, d *sizing) (int, int) {
s := C.controlPrefSize(c.id())
return int(s.width), int(s.height)