mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
cc5c93c2b6
- added clearing all stashes - added possibility to ignore files with given extension - submodules are now showed - submodules can be opened
28 lines
460 B
Objective-C
28 lines
460 B
Objective-C
//
|
|
// 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
|