Initial commit for Project with ignore file

This commit is contained in:
michael starke
2012-07-19 16:04:46 +02:00
parent 55b2910183
commit 60a8267396
16 changed files with 1762 additions and 2595 deletions

View File

@@ -0,0 +1,18 @@
//
// MPOutlineViewDelegate.m
// MacPass
//
// Created by Michael Starke on 21.07.12.
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
//
#import "MPOutlineViewDelegate.h"
@implementation MPOutlineViewDelegate
- (NSView *)outlineView:(NSOutlineView *)outlineView viewForTableColumn:(NSTableColumn *)tableColumn item:(id)item {
NSView *view = [outlineView makeViewWithIdentifier:@"OutlineViewCell" owner:self];
return view;
}
@end