// // 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