summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/structs.go b/structs.go
index 819464a..87284a2 100644
--- a/structs.go
+++ b/structs.go
@@ -75,21 +75,3 @@ type Node struct {
// checked bool
// text string
}
-
-func (n *Node) Parent() *Node {
- return n.parent
-}
-
-func (n *Node) Window() *Node {
- return n.parent
-}
-
-func (n *Node) Append(child *Node) {
- n.children = append(n.children, child)
- if (debugGui) {
- log(debugNode, "child node:")
- child.Dump()
- log(debugNode, "parent node:")
- n.Dump()
- }
-}