summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-29 12:21:10 -0700
committerJeff Carr <[email protected]>2019-05-29 12:21:10 -0700
commit2dabe5eb9f5722b3d498af03fed274e2d248a6c8 (patch)
treee2760733cbbedd187abdcc0d3c686c891b10ce53 /structs.go
parent73804529267500c49f6321d2fb33c028c2c2fbef (diff)
more dereferencing of *ui.Area
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index 6826009..4863246 100644
--- a/structs.go
+++ b/structs.go
@@ -13,7 +13,6 @@ import pb "git.wit.com/wit/witProtobuf"
// be the safe way to interact with the GUI
//
var Data GuiDataStructure
-var window1 *WindowMap
type GuiDataStructure struct {
State string
@@ -53,15 +52,17 @@ type GuiDataStructure struct {
// pass it in
CurrentVM *pb.Event_VM
+ Window1 *WindowMap
+ Window2 *WindowMap
+
EntryNick *ui.Entry
EntryUser *ui.Entry
EntryPass *ui.Entry
// stuff for the splash screen / setup tabs
- cloudWindow *ui.Window
cloudBox *ui.Box
smallBox *ui.Box
- myAH *AreaHandler
+// myAH *AreaHandler
tabcount int
}