macOS: Tunnel detail: Rename action handling methods

Signed-off-by: Roopesh Chander <roop@roopc.net>
This commit is contained in:
Roopesh Chander
2019-01-17 00:41:32 +05:30
parent 47c5f23a0a
commit dbd5108475
@@ -107,7 +107,7 @@ class TunnelDetailTableViewController: NSViewController {
statusCheckbox.action = #selector(statusCheckboxToggled(sender:))
editButton.target = self
editButton.action = #selector(editButtonClicked)
editButton.action = #selector(handleEditTunnelAction)
let clipView = NSClipView()
clipView.documentView = tableView
@@ -195,7 +195,7 @@ class TunnelDetailTableViewController: NSViewController {
statusCheckbox.isEnabled = shouldBeEnabled
}
@objc func editButtonClicked() {
@objc func handleEditTunnelAction() {
let tunnelEditVC = TunnelEditViewController(tunnelsManager: tunnelsManager, tunnel: tunnel)
tunnelEditVC.delegate = self
presentAsSheet(tunnelEditVC)