aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaView.h
diff options
context:
space:
mode:
authornyamatongwe <nyamatongwe@gmail.com>2013-04-17 13:53:26 +1000
committernyamatongwe <nyamatongwe@gmail.com>2013-04-17 13:53:26 +1000
commit359a2e69d0ab976aa664a1658c07bda74a591da7 (patch)
treefa1137f56acd6352e268d329f23a05dc7c55fcb7 /cocoa/ScintillaView.h
parentc597bc3b2ad86c3a6f2e0848a69df9d5060deb41 (diff)
downloadscintilla-mirror-359a2e69d0ab976aa664a1658c07bda74a591da7.tar.gz
Switch from implementing NSTextInput to its replacement NSTextInputClient
NSTextInput is slated for deprecation and NSTextInputClient allows the selection of accented characters through pressing and holding the base key.
Diffstat (limited to 'cocoa/ScintillaView.h')
-rw-r--r--cocoa/ScintillaView.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.h b/cocoa/ScintillaView.h
index 87a443f73..996501788 100644
--- a/cocoa/ScintillaView.h
+++ b/cocoa/ScintillaView.h
@@ -48,7 +48,7 @@ extern NSString *SCIUpdateUINotification;
* InnerView is the Cocoa interface to the Scintilla backend. It handles text input and
* provides a canvas for painting the output.
*/
-@interface InnerView : NSView <NSTextInput>
+@interface InnerView : NSView <NSTextInputClient>
{
@private
ScintillaView* mOwner;