summaryrefslogtreecommitdiff
path: root/redo/window_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'redo/window_windows.go')
-rw-r--r--redo/window_windows.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/redo/window_windows.go b/redo/window_windows.go
index e2a0973..01bc751 100644
--- a/redo/window_windows.go
+++ b/redo/window_windows.go
@@ -47,15 +47,6 @@ func newWindow(title string, width int, height int) *window {
return w
}
-func (w *window) SetControl(control Control) {
- if w.child != nil { // unparent existing control
- w.child.unparent()
- }
- control.unparent()
- control.parent(w)
- w.child = control
-}
-
func (w *window) Title() string {
return getWindowText(w.hwnd)
}