summaryrefslogtreecommitdiff
path: root/andlabs/combobox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-08 21:19:42 -0600
committerJeff Carr <[email protected]>2024-01-08 21:19:42 -0600
commit02d1d9e50cab6cde6d2096efdd94756b0ba37ec6 (patch)
tree806b141c91fb2bc69cdeb8efe58b2965f4f592b0 /andlabs/combobox.go
parent3c2da3f096a5e8aeaa657deb2dc047cc23118c99 (diff)
moved to 'go.wit.com/log'
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/combobox.go')
-rw-r--r--andlabs/combobox.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/andlabs/combobox.go b/andlabs/combobox.go
index 283a29d..369b7da 100644
--- a/andlabs/combobox.go
+++ b/andlabs/combobox.go
@@ -7,7 +7,6 @@ import (
func (p *node) newCombobox(n *node) {
newt := new(guiWidget)
- log(debugToolkit, "newCombobox() START", n.Name)
cb := ui.NewEditableCombobox()
newt.uiEditableCombobox = cb
@@ -29,7 +28,6 @@ func (p *node) newCombobox(n *node) {
func (t *guiWidget) AddComboboxName(title string) {
t.uiEditableCombobox.Append(title)
if (t.val == nil) {
- log(debugToolkit, "make map didn't work")
return
}
t.val[t.c] = title