diff options
author | Neil <nyamatongwe@gmail.com> | 2013-10-01 19:57:20 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-10-01 19:57:20 +1000 |
commit | 1ad3c0feaaf7c08baae8fe9ef5c885c0711a14ce (patch) | |
tree | 00976f649294da910a52ed097545013bf6f0ec85 | |
parent | ad3a4043e2781ae4a21aea6d26be770938ea5f0e (diff) | |
download | scintilla-mirror-1ad3c0feaaf7c08baae8fe9ef5c885c0711a14ce.tar.gz |
Change log.
-rw-r--r-- | doc/ScintillaHistory.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index c44e50530..d6a5cd4a3 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -464,16 +464,22 @@ <a href="http://sourceforge.net/p/scintilla/feature-requests/1020/">Feature #1020.</a> </li> <li> - For SCI_SETIDENTIFIERS allow \t, \r, and \n as well as space between identifiers. + For SCI_SETIDENTIFIERS, \t, \r, and \n are allowed as well as space between identifiers. <a href="http://sourceforge.net/p/scintilla/bugs/1521/">Bug #1521</a>. </li> <li> - On Cocoa, ScintillaNotificationProtocol adds an optional command:idFrom: method so that client code can more - easily receive commands. Clients should use the delegate mechanism or subclass ScintillaView in preference + Gaining and losing focus is now reported as a notification with the code set to SCN_FOCUSIN + or SCN_FOCUSOUT. + This allows clients to uniformly use notifications instead of commands. + Since there is no longer a need for commands they will be deprecated in a future version. + Clients should switch any code that currently uses SCEN_SETFOCUS or SCEN_KILLFOCUS. + </li> + <li> + On Cocoa, clients should use the delegate mechanism or subclass ScintillaView in preference to registerNotifyCallback: which will be deprecated in the future. </li> <li> - On Cocoa, the ScintillaView.h header now hides internal implementation details from Platform.h and ScintillaCocoa.h. + On Cocoa, the ScintillaView.h header hides internal implementation details from Platform.h and ScintillaCocoa.h. dealloc removed from @interface. </li> <li> |