Files
MacPass/MacPass/MPRoundedTextFieldCell.m
2013-06-01 17:30:21 +02:00

20 lines
399 B
Objective-C

//
// MPRoundedTextFieldCell.m
// MacPass
//
// Created by Michael Starke on 01.06.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPRoundedTextFieldCell.h"
#define CORNER_RADIUS 5.0
@implementation MPRoundedTextFieldCell
- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView {
[super drawWithFrame:cellFrame inView:controlView];
}
@end