Merge pull request #81 from Uncommon/comments

Add comments
This commit is contained in:
German Laullon
2011-06-20 09:51:14 -07:00
7 changed files with 11 additions and 1 deletions
+4
View File
@@ -12,6 +12,10 @@
@class PBWebHistoryController;
// Displays the list of commits. Additional behavior includes special key
// handling and hiliting search results.
// dataSource: PBRefController
// delegate: PBGitHistoryController
@interface PBCommitList : NSTableView {
IBOutlet WebView* webView;
IBOutlet PBWebHistoryController *webController;
+1
View File
@@ -8,6 +8,7 @@
#import <Cocoa/Cocoa.h>
// Adds the column guide displayed in the commit message field
@interface PBCommitMessageView : NSTextView {
}
+2
View File
@@ -9,6 +9,8 @@
#import <Cocoa/Cocoa.h>
// File list used in both the staged and unstaged sides of the commit view.
// datasource and deletage are PBGitIndexController.
@interface PBFileChangesTableView : NSTableView {
}
+1
View File
@@ -11,6 +11,7 @@
#define MIN_GIT_VERSION "1.6.0"
// Returns information about the git binary used to execute commands.
@interface PBGitBinary : NSObject {
}
+1
View File
@@ -22,6 +22,7 @@
@class PBHistorySearchController;
// Controls the split history view from PBGitHistoryView.xib
@interface PBGitHistoryController : PBViewController PROTOCOL_10_6(NSOutlineViewDelegate){
IBOutlet PBRefController *refController;
IBOutlet NSSearchField *searchField;
+1
View File
@@ -14,6 +14,7 @@
@class PBViewController, PBGitSidebarController, PBGitCommitController;
// Controls the main repository window from RepositoryWindow.xib
@interface PBGitWindowController : NSWindowController PROTOCOL_10_6(NSWindowDelegate){
__weak PBGitRepository* repository;
+1 -1
View File
@@ -36,7 +36,7 @@
- (void)removeChild:(PBSourceViewItem *)child;
// This adds the ref to the path, which should match the item's title,
// so "refs/heads/pu/pb/sidebar" would have the path [@"pu", @"pb", @"sidebare"]
// so "refs/heads/pu/pb/sidebar" would have the path [@"pu", @"pb", @"sidebar"]
// to the 'local' branch thing
- (void)addRev:(PBGitRevSpecifier *)revSpecifier toPath:(NSArray *)path;
- (PBSourceViewItem *)findRev:(PBGitRevSpecifier *)rev;