Explorar el Código

Fix compiler warning when downcasting ViewController

master
Matt Baer hace 6 años
padre
commit
0e2e48802a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      writeas/AppDelegate.swift

+ 1
- 1
writeas/AppDelegate.swift Ver fichero

@@ -45,7 +45,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
func applicationDidBecomeActive(_ notification: Notification) {
if vc == nil {
vc = NSApplication.shared().mainWindow?.contentViewController as! ViewController
vc = NSApplication.shared().mainWindow?.contentViewController as? ViewController
}
}



Cargando…
Cancelar
Guardar