mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
22 lines
495 B
Objective-C
22 lines
495 B
Objective-C
//
|
|
// NoContextTestClient.m
|
|
// KeymanTests
|
|
//
|
|
// Created by tom on 6/25/18.
|
|
// Copyright © 2018 SIL International. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "NoContextTestClient.h"
|
|
|
|
@implementation NoContextTestClient
|
|
|
|
- (void)insertText:(id)string replacementRange:(NSRange)replacementRange {
|
|
[super insertTextProtected: string replacementRange:replacementRange];
|
|
}
|
|
|
|
- (NSAttributedString*)attributedSubstringFromRange:(NSRange)range {
|
|
return nil;
|
|
}
|
|
|
|
@end
|