diff options
| author | Jeff Carr <[email protected]> | 2023-04-06 20:50:00 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-06 20:50:00 -0500 |
| commit | 27e76ebb005280db2bbbd02b0efa6d7faf4bcec7 (patch) | |
| tree | aa86dd208e05a9f088258d5cbba3d9e350f95cfd /toolkit/andlabs/debug.go | |
| parent | 933a7e4df0e6a28ad06dfd60ab2928d5cdf916f9 (diff) | |
correctly deprecate *widget to plugins
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/andlabs/debug.go')
| -rw-r--r-- | toolkit/andlabs/debug.go | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/toolkit/andlabs/debug.go b/toolkit/andlabs/debug.go index a581657..2f8126d 100644 --- a/toolkit/andlabs/debug.go +++ b/toolkit/andlabs/debug.go @@ -1,6 +1,6 @@ package main -import "git.wit.org/wit/gui/toolkit" +// import "git.wit.org/wit/gui/toolkit" var defaultBehavior bool = true @@ -81,26 +81,6 @@ func (t *andlabsT) Dump(b bool) { if (t.uiCheckbox != nil) { log(b, "uiCheckbox =", t.uiCheckbox) } - widgetDump(b, t.tw) -} - -func widgetDump(b bool, w *toolkit.Widget) { - if (w == nil) { - log(b, "widget = nil") - return - } - - /* - log(b, "widget.Name =", w.Name) - log(b, "widget.Type =", w.Type) - log(b, "widget.Custom =", w.Custom) - log(b, "widget.B =", w.B) - log(b, "widget.I =", w.I) - log(b, "widget.Width =", w.Width) - log(b, "widget.Height =", w.Height) - log(b, "widget.X =", w.X) - log(b, "widget.Y =", w.Y) - */ } /* |
