mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
23d5c01a3d
This is far from perfect, but at least you can use it to navigate the stuff a bit now :)
16 lines
276 B
Objective-C
16 lines
276 B
Objective-C
//
|
|
// NSOutlineViewExit.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 9/9/09.
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface NSOutlineView (PBExpandParents)
|
|
|
|
- (void)PBExpandItem:(id)item expandParents:(BOOL)expand;
|
|
@end
|