spiegel-keyman/mac/KeymanEngine4Mac/KeymanEngine4Mac/KME/OnScreenKeyboard/KeyLabel.m
2017-08-10 13:11:52 +07:00

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