Revision: 12288
          http://sourceforge.net/p/skim-app/code/12288
Author:   hofman
Date:     2021-04-12 22:10:10 +0000 (Mon, 12 Apr 2021)
Log Message:
-----------
Remove SKWindowController and SKViewController classes

Modified Paths:
--------------
    trunk/SKBookmarkController.h
    trunk/SKDisplayPreferences.h
    trunk/SKDownloadController.h
    trunk/SKDownloadPreferenceController.h
    trunk/SKExportAccessoryController.h
    trunk/SKFindController.h
    trunk/SKGeneralPreferences.h
    trunk/SKInfoWindowController.h
    trunk/SKLineInspector.h
    trunk/SKNoteTypeSheetController.h
    trunk/SKNoteWindowController.h
    trunk/SKNotesPanelController.h
    trunk/SKNotesPreferences.h
    trunk/SKPreferenceController.h
    trunk/SKPresentationOptionsSheetController.h
    trunk/SKPrintAccessoryController.h
    trunk/SKReleaseNotesController.h
    trunk/SKSyncPreferences.h
    trunk/SKTextFieldSheetController.h
    trunk/SKViewSettingsController.h
    trunk/Skim.xcodeproj/project.pbxproj

Removed Paths:
-------------
    trunk/SKViewController.h
    trunk/SKViewController.m
    trunk/SKWindowController.h
    trunk/SKWindowController.m

Modified: trunk/SKBookmarkController.h
===================================================================
--- trunk/SKBookmarkController.h        2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKBookmarkController.h        2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,13 +38,12 @@
 
 #import <Cocoa/Cocoa.h>
 #import <Quartz/Quartz.h>
-#import "SKWindowController.h"
 #import "SKOutlineView.h"
 #import "NSTouchBar_SKForwardDeclarations.h"
 
 @class SKBookmark, SKStatusBar;
 
-@interface SKBookmarkController : SKWindowController <NSWindowDelegate, 
NSToolbarDelegate, NSMenuDelegate, SKOutlineViewDelegate, 
NSOutlineViewDataSource, QLPreviewPanelDataSource, QLPreviewPanelDelegate, 
NSTouchBarDelegate> {
+@interface SKBookmarkController : NSWindowController <NSWindowDelegate, 
NSToolbarDelegate, NSMenuDelegate, SKOutlineViewDelegate, 
NSOutlineViewDataSource, QLPreviewPanelDataSource, QLPreviewPanelDelegate, 
NSTouchBarDelegate> {
     SKOutlineView *outlineView;
     SKStatusBar *statusBar;
     NSButton *newFolderButton;

Modified: trunk/SKDisplayPreferences.h
===================================================================
--- trunk/SKDisplayPreferences.h        2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKDisplayPreferences.h        2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,11 +38,10 @@
 
 #import <Cocoa/Cocoa.h>
 #import "SKPreferenceController.h"
-#import "SKViewController.h"
 
 @class SKColorSwatch;
 
-@interface SKDisplayPreferences : SKViewController <SKPreferencePane> {
+@interface SKDisplayPreferences : NSViewController <SKPreferencePane> {
     NSColorWell *normalColorWell;
     NSColorWell *fullScreenColorWell;
     SKColorSwatch *colorSwatch;

Modified: trunk/SKDownloadController.h
===================================================================
--- trunk/SKDownloadController.h        2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKDownloadController.h        2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,7 +38,6 @@
 
 #import <Cocoa/Cocoa.h>
 #import <Quartz/Quartz.h>
-#import "SKWindowController.h"
 #import "SKTableView.h"
 #import "NSTouchBar_SKForwardDeclarations.h"
 
@@ -45,7 +44,7 @@
 
 @class SKDownload;
 
-@interface SKDownloadController : SKWindowController <SKTableViewDelegate, 
NSTableViewDataSource, NSToolbarDelegate, NSURLSessionDelegate, 
QLPreviewPanelDelegate, QLPreviewPanelDataSource, NSTouchBarDelegate> {
+@interface SKDownloadController : NSWindowController <SKTableViewDelegate, 
NSTableViewDataSource, NSToolbarDelegate, NSURLSessionDelegate, 
QLPreviewPanelDelegate, QLPreviewPanelDataSource, NSTouchBarDelegate> {
     SKTableView *tableView;
     NSButton *clearButton;
     NSButton *tbClearButton;

Modified: trunk/SKDownloadPreferenceController.h
===================================================================
--- trunk/SKDownloadPreferenceController.h      2021-04-12 20:57:22 UTC (rev 
12287)
+++ trunk/SKDownloadPreferenceController.h      2021-04-12 22:10:10 UTC (rev 
12288)
@@ -37,11 +37,10 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKWindowController.h"
 #import "NSTouchBar_SKForwardDeclarations.h"
 
 
-@interface SKDownloadPreferenceController : SKWindowController 
<NSTouchBarDelegate> {
+@interface SKDownloadPreferenceController : NSWindowController 
<NSTouchBarDelegate> {
     NSButton *doneButton;
     NSPopUpButton *downloadsFolderPopUp;
 }

Modified: trunk/SKExportAccessoryController.h
===================================================================
--- trunk/SKExportAccessoryController.h 2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKExportAccessoryController.h 2021-04-12 22:10:10 UTC (rev 12288)
@@ -37,10 +37,9 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKViewController.h"
 
 
-@interface SKExportAccessoryController : SKViewController {
+@interface SKExportAccessoryController : NSViewController {
     NSTextField *labelField;
     BOOL hasExportOptions, allowsEmbeddedOptions;
 }

Modified: trunk/SKFindController.h
===================================================================
--- trunk/SKFindController.h    2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKFindController.h    2021-04-12 22:10:10 UTC (rev 12288)
@@ -37,11 +37,10 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKViewController.h"
 
 @protocol SKFindControllerDelegate;
 
-@interface SKFindController : SKViewController {
+@interface SKFindController : NSViewController {
     id <SKFindControllerDelegate> delegate;
     NSSearchField *findField;
     NSTextField *messageField;

Modified: trunk/SKGeneralPreferences.h
===================================================================
--- trunk/SKGeneralPreferences.h        2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKGeneralPreferences.h        2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,10 +38,9 @@
 
 #import <Cocoa/Cocoa.h>
 #import "SKPreferenceController.h"
-#import "SKViewController.h"
 
 
-@interface SKGeneralPreferences : SKViewController <SKPreferencePane> {
+@interface SKGeneralPreferences : NSViewController <SKPreferencePane> {
     NSPopUpButton *updateIntervalPopUpButton;
     NSInteger updateInterval;
 }

Modified: trunk/SKInfoWindowController.h
===================================================================
--- trunk/SKInfoWindowController.h      2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKInfoWindowController.h      2021-04-12 22:10:10 UTC (rev 12288)
@@ -37,10 +37,9 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKWindowController.h"
 
 
-@interface SKInfoWindowController : SKWindowController {
+@interface SKInfoWindowController : NSWindowController {
     NSTableView *summaryTableView;
     NSTableView *attributesTableView;
     NSTabView *tabView;

Modified: trunk/SKLineInspector.h
===================================================================
--- trunk/SKLineInspector.h     2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKLineInspector.h     2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,7 +38,6 @@
 
 #import <Cocoa/Cocoa.h>
 #import <Quartz/Quartz.h>
-#import "SKWindowController.h"
 
 extern NSString *SKLineInspectorLineAttributeDidChangeNotification;
 
@@ -53,7 +52,7 @@
 
 @class SKLineWell;
 
-@interface SKLineInspector : SKWindowController {
+@interface SKLineInspector : NSWindowController {
     NSSegmentedControl *styleButton;
     NSSegmentedControl *startLineStyleButton;
     NSSegmentedControl *endLineStyleButton;

Modified: trunk/SKNoteTypeSheetController.h
===================================================================
--- trunk/SKNoteTypeSheetController.h   2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKNoteTypeSheetController.h   2021-04-12 22:10:10 UTC (rev 12288)
@@ -37,11 +37,10 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKWindowController.h"
 
 @protocol SKNoteTypeSheetControllerDelegate;
 
-@interface SKNoteTypeSheetController : SKWindowController {
+@interface SKNoteTypeSheetController : NSWindowController {
     NSMenu *noteTypeMenu;
     id <SKNoteTypeSheetControllerDelegate> delegate;
 }

Modified: trunk/SKNoteWindowController.h
===================================================================
--- trunk/SKNoteWindowController.h      2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKNoteWindowController.h      2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,13 +38,12 @@
 
 #import <Cocoa/Cocoa.h>
 #import <Quartz/Quartz.h>
-#import "SKWindowController.h"
 #import "SKDragImageView.h"
 
 
 @class PDFAnnotation, SKStatusBar, SKNoteTextView;
 
-@interface SKNoteWindowController : SKWindowController <NSWindowDelegate, 
SKDragImageViewDelegate, NSPasteboardItemDataProvider, 
NSFilePromiseProviderDelegate, QLPreviewPanelDataSource, 
QLPreviewPanelDelegate, QLPreviewItem> {
+@interface SKNoteWindowController : NSWindowController <NSWindowDelegate, 
SKDragImageViewDelegate, NSPasteboardItemDataProvider, 
NSFilePromiseProviderDelegate, QLPreviewPanelDataSource, 
QLPreviewPanelDelegate, QLPreviewItem> {
     SKNoteTextView *textView;
     NSView *topView;
     NSBox *edgeView;

Modified: trunk/SKNotesPanelController.h
===================================================================
--- trunk/SKNotesPanelController.h      2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKNotesPanelController.h      2021-04-12 22:10:10 UTC (rev 12288)
@@ -37,10 +37,9 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKWindowController.h"
 
 
-@interface SKNotesPanelController : SKWindowController <NSWindowDelegate>
+@interface SKNotesPanelController : NSWindowController <NSWindowDelegate>
 + (id)sharedController;
 + (BOOL)sharedControllerExists;
 - (IBAction)addNote:(id)sender;

Modified: trunk/SKNotesPreferences.h
===================================================================
--- trunk/SKNotesPreferences.h  2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKNotesPreferences.h  2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,11 +38,10 @@
 
 #import <Cocoa/Cocoa.h>
 #import "SKPreferenceController.h"
-#import "SKViewController.h"
 
 @class SKFontWell, SKLineWell;
 
-@interface SKNotesPreferences : SKViewController <SKPreferencePane> {
+@interface SKNotesPreferences : NSViewController <SKPreferencePane> {
     SKFontWell *textFontWell;
     SKFontWell *anchoredFontWell;
     SKLineWell *textLineWell;

Modified: trunk/SKPreferenceController.h
===================================================================
--- trunk/SKPreferenceController.h      2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKPreferenceController.h      2021-04-12 22:10:10 UTC (rev 12288)
@@ -37,12 +37,11 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKWindowController.h"
 #import "NSTouchBar_SKForwardDeclarations.h"
 
 @protocol SKPreferencePane;
 
-@interface SKPreferenceController : SKWindowController <NSWindowDelegate, 
NSTabViewDelegate, NSToolbarDelegate, NSTouchBarDelegate> {
+@interface SKPreferenceController : NSWindowController <NSWindowDelegate, 
NSTabViewDelegate, NSToolbarDelegate, NSTouchBarDelegate> {
     NSButton *resetButton;
     NSButton *resetAllButton;
     NSSegmentedControl *panesButton;

Modified: trunk/SKPresentationOptionsSheetController.h
===================================================================
--- trunk/SKPresentationOptionsSheetController.h        2021-04-12 20:57:22 UTC 
(rev 12287)
+++ trunk/SKPresentationOptionsSheetController.h        2021-04-12 22:10:10 UTC 
(rev 12288)
@@ -37,7 +37,6 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKWindowController.h"
 #import "SKTransitionController.h"
 #import "SKTableView.h"
 #import "NSTouchBar_SKForwardDeclarations.h"
@@ -44,7 +43,7 @@
 
 @class SKMainWindowController, SKThumbnail, SKTransitionInfo, SKScroller;
 
-@interface SKPresentationOptionsSheetController : SKWindowController 
<NSWindowDelegate, SKTableViewDelegate, NSTableViewDataSource, 
NSTouchBarDelegate> {
+@interface SKPresentationOptionsSheetController : NSWindowController 
<NSWindowDelegate, SKTableViewDelegate, NSTableViewDataSource, 
NSTouchBarDelegate> {
     NSPopUpButton *notesDocumentPopUpButton;
     SKTableView *tableView;
     NSPopUpButton *stylePopUpButton;

Modified: trunk/SKPrintAccessoryController.h
===================================================================
--- trunk/SKPrintAccessoryController.h  2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKPrintAccessoryController.h  2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,10 +38,9 @@
 
 #import <Cocoa/Cocoa.h>
 #import <Quartz/Quartz.h>
-#import "SKViewController.h"
 
 
-@interface SKPrintAccessoryController : SKViewController 
<NSPrintPanelAccessorizing>
+@interface SKPrintAccessoryController : NSViewController 
<NSPrintPanelAccessorizing>
 
 @property (nonatomic) BOOL autoRotate;
 @property (nonatomic) PDFPrintScalingMode printScalingMode;

Modified: trunk/SKReleaseNotesController.h
===================================================================
--- trunk/SKReleaseNotesController.h    2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKReleaseNotesController.h    2021-04-12 22:10:10 UTC (rev 12288)
@@ -37,10 +37,8 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKWindowController.h"
 
-
-@interface SKReleaseNotesController : SKWindowController {
+@interface SKReleaseNotesController : NSWindowController {
     NSTextView *textView;
 }
 

Modified: trunk/SKSyncPreferences.h
===================================================================
--- trunk/SKSyncPreferences.h   2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKSyncPreferences.h   2021-04-12 22:10:10 UTC (rev 12288)
@@ -38,12 +38,11 @@
 
 #import <Cocoa/Cocoa.h>
 #import "SKPreferenceController.h"
-#import "SKViewController.h"
 
 extern NSString *SKSyncTeXEditorCommandKey;
 extern NSString *SKSyncTeXEditorArgumentsKey;
 
-@interface SKSyncPreferences : SKViewController <SKPreferencePane> {
+@interface SKSyncPreferences : NSViewController <SKPreferencePane> {
     NSPopUpButton *texEditorPopUpButton;
     BOOL customTeXEditor;
 }

Modified: trunk/SKTextFieldSheetController.h
===================================================================
--- trunk/SKTextFieldSheetController.h  2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKTextFieldSheetController.h  2021-04-12 22:10:10 UTC (rev 12288)
@@ -37,11 +37,10 @@
  */
 
 #import <Cocoa/Cocoa.h>
-#import "SKWindowController.h"
 #import "NSTouchBar_SKForwardDeclarations.h"
 
 
-@interface SKTextFieldSheetController : SKWindowController 
<NSTouchBarDelegate> {
+@interface SKTextFieldSheetController : NSWindowController 
<NSTouchBarDelegate> {
     NSTextField *textField;
     NSButton *okButton;
     NSButton *cancelButton;

Deleted: trunk/SKViewController.h
===================================================================
--- trunk/SKViewController.h    2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKViewController.h    2021-04-12 22:10:10 UTC (rev 12288)
@@ -1,43 +0,0 @@
-//
-//  SKViewController.h
-//  Skim
-//
-//  Created by Christiaan Hofman on 3/13/10.
-/*
- This software is Copyright (c) 2010-2021
- Christiaan Hofman. All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
-
- - Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-
- - Redistributions in binary form must reproduce the above copyright
-    notice, this list of conditions and the following disclaimer in
-    the documentation and/or other materials provided with the
-    distribution.
-
- - Neither the name of Christiaan Hofman nor the names of any
-    contributors may be used to endorse or promote products derived
-    from this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-
-
-@interface SKViewController : NSViewController
-@end

Deleted: trunk/SKViewController.m
===================================================================
--- trunk/SKViewController.m    2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKViewController.m    2021-04-12 22:10:10 UTC (rev 12288)
@@ -1,48 +0,0 @@
-//
-//  SKViewController.m
-//  Skim
-//
-//  Created by Christiaan Hofman on 3/13/10.
-/*
- This software is Copyright (c) 2010-2021
- Christiaan Hofman. All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
-
- - Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-
- - Redistributions in binary form must reproduce the above copyright
-    notice, this list of conditions and the following disclaimer in
-    the documentation and/or other materials provided with the
-    distribution.
-
- - Neither the name of Christiaan Hofman nor the names of any
-    contributors may be used to endorse or promote products derived
-    from this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "SKViewController.h"
-
-
-@implementation SKViewController
-
-- (void)loadView {
-    [super loadView];
-}
-
-@end

Modified: trunk/SKViewSettingsController.h
===================================================================
--- trunk/SKViewSettingsController.h    2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKViewSettingsController.h    2021-04-12 22:10:10 UTC (rev 12288)
@@ -36,10 +36,10 @@
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-#import "SKWindowController.h"
+#import <Cocoa/Cocoa.h>
 
 
-@interface SKViewSettingsController : SKWindowController {
+@interface SKViewSettingsController : NSWindowController {
     BOOL custom;
     BOOL autoScales;
     CGFloat scaleFactor;

Deleted: trunk/SKWindowController.h
===================================================================
--- trunk/SKWindowController.h  2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKWindowController.h  2021-04-12 22:10:10 UTC (rev 12288)
@@ -1,43 +0,0 @@
-//
-//  SKWindowController.h
-//  Skim
-//
-//  Created by Christiaan Hofman on 3/13/10.
-/*
- This software is Copyright (c) 2010-2021
- Christiaan Hofman. All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
-
- - Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-
- - Redistributions in binary form must reproduce the above copyright
-    notice, this list of conditions and the following disclaimer in
-    the documentation and/or other materials provided with the
-    distribution.
-
- - Neither the name of Christiaan Hofman nor the names of any
-    contributors may be used to endorse or promote products derived
-    from this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import <Cocoa/Cocoa.h>
-
-
-@interface SKWindowController : NSWindowController
-@end

Deleted: trunk/SKWindowController.m
===================================================================
--- trunk/SKWindowController.m  2021-04-12 20:57:22 UTC (rev 12287)
+++ trunk/SKWindowController.m  2021-04-12 22:10:10 UTC (rev 12288)
@@ -1,48 +0,0 @@
-//
-//  SKWindowController.m
-//  Skim
-//
-//  Created by Christiaan Hofman on 3/13/10.
-/*
- This software is Copyright (c) 2010-2021
- Christiaan Hofman. All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
-
- - Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-
- - Redistributions in binary form must reproduce the above copyright
-    notice, this list of conditions and the following disclaimer in
-    the documentation and/or other materials provided with the
-    distribution.
-
- - Neither the name of Christiaan Hofman nor the names of any
-    contributors may be used to endorse or promote products derived
-    from this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#import "SKWindowController.h"
-
-
-@implementation SKWindowController
-
-- (void)loadWindow {
-    [super loadWindow];
-}
-
-@end

Modified: trunk/Skim.xcodeproj/project.pbxproj
===================================================================
--- trunk/Skim.xcodeproj/project.pbxproj        2021-04-12 20:57:22 UTC (rev 
12287)
+++ trunk/Skim.xcodeproj/project.pbxproj        2021-04-12 22:10:10 UTC (rev 
12288)
@@ -275,8 +275,6 @@
                CEECD61C12E9E30B00B9E35E /* NSError_SKExtensions.m in Sources 
*/ = {isa = PBXBuildFile; fileRef = CEECD61B12E9E30B00B9E35E /* 
NSError_SKExtensions.m */; };
                CEEE7C520E7D3F2000B7B208 /* PDFAnnotationInk_SKExtensions.m in 
Sources */ = {isa = PBXBuildFile; fileRef = CEEE7C510E7D3F2000B7B208 /* 
PDFAnnotationInk_SKExtensions.m */; };
                CEF60CE3114C01CA0074ACC4 /* SKLocalization.m in Sources */ = 
{isa = PBXBuildFile; fileRef = CEF60CE2114C01CA0074ACC4 /* SKLocalization.m */; 
};
-               CEF60CF2114C07D90074ACC4 /* SKWindowController.m in Sources */ 
= {isa = PBXBuildFile; fileRef = CEF60CF1114C07D90074ACC4 /* 
SKWindowController.m */; };
-               CEF60CF9114C08350074ACC4 /* SKViewController.m in Sources */ = 
{isa = PBXBuildFile; fileRef = CEF60CF8114C08350074ACC4 /* SKViewController.m 
*/; };
                CEF60D6A114C0DA60074ACC4 /* TransitionSheet.strings in 
Resources */ = {isa = PBXBuildFile; fileRef = CEF60D40114C0DA60074ACC4 /* 
TransitionSheet.strings */; };
                CEF60D6C114C0DA60074ACC4 /* ScaleSheet.strings in Resources */ 
= {isa = PBXBuildFile; fileRef = CEF60D44114C0DA60074ACC4 /* ScaleSheet.strings 
*/; };
                CEF60D6D114C0DA60074ACC4 /* ReleaseNotes.strings in Resources 
*/ = {isa = PBXBuildFile; fileRef = CEF60D46114C0DA60074ACC4 /* 
ReleaseNotes.strings */; };
@@ -1159,10 +1157,6 @@
                CEF1D626117EFB760069E249 /* applehelp.init */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = 
applehelp.init; sourceTree = "<group>"; };
                CEF60CE1114C01CA0074ACC4 /* SKLocalization.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
SKLocalization.h; sourceTree = "<group>"; };
                CEF60CE2114C01CA0074ACC4 /* SKLocalization.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= SKLocalization.m; sourceTree = "<group>"; };
-               CEF60CF0114C07D90074ACC4 /* SKWindowController.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
SKWindowController.h; sourceTree = "<group>"; };
-               CEF60CF1114C07D90074ACC4 /* SKWindowController.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= SKWindowController.m; sourceTree = "<group>"; };
-               CEF60CF7114C08350074ACC4 /* SKViewController.h */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 
SKViewController.h; sourceTree = "<group>"; };
-               CEF60CF8114C08350074ACC4 /* SKViewController.m */ = {isa = 
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path 
= SKViewController.m; sourceTree = "<group>"; };
                CEF60D41114C0DA60074ACC4 /* en */ = {isa = PBXFileReference; 
fileEncoding = 10; lastKnownFileType = text.plist.strings; name = en; path = 
en.lproj/TransitionSheet.strings; sourceTree = "<group>"; };
                CEF60D45114C0DA60074ACC4 /* en */ = {isa = PBXFileReference; 
fileEncoding = 10; lastKnownFileType = text.plist.strings; name = en; path = 
en.lproj/ScaleSheet.strings; sourceTree = "<group>"; };
                CEF60D47114C0DA60074ACC4 /* en */ = {isa = PBXFileReference; 
fileEncoding = 10; lastKnownFileType = text.plist.strings; name = en; path = 
en.lproj/ReleaseNotes.strings; sourceTree = "<group>"; };
@@ -1733,12 +1727,8 @@
                                CE1CF47123FAA1D7005B5B40 /* SKThumbnailItem.m 
*/,
                                CEB72B890C4A189D000350F9 /* 
SKTransitionController.h */,
                                CE1ADEBE0C4C341100071840 /* 
SKTransitionController.m */,
-                               CEF60CF7114C08350074ACC4 /* SKViewController.h 
*/,
-                               CEF60CF8114C08350074ACC4 /* SKViewController.m 
*/,
                                CE426FC7255EDBDE00465569 /* 
SKViewSettingsController.h */,
                                CE426FC8255EDBDE00465569 /* 
SKViewSettingsController.m */,
-                               CEF60CF0114C07D90074ACC4 /* 
SKWindowController.h */,
-                               CEF60CF1114C07D90074ACC4 /* 
SKWindowController.m */,
                                CEF60F26114C53B40074ACC4 /* 
SKGeneralPreferences.h */,
                                CEF60F27114C53B40074ACC4 /* 
SKGeneralPreferences.m */,
                                CEF60F2A114C53DC0074ACC4 /* 
SKDisplayPreferences.h */,
@@ -2813,8 +2803,6 @@
                                CE24875C112C9651006B4FA5 /* 
NSFont_SKExtensions.m in Sources */,
                                CEF60CE3114C01CA0074ACC4 /* SKLocalization.m in 
Sources */,
                                CE454B51226E33150034FD6B /* 
SKHighlightingTableRowView.m in Sources */,
-                               CEF60CF2114C07D90074ACC4 /* 
SKWindowController.m in Sources */,
-                               CEF60CF9114C08350074ACC4 /* SKViewController.m 
in Sources */,
                                CEF60F28114C53B40074ACC4 /* 
SKGeneralPreferences.m in Sources */,
                                CEF60F2C114C53DC0074ACC4 /* 
SKDisplayPreferences.m in Sources */,
                                CEF60F2F114C54090074ACC4 /* 
SKNotesPreferences.m in Sources */,

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to