summaryrefslogtreecommitdiff
path: root/smartwindow/common.go
diff options
context:
space:
mode:
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
-}