Skip to content

Commit

Permalink
validate project settings and fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thompsonate committed Sep 30, 2018
1 parent 110430c commit 0388fb2
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 35 deletions.
53 changes: 24 additions & 29 deletions Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Shifty/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Cocoa
import ServiceManagement
import Fabric
import Crashlytics
import MASPreferences
import MASPreferences_Shifty
import AXSwift
import SwiftLog

Expand Down
2 changes: 1 addition & 1 deletion Shifty/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleShortVersionString</key>
<string>0.5.3</string>
<key>CFBundleVersion</key>
<string>44</string>
<string>45</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down
2 changes: 1 addition & 1 deletion Shifty/PrefAboutViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Cocoa
import Sparkle
import MASPreferences
import MASPreferences_Shifty

let ShiftyUpdater = SUUpdater()

Expand Down
2 changes: 1 addition & 1 deletion Shifty/PrefGeneralViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Cocoa
import MASPreferences
import MASPreferences_Shifty
import ServiceManagement
import AXSwift
import SwiftLog
Expand Down
2 changes: 1 addition & 1 deletion Shifty/PrefShortcutsViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import Cocoa
import MASPreferences
import MASPreferences_Shifty
import MASShortcut

@objcMembers
Expand Down
2 changes: 1 addition & 1 deletion Shifty/Setup.swift
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class ContainerViewController: NSViewController {
super.viewDidLoad()

let setupStoryboard = NSStoryboard(name: "Setup", bundle: nil)
sourceViewController = setupStoryboard.instantiateController(withIdentifier: "sourceViewController") as! NSViewController
sourceViewController = setupStoryboard.instantiateController(withIdentifier: "sourceViewController") as? NSViewController
self.insertChild(sourceViewController, at: 0)
self.view.addSubview(sourceViewController.view)
self.view.frame = sourceViewController.view.frame
Expand Down

0 comments on commit 0388fb2

Please sign in to comment.