BUG: make it compile

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2021-10-06 11:58:39 -05:00
parent 375444ea28
commit c58dee3d01
1 changed files with 2 additions and 3 deletions

View File

@ -10,14 +10,13 @@ import (
// https://ieftimov.com/post/golang-datastructures-trees/
type Node struct {
id int
id string
Name string
tag string
Width int
Height int
uiType *ui.Control
Children []*Node
children []*Node
}
func (n Node) SetName(name string) {