diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1,22 +1,22 @@ package logsettings -import ( +import ( "go.wit.com/gui/gui" - "go.wit.com/gui/gadgets" + "go.wit.com/lib/gadgets" ) var myLogGui *LogSettings type LogSettings struct { - ready bool - hidden bool - err error + ready bool + hidden bool + err error groups map[string]*flagGroup - parent *gui.Node // where to draw our window - win *gadgets.BasicWindow // our window for displaying the log package settings + parent *gui.Node // where to draw our window + win *gadgets.BasicWindow // our window for displaying the log package settings - buttonG *gui.Node // the group of buttons - flagG *gui.Node // the group of all the flag checkbox widgets + buttonG *gui.Node // the group of buttons + flagG *gui.Node // the group of all the flag checkbox widgets } |
