Skip to content

Commit 6dd2cf8

Browse files
David CatmullDavid Catmull
authored andcommitted
add some class comments
1 parent fb6abc7 commit 6dd2cf8

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

PBCommitList.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
@class PBWebHistoryController;
1414

15+
// Displays the list of commits. Additional behavior includes special key
16+
// handling and hiliting search results.
17+
// dataSource: PBRefController
18+
// delegate: PBGitHistoryController
1519
@interface PBCommitList : NSTableView {
1620
IBOutlet WebView* webView;
1721
IBOutlet PBWebHistoryController *webController;

PBCommitMessageView.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#import <Cocoa/Cocoa.h>
1010

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

1314
}

PBFileChangesTableView.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
#import <Cocoa/Cocoa.h>
1010

1111

12+
// File list used in both the staged and unstaged sides of the commit view.
13+
// datasource and deletage are PBGitIndexController.
1214
@interface PBFileChangesTableView : NSTableView {
1315
}
1416

PBGitBinary.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
#define MIN_GIT_VERSION "1.6.0"
1313

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

1617
}

0 commit comments

Comments
 (0)