diff options
author | nyamatongwe <unknown> | 2013-01-10 10:04:13 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-01-10 10:04:13 +1100 |
commit | 62c08fe0cd0c4e06902a47f6dda0c7849b7d23fc (patch) | |
tree | 38c34b62c33699cd97708eae9e563d0c824aa89a /cocoa/ScintillaView.h | |
parent | 0e94e8fb61aae6d6a83c250c758bdfb0b80d7c45 (diff) | |
download | scintilla-mirror-62c08fe0cd0c4e06902a47f6dda0c7849b7d23fc.tar.gz |
Turn off undo collection for IME composition.
From Mike Lischke.
Diffstat (limited to 'cocoa/ScintillaView.h')
-rw-r--r-- | cocoa/ScintillaView.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.h b/cocoa/ScintillaView.h index 8a028e2c4..d5f500df3 100644 --- a/cocoa/ScintillaView.h +++ b/cocoa/ScintillaView.h @@ -4,7 +4,7 @@ * * Created by Mike Lischke. * - * Copyright 2011, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright 2011, 2013, Oracle and/or its affiliates. All rights reserved. * Copyright 2009, 2011 Sun Microsystems, Inc. All rights reserved. * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). */ @@ -39,6 +39,7 @@ extern NSString *SCIUpdateUINotification; // Set when we are in composition mode and partial input is displayed. NSRange mMarkedTextRange; + BOOL undoCollectionWasActive; } @property (nonatomic, assign) ScintillaView* owner; |