summaryrefslogtreecommitdiff
path: root/textbox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-03 18:15:54 -0600
committerJeff Carr <[email protected]>2024-01-03 18:15:54 -0600
commit0a20b22a6c13c2ccf6a914cd847be9e3f744b343 (patch)
treebd8bcde875b5d88e5f890331dfb3cafc12b05b23 /textbox.go
parent3f42ba188239c0c367718348515bd1b825196c7a (diff)
move to go.wit.com/log !!!
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'textbox.go')
-rw-r--r--textbox.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/textbox.go b/textbox.go
index d772636..f4b156a 100644
--- a/textbox.go
+++ b/textbox.go
@@ -1,6 +1,8 @@
package gui
import (
+ "go.wit.com/log"
+
"go.wit.com/gui/gui/toolkit"
)
@@ -8,7 +10,7 @@ func (parent *Node) NewTextbox(name string) *Node {
newNode := parent.newNode(name, toolkit.Textbox)
newNode.Custom = func() {
- log(debugGui, "NewTextbox changed =", name)
+ log.Log(GUI, "NewTextbox changed =", name)
}
a := newAction(newNode, toolkit.Add)
@@ -22,7 +24,7 @@ func (parent *Node) NewEntryLine(name string) *Node {
newNode.X = 1
newNode.Custom = func() {
- log(debugGui, "NewTextbox changed =", name)
+ log.Log(GUI, "NewTextbox changed =", name)
}
a := newAction(newNode, toolkit.Add)