diff options
| author | Jeff Carr <[email protected]> | 2023-04-08 11:43:58 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-08 11:43:58 -0500 |
| commit | e582e4cfb0fa0a3a679d031b1f157b274f0d4075 (patch) | |
| tree | 7a41e27309d2adde0f057dd2f291b724247380bf /toolkit/andlabs/window.go | |
| parent | da6a4363226f14aa893be02cb4a73cbf34fd77e7 (diff) | |
andlabs: my logic for new window is still wrong
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/andlabs/window.go')
| -rw-r--r-- | toolkit/andlabs/window.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/toolkit/andlabs/window.go b/toolkit/andlabs/window.go index 9e2e950..34245d8 100644 --- a/toolkit/andlabs/window.go +++ b/toolkit/andlabs/window.go @@ -15,7 +15,7 @@ func (t *andlabsT) ErrorWindow(msg1 string, msg2 string) { ui.MsgBoxError(t.uiWindow, msg1, msg2) } -func newWindow(a *toolkit.Action) { +func newWindow(a toolkit.Action) { var newt *andlabsT newt = new(andlabsT) @@ -49,7 +49,3 @@ func (t *andlabsT) SetWindowTitle(title string) { log(debugToolkit, "Setting the window title", title) } } - -func doWindow(a *toolkit.Action) { - newWindow(a) -} |
