From 0ac40be173f9a1410c5149da605ffd1db24fc911 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 4 Aug 2014 13:39:33 -0400 Subject: Removed Control.containerShow() and Control.containerHide() and the overall ability to show and hide Controls in general; too much effort to get right. --- redo/control_windows.go | 8 -------- 1 file changed, 8 deletions(-) (limited to 'redo/control_windows.go') diff --git a/redo/control_windows.go b/redo/control_windows.go index ac57527..49ac644 100644 --- a/redo/control_windows.go +++ b/redo/control_windows.go @@ -18,14 +18,6 @@ func basesetParent(c controlPrivate, p *controlParent) { C.controlSetParent(c.hwnd(), p.hwnd) } -func basecontainerShow(c controlPrivate) { - C.ShowWindow(c.hwnd(), C.SW_SHOW) -} - -func basecontainerHide(c controlPrivate) { - C.ShowWindow(c.hwnd(), C.SW_HIDE) -} - // don't specify basepreferredSize; it is custom on ALL controls func basecommitResize(c controlPrivate, a *allocation, d *sizing) { -- cgit v1.2.3