// // PBArgumentPicker.m // GitX // // Created by Tomasz Krasnyk on 10-11-06. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import "PBArgumentPicker.h" @implementation PBArgumentPicker @synthesize okButton; @synthesize cancelButton; @synthesize textField; @synthesize label; - (id)initWithFrame:(NSRect)frame { self = [super initWithFrame:frame]; if (self) { // Initialization code here. } return self; } @end