From 4756f863fe9230419d1733484390d384a3367f48 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Wed, 16 Aug 2017 22:01:33 -0700 Subject: [PATCH] [app,kit] Remove PreferencesWindowController --- Metaballs.xcodeproj/project.pbxproj | 4 ---- Metaballs/Base.lproj/Main.storyboard | 2 +- MetaballsKit/PreferencesWindowController.swift | 15 --------------- 3 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 MetaballsKit/PreferencesWindowController.swift diff --git a/Metaballs.xcodeproj/project.pbxproj b/Metaballs.xcodeproj/project.pbxproj index e088bf5..e464623 100644 --- a/Metaballs.xcodeproj/project.pbxproj +++ b/Metaballs.xcodeproj/project.pbxproj @@ -7,7 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - C03904B31F43CF3F00C74022 /* PreferencesWindowController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C03904B11F43CF3700C74022 /* PreferencesWindowController.swift */; }; C09161701F3F5AE6009C4263 /* PreferencesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C091616F1F3F5AE6009C4263 /* PreferencesViewController.swift */; }; C0B906D51F45432700B5F89B /* Preferences.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0B906D41F45432700B5F89B /* Preferences.swift */; }; C0BBE36B1F2E816500E68524 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0BBE36A1F2E816500E68524 /* AppDelegate.swift */; }; @@ -46,7 +45,6 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - C03904B11F43CF3700C74022 /* PreferencesWindowController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreferencesWindowController.swift; sourceTree = ""; }; C091616F1F3F5AE6009C4263 /* PreferencesViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreferencesViewController.swift; sourceTree = ""; }; C0B906D41F45432700B5F89B /* Preferences.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Preferences.swift; sourceTree = ""; }; C0BBE3671F2E816500E68524 /* Metaballs.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Metaballs.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -164,7 +162,6 @@ C0DF1D781F3789DC0038B0A0 /* Memory.swift */, C0B906D41F45432700B5F89B /* Preferences.swift */, C091616F1F3F5AE6009C4263 /* PreferencesViewController.swift */, - C03904B11F43CF3700C74022 /* PreferencesWindowController.swift */, ); path = MetaballsKit; sourceTree = ""; @@ -383,7 +380,6 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C03904B31F43CF3F00C74022 /* PreferencesWindowController.swift in Sources */, C0DF1D791F3789DC0038B0A0 /* Memory.swift in Sources */, C0B906D51F45432700B5F89B /* Preferences.swift in Sources */, C0BBE3A41F2E81C700E68524 /* Metaballs.swift in Sources */, diff --git a/Metaballs/Base.lproj/Main.storyboard b/Metaballs/Base.lproj/Main.storyboard index 34d3a9b..6d3b1fa 100644 --- a/Metaballs/Base.lproj/Main.storyboard +++ b/Metaballs/Base.lproj/Main.storyboard @@ -224,7 +224,7 @@ - + diff --git a/MetaballsKit/PreferencesWindowController.swift b/MetaballsKit/PreferencesWindowController.swift deleted file mode 100644 index 25a244f..0000000 --- a/MetaballsKit/PreferencesWindowController.swift +++ /dev/null @@ -1,15 +0,0 @@ -// -// PreferencesWindowController.swift -// Metaballs -// -// Created by Eryn Wells on 8/15/17. -// Copyright © 2017 Eryn Wells. All rights reserved. -// - -import Cocoa - -class PreferencesWindowController: NSWindowController { - override func prepare(for segue: NSStoryboardSegue, sender: Any?) { - print("prepare for segue:\(segue), sender:\(String(describing: sender))") - } -}