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
commit2347b18b63c611bfb071e7a7fc086ff28c5abd01 (patch)
tree021614eb86eeb0e1f98694f9ce804b3be692b20c /cocoa/ScintillaView.h
parentc8aeaed9896c3785c5a1f178e39f0714ae3900d3 (diff)
downloadscintilla-mirror-2347b18b63c611bfb071e7a7fc086ff28c5abd01.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;