aboutsummaryrefslogtreecommitdiffstats
path: root/commands/compose/abort.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/compose/abort.go')
-rw-r--r--commands/compose/abort.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/compose/abort.go b/commands/compose/abort.go
index d6ceae6d..a11c06c5 100644
--- a/commands/compose/abort.go
+++ b/commands/compose/abort.go
@@ -16,17 +16,17 @@ func (Abort) Aliases() []string {
return []string{"abort"}
}
-func (Abort) Complete(aerc *app.Aerc, args []string) []string {
+func (Abort) Complete(args []string) []string {
return nil
}
-func (Abort) Execute(aerc *app.Aerc, args []string) error {
+func (Abort) Execute(args []string) error {
if len(args) != 1 {
return errors.New("Usage: abort")
}
- composer, _ := aerc.SelectedTabContent().(*app.Composer)
+ composer, _ := app.SelectedTabContent().(*app.Composer)
- aerc.RemoveTab(composer, true)
+ app.RemoveTab(composer, true)
return nil
}