mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 05:52:58 +00:00
20 lines
399 B
Objective-C
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
|