diff options
Diffstat (limited to 'andlabs')
| -rw-r--r-- | andlabs/action.go | 2 | ||||
| -rw-r--r-- | andlabs/add.go | 2 | ||||
| -rw-r--r-- | andlabs/debug.go | 2 | ||||
| -rw-r--r-- | andlabs/delete.go | 2 | ||||
| -rw-r--r-- | andlabs/dropdown.go | 2 | ||||
| -rw-r--r-- | andlabs/main.go | 2 | ||||
| -rw-r--r-- | andlabs/setText.go | 2 | ||||
| -rw-r--r-- | andlabs/tab.go | 2 | ||||
| -rw-r--r-- | andlabs/widget.go | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/andlabs/action.go b/andlabs/action.go index 82acd58..aedd8ae 100644 --- a/andlabs/action.go +++ b/andlabs/action.go @@ -3,7 +3,7 @@ package main import ( "strconv" "github.com/andlabs/ui" - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) func (n *node) show(b bool) { diff --git a/andlabs/add.go b/andlabs/add.go index d78101f..a402955 100644 --- a/andlabs/add.go +++ b/andlabs/add.go @@ -4,7 +4,7 @@ import ( "github.com/andlabs/ui" _ "github.com/andlabs/ui/winmanifest" - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) func actionDump(b bool, a *toolkit.Action) { diff --git a/andlabs/debug.go b/andlabs/debug.go index c2ab2a2..5e28dd0 100644 --- a/andlabs/debug.go +++ b/andlabs/debug.go @@ -2,7 +2,7 @@ package main import ( "strconv" - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) var defaultBehavior bool = true diff --git a/andlabs/delete.go b/andlabs/delete.go index 591d75e..7b6c2da 100644 --- a/andlabs/delete.go +++ b/andlabs/delete.go @@ -2,7 +2,7 @@ package main // if you include more than just this import // then your plugin might be doing something un-ideal (just a guess from 2023/02/27) -import "go.wit.com/gui/gui/toolkit" +import "go.wit.com/gui/toolkits" // delete the child widget from the parent // p = parent, c = child diff --git a/andlabs/dropdown.go b/andlabs/dropdown.go index 89cbf1a..c7a11e2 100644 --- a/andlabs/dropdown.go +++ b/andlabs/dropdown.go @@ -4,7 +4,7 @@ import ( "github.com/andlabs/ui" _ "github.com/andlabs/ui/winmanifest" - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) func (p *node) newDropdown(n *node) { diff --git a/andlabs/main.go b/andlabs/main.go index c1fc7ac..b135563 100644 --- a/andlabs/main.go +++ b/andlabs/main.go @@ -2,7 +2,7 @@ package main import ( "sync" - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" "github.com/andlabs/ui" // the _ means we only need this for the init() diff --git a/andlabs/setText.go b/andlabs/setText.go index 7452982..2c7fb62 100644 --- a/andlabs/setText.go +++ b/andlabs/setText.go @@ -1,7 +1,7 @@ package main import ( - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) func (n *node) setText(a *toolkit.Action) { diff --git a/andlabs/tab.go b/andlabs/tab.go index d075a51..34c3c0a 100644 --- a/andlabs/tab.go +++ b/andlabs/tab.go @@ -1,7 +1,7 @@ package main import ( - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" "github.com/andlabs/ui" _ "github.com/andlabs/ui/winmanifest" diff --git a/andlabs/widget.go b/andlabs/widget.go index cf05a9e..71082a6 100644 --- a/andlabs/widget.go +++ b/andlabs/widget.go @@ -1,7 +1,7 @@ package main import ( - "go.wit.com/gui/gui/toolkit" + "go.wit.com/gui/toolkits" ) // this is specific to the nocui toolkit |
