diff options
Diffstat (limited to 'andlabs/debug.go')
| -rw-r--r-- | andlabs/debug.go | 4 |
1 files changed, 1 insertions, 3 deletions
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++ { |
