Testing: add missing file
[GitX.git] / PBDiffWindowController.m
blobcd5dcc5554b5a329933257aa8823564dcba7f877
1 //
2 //  PBDiffWindowController.m
3 //  GitX
4 //
5 //  Created by Pieter de Bie on 13-10-08.
6 //  Copyright 2008 Pieter de Bie. All rights reserved.
7 //
9 #import "PBDiffWindowController.h"
12 @implementation PBDiffWindowController
13 @synthesize diff;
15 - (id) initWithDiff:(NSString *)aDiff
17         if (![super initWithWindowNibName:@"PBDiffWindow"])
18                 return nil;
20         diff = aDiff;
21         return self;
24 @end