summaryrefslogtreecommitdiff
path: root/smartwindow/common.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-21 00:15:20 -0600
committerJeff Carr <[email protected]>2024-01-21 00:15:20 -0600
commitfdc01e28d9f45e923bdbc783f957e5b87f108659 (patch)
treee5ff92b4cbeb21d7c57eec0cf4cc8aa71d622ee3 /smartwindow/common.go
parent495a08eddaef290dd4a6f63a543cf31ef26522f5 (diff)
name changes in the gui package
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'smartwindow/common.go')
-rw-r--r--smartwindow/common.go22
1 files changed, 0 insertions, 22 deletions
diff --git a/smartwindow/common.go b/smartwindow/common.go
deleted file mode 100644
index 5c55c34..0000000
--- a/smartwindow/common.go
+++ /dev/null
@@ -1,22 +0,0 @@
-// This creates a 'smart window'
-// it should work even when it is hidden
-// from the gui toolkit plugins
-package smartwindow
-
-import (
- "go.wit.com/log"
-)
-
-func (sw *SmartWindow) Ready() bool {
- log.Log(INFO, "Ready() START")
- if sw == nil {return false}
- if sw.window == nil {return false}
- log.Log(INFO, "Ready() END sw.ready =", sw.ready)
- return sw.ready
-}
-
-func (sw *SmartWindow) Initialized() bool {
- log.Log(INFO, "checking Initialized()")
- if sw == nil {return false}
- return true
-}