Comment out delegate declarations that are only present in 10.6

This commit is contained in:
Uwe Hees
2011-03-12 10:35:13 +01:00
parent f478476df7
commit b1cd163c98
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -42,7 +42,7 @@
#import <Cocoa/Cocoa.h>
@interface DBPrefsWindowController : NSWindowController <NSAnimationDelegate,NSToolbarDelegate>{
@interface DBPrefsWindowController : NSWindowController /*<NSAnimationDelegate,NSToolbarDelegate>*/{
NSMutableArray *toolbarIdentifiers;
NSMutableDictionary *toolbarViews;
NSMutableDictionary *toolbarItems;
+1 -1
View File
@@ -22,7 +22,7 @@
@class PBHistorySearchController;
@interface PBGitHistoryController : PBViewController <NSOutlineViewDelegate>{
@interface PBGitHistoryController : PBViewController /*<NSOutlineViewDelegate>*/{
IBOutlet PBRefController *refController;
IBOutlet NSSearchField *searchField;
IBOutlet NSArrayController* commitController;
+1 -1
View File
@@ -13,7 +13,7 @@
@class PBGitHistoryController;
@class PBGitCommitController;
@interface PBGitSidebarController : PBViewController <NSOutlineViewDelegate>{
@interface PBGitSidebarController : PBViewController /*<NSOutlineViewDelegate>*/{
IBOutlet NSWindow *window;
IBOutlet NSOutlineView *sourceView;
IBOutlet NSView *sourceListControlsView;
+1 -1
View File
@@ -14,7 +14,7 @@
@class PBViewController, PBGitSidebarController, PBGitCommitController;
@interface PBGitWindowController : NSWindowController <NSWindowDelegate>{
@interface PBGitWindowController : NSWindowController /*<NSWindowDelegate>*/{
__weak PBGitRepository* repository;
PBViewController *contentController;
+1 -1
View File
@@ -30,7 +30,7 @@
#define WINDOWAUTOSAVENAME @"GitXAskPasswordWindowFrame"
@interface GAPAppDelegate : NSObject <NSApplicationDelegate>
@interface GAPAppDelegate : NSObject /*<NSApplicationDelegate>*/
{
NSPanel* mPasswordPanel;
NSSecureTextField* mPasswordField;