summaryrefslogtreecommitdiffstats
path: root/osdep/mac/application.swift
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/mac/application.swift')
-rw-r--r--osdep/mac/application.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/osdep/mac/application.swift b/osdep/mac/application.swift
index 30f37a6f49..23a15023e8 100644
--- a/osdep/mac/application.swift
+++ b/osdep/mac/application.swift
@@ -18,9 +18,9 @@
import Cocoa
class Application: NSApplication, NSApplicationDelegate {
- var appHub: AppHub { get { return AppHub.shared } }
- var eventManager: NSAppleEventManager { get { return NSAppleEventManager.shared() } }
- var isBundle: Bool { get { return ProcessInfo.processInfo.environment["MPVBUNDLE"] == "true" } }
+ var appHub: AppHub { return AppHub.shared }
+ var eventManager: NSAppleEventManager { return NSAppleEventManager.shared() }
+ var isBundle: Bool { return ProcessInfo.processInfo.environment["MPVBUNDLE"] == "true" }
var playbackThreadId: mp_thread!
var argc: Int32?
var argv: UnsafeMutablePointer<UnsafeMutablePointer<CChar>?>?