mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-21 23:27:39 +00:00
24 lines
420 B
Objective-C
24 lines
420 B
Objective-C
//
|
|
// KeyLabel.m
|
|
// KeymanEngine4Mac
|
|
//
|
|
// Created by Serkan Kurt on 7/07/2015.
|
|
// Copyright (c) 2017 SIL International. All rights reserved.
|
|
//
|
|
|
|
#import "KeyLabel.h"
|
|
#import "KeyLabelCell.h"
|
|
|
|
@implementation KeyLabel
|
|
|
|
- (id)initWithFrame:(NSRect)frameRect {
|
|
[KeyLabel setCellClass:[KeyLabelCell class]];
|
|
self = [super initWithFrame:frameRect];
|
|
if (self) {
|
|
//
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|