From dbd5108475aa8aa5d923f4dbc83cf274e72abd61 Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Thu, 17 Jan 2019 00:41:32 +0530 Subject: macOS: Tunnel detail: Rename action handling methods Signed-off-by: Roopesh Chander --- .../UI/macOS/ViewController/TunnelDetailTableViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'WireGuard') diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift index 5f6c891..2c7f25a 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelDetailTableViewController.swift @@ -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) -- cgit v1.2.3-59-g8ed1b