mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
de9f4ddf91
This copies text like:
2e7cd5268d (Remember selected view (history or commit))
to the pasteboard on command-c
20 lines
388 B
Objective-C
20 lines
388 B
Objective-C
//
|
|
// PBCommitList.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 9/11/08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import <WebKit/WebView.h>
|
|
#import "PBWebGitController.h"
|
|
|
|
@interface PBCommitList : NSTableView {
|
|
IBOutlet WebView* webView;
|
|
IBOutlet PBWebGitController* webController;
|
|
IBOutlet PBGitHistoryController *controller;
|
|
}
|
|
|
|
@end
|