Skip to content

Commit

Permalink
Merge pull request brotherbard#81 from Uncommon/comments
Browse files Browse the repository at this point in the history
Add comments
  • Loading branch information
laullon committed Jun 20, 2011
2 parents 1b9e07c + 4e456d1 commit 3674dca
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions PBCommitList.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions PBCommitMessageView.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#import <Cocoa/Cocoa.h>

// Adds the column guide displayed in the commit message field
@interface PBCommitMessageView : NSTextView {

}
Expand Down
2 changes: 2 additions & 0 deletions PBFileChangesTableView.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
}

Expand Down
1 change: 1 addition & 0 deletions PBGitBinary.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#define MIN_GIT_VERSION "1.6.0"

// Returns information about the git binary used to execute commands.
@interface PBGitBinary : NSObject {

}
Expand Down
1 change: 1 addition & 0 deletions PBGitHistoryController.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions PBGitWindowController.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion PBSourceViewItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3674dca

Please sign in to comment.