summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/common.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-03-23 12:35:07 +1100
committerJesse Duffield <jessedduffield@gmail.com>2023-04-30 13:19:53 +1000
commit43251e727596cca2538548976769e47a1bfc5593 (patch)
tree280e4f0609ca58bbbaeb80446fa0d14a7e58a993 /pkg/gui/controllers/common.go
parentf08135894344583394240f240377015ea874b03b (diff)
split context common from helper common
Diffstat (limited to 'pkg/gui/controllers/common.go')
-rw-r--r--pkg/gui/controllers/common.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/controllers/common.go b/pkg/gui/controllers/common.go
index f3b3011d3..e1af81732 100644
--- a/pkg/gui/controllers/common.go
+++ b/pkg/gui/controllers/common.go
@@ -9,7 +9,7 @@ import (
)
type controllerCommon struct {
- c *types.HelperCommon
+ c *helpers.HelperCommon
helpers *helpers.Helpers
contexts *context.ContextTree
@@ -26,7 +26,7 @@ type controllerCommon struct {
}
func NewControllerCommon(
- c *types.HelperCommon,
+ c *helpers.HelperCommon,
os *oscommands.OSCommand,
git *commands.GitCommand,
helpers *helpers.Helpers,