From 841e6252c95244f0ee7faf2c01d33f69a8ab483a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 17 Jan 2024 21:31:49 -0600 Subject: common tree package for toolkits This update provides *lots* of toolkit updates. This will allow the next step of debugging the gocui toolkit to make it work again. There are new common routines for handling the plugin channel communication Signed-off-by: Jeff Carr --- andlabs/debug.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'andlabs/debug.go') diff --git a/andlabs/debug.go b/andlabs/debug.go index 7e6bb24..51048d5 100644 --- a/andlabs/debug.go +++ b/andlabs/debug.go @@ -1,8 +1,6 @@ package main import ( - "strconv" - "go.wit.com/log" // "go.wit.com/gui/widget" ) @@ -94,7 +92,7 @@ func (n *node) dumpWidget(b bool) { } info = n.WidgetType.String() - d = strconv.Itoa(n.WidgetId) + " " + info + " " + n.progname + d = string(n.WidgetId) + " " + info + " " + n.progname var tabs string for i := 0; i < listChildrenDepth; i++ { -- cgit v1.2.3