diff options
| author | Jeff Carr <[email protected]> | 2021-10-31 19:52:18 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-10-31 19:52:18 -0500 |
| commit | 764513474f7f03ccc7be5369a8ea6e7bcbff9071 (patch) | |
| tree | 9b6ae37e6ed2b46cf0ac963e47a037faba74e9e0 /find.go | |
| parent | 895fc511d7f96a27b27efea995d3971a2419a7be (diff) | |
BOX: remove GuiBox
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'find.go')
| -rw-r--r-- | find.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -17,6 +17,7 @@ func (n *Node) FindControl() *ui.Control { return n.uiControl } +/* func (n *Node) FindBox() *GuiBox { if (n.box != nil) { return n.box @@ -34,11 +35,13 @@ func (n *Node) FindWindowBox() *GuiBox { } return n.box } +*/ func (w *GuiWindow) FindNode() *Node { return w.node } +/* func (b *GuiBox) FindNode() *Node { log.Println("gui.FindNode() on GuiBox") if b.node != nil { @@ -50,6 +53,7 @@ func (b *GuiBox) FindNode() *Node { os.Exit(-1) return nil } +*/ func FindWindow(s string) *GuiWindow { for name, window := range Data.WindowMap { |
