mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
86606ef815
This changes a lot of code, so quick review: * RepositoryDocumentController now returns the document without selecting a ref * PBGitWindowController now optionally shows the default view, or selects no view at all * PBGitRepository keeps a pointer to its WindowController so that it can change views
20 lines
332 B
Objective-C
20 lines
332 B
Objective-C
//
|
|
// PBRepositoryDocumentController.h
|
|
// GitX
|
|
//
|
|
// Created by Ciarán Walsh on 15/08/2008.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitRevSpecifier.h"
|
|
|
|
|
|
@interface PBRepositoryDocumentController : NSDocumentController
|
|
{
|
|
|
|
}
|
|
|
|
- (id) documentForLocation:(NSURL*) url;
|
|
@end
|