From 9daab20fcef427dbf0c27a32d8c5ec5bb3366cea Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 29 Jul 2014 23:01:28 -0400 Subject: Changed Control.setParent() to take the same argument type on all platforms; this is needed for re-adding Stack and Grid. This argument type is defined by each platform. --- redo/window_windows.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'redo/window_windows.go') diff --git a/redo/window_windows.go b/redo/window_windows.go index 1a36c01..8c64858 100644 --- a/redo/window_windows.go +++ b/redo/window_windows.go @@ -33,10 +33,6 @@ func makeWindowWindowClass() error { return nil } -type controlParent interface { - setParent(C.HWND) -} - func newWindow(title string, width int, height int, control Control) *window { w := &window{ // hwnd set in WM_CREATE handler @@ -53,7 +49,7 @@ func newWindow(title string, width int, height int, control Control) *window { panic(fmt.Errorf("error setting tab background texture on Window; HRESULT: 0x%X", hresult)) } w.child = control - w.child.setParent(w.hwnd) + w.child.setParent(&controlParent{w.hwnd}) return w } -- cgit v1.2.3