diff options
author | 2019-01-17 01:28:57 +0530 | |
---|---|---|
committer | 2019-01-17 01:28:57 +0530 | |
commit | bf9cb092a983d66b9ec6dda8788fca92be66b6d5 (patch) | |
tree | 3acd36eea65dc48eabeceb6e963a48bfb1bfc100 | |
parent | macOS: Tunnel detail: Rename action handling methods (diff) | |
download | wireguard-apple-bf9cb092a983d66b9ec6dda8788fca92be66b6d5.tar.xz wireguard-apple-bf9cb092a983d66b9ec6dda8788fca92be66b6d5.zip |
macOS: Tunnel edit: Rename action handling methods
Signed-off-by: Roopesh Chander <roop@roopc.net>
-rw-r--r-- | WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift index a23088c..1ca6dc3 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift @@ -145,10 +145,10 @@ class TunnelEditViewController: NSViewController { scrollView.documentView = textView saveButton.target = self - saveButton.action = #selector(saveButtonClicked) + saveButton.action = #selector(handleSaveAction) discardButton.target = self - discardButton.action = #selector(discardButtonClicked) + discardButton.action = #selector(handleDiscardAction) let margin: CGFloat = 20 let internalSpacing: CGFloat = 10 @@ -178,7 +178,7 @@ class TunnelEditViewController: NSViewController { self.view = containerView } - @objc func saveButtonClicked() { + @objc func handleSaveAction() { let name = nameRow.value guard !name.isEmpty else { ErrorPresenter.showErrorAlert(title: tr("macAlertNameIsEmpty"), message: "", from: self) @@ -237,7 +237,7 @@ class TunnelEditViewController: NSViewController { } } - @objc func discardButtonClicked() { + @objc func handleDiscardAction() { delegate?.tunnelEditingCancelled() dismiss(self) } |