Procházet zdrojové kódy

Fix compiler warning when downcasting ViewController

master
Matt Baer před 6 roky
rodič
revize
0e2e48802a
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      writeas/AppDelegate.swift

+ 1
- 1
writeas/AppDelegate.swift Zobrazit soubor

@@ -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
}
}



Načítá se…
Zrušit
Uložit