| Age | Commit message (Expand) | Author | Files | Lines |
| 2017-05-07 | Use unique_ptr on Cocoa. | Neil Hodgson | 3 | -21/+17 |
| 2017-05-06 | SciTE change log. | Neil | 1 | -0/+4 |
| 2017-05-02 | More consistent use of size_t when converting Unicode formats. | Neil | 5 | -34/+35 |
| 2017-05-02 | For GTK+, use unique_ptr for drawing surfaces and don't check for allocation | Neil | 1 | -36/+24 |
| 2017-05-02 | For Cocoa, use unique_ptr for drawing surfaces and don't check for allocation | Neil | 2 | -38/+26 |
| 2017-05-02 | Avoid explicit allocation in test. | Neil | 1 | -12/+8 |
| 2017-05-02 | Use unique_ptr for drawing surfaces and don't check for allocation failure | Neil | 9 | -152/+117 |
| 2017-05-01 | Use std::unique_ptr to simplify ContractionState. | Neil | 2 | -23/+17 |
| 2017-04-29 | Use std::unique_ptr, std::vector, and move construction to simplify UndoHistory | Neil | 5 | -57/+36 |
| 2017-04-25 | Bug [#1940]. Canceling modes with the Esc key preserves a rectangular selection. | Neil | 2 | -1/+5 |
| 2017-04-24 | Remove unnecessary cast. | Neil | 1 | -1/+1 |
| 2017-04-24 | Make string encoding and decoding more regular by using std::string more and | Neil | 1 | -57/+34 |
| 2017-04-22 | Use simple alloc as "memory zones are no longer used by Objective-C" | Neil Hodgson | 1 | -1/+1 |
| 2017-04-22 | Restrict cursor changing to visible bounds so the text area cursor doesn't show | Neil | 5 | -3/+12 |
| 2017-04-22 | Update ScintillaTest project with current Xcode. | Neil | 1 | -1/+7 |
| 2017-04-22 | Update ScintillaTest XIB with current Xcode to avoid warnings. | Neil | 1 | -14/+8 |
| 2017-04-22 | Move NSString for example contents to local as it showed up in memory leak | Neil | 2 | -12/+17 |
| 2017-04-22 | Replace C++ std::map with Cocoa NSMutableDictionary as easier to switch to ARC | Neil | 1 | -54/+19 |
| 2017-04-22 | Simplify NSImage creation by using its initWithCGImage directly instead of | Neil | 1 | -23/+16 |
| 2017-04-22 | Fix a leak of mouse tracking areas. | Neil Hodgson | 2 | -0/+7 |
| 2017-04-22 | Using unique_ptr to simplify ownership of images, case folder, and list box. | Neil | 9 | -52/+29 |
| 2017-04-22 | Encapsulate the LexInterface of Document. | Neil | 3 | -9/+14 |
| 2017-04-22 | Include <memory> for std::unique_ptr. | Neil | 21 | -0/+21 |
| 2017-04-21 | Treat comments at the end of the file as separate from the preceding structure. | Neil | 2 | -2/+11 |
| 2017-04-21 | More consistent deletion of standard methods. | Neil | 23 | -22/+100 |
| 2017-04-20 | More consistent deletion of standard methods. | Neil | 3 | -5/+8 |
| 2017-04-19 | Fix problem compiling recent change with Xcode. | Neil Hodgson | 1 | -1/+1 |
| 2017-04-19 | Use =delete for unwanted functions. | Neil | 15 | -58/+51 |
| 2017-04-19 | Drop reinterpret_cast when can implicit cast to void* or const void*. | Neil | 1 | -2/+2 |
| 2017-04-19 | Use "override" for GTK+ and Qt platform layers. | Neil | 6 | -162/+162 |
| 2017-04-19 | Drop "virtual" when "override" used. | Neil | 1 | -19/+19 |
| 2017-04-19 | Use "override" for implementations of CaseFolder and PerLine. | Neil Hodgson | 3 | -18/+18 |
| 2017-04-19 | Include header needed for std::lower_bound used in SparseState.h. | Neil | 1 | -0/+1 |
| 2017-04-18 | Add an assert to avoid a warning from Visual C++ Code Analysis. | Neil | 1 | -0/+2 |
| 2017-04-18 | Bug [#1936]. Implement comment folding. | darmar | 2 | -9/+215 |
| 2017-04-18 | Bug [#1935]. Recognize a preprocessor line after a line continuation. | darmar | 2 | -9/+17 |
| 2017-04-17 | Simplify expression. | Neil | 1 | -1/+2 |
| 2017-04-15 | Avoid calling virtual functions in destructor. Mark overridden methods. | Neil Hodgson | 4 | -12/+12 |
| 2017-04-15 | Avoid calling virtual functions in constructors and destructors. | Neil | 10 | -19/+30 |
| 2017-04-15 | Fix deprecation of gdk_window_process_updates in GTK+ 3.22 by redrawing instead | Neil | 1 | -4/+6 |
| 2017-04-15 | Use bool literals true and false instead of 1 and 0. | Neil | 4 | -9/+9 |
| 2017-04-14 | Ensure capitalHeight initialised. | Neil | 1 | -0/+1 |
| 2017-04-12 | For speed, store height of capital letters in FontMeasurements so not | Neil | 3 | -2/+3 |
| 2017-04-11 | Credit. | Neil | 1 | -0/+1 |
| 2017-04-10 | Bug [#1931]. Recognize comments in more situations and treat "..." like "---". | Jim Pattee | 2 | -1/+10 |
| 2017-04-09 | Further use of range-for. | Neil | 10 | -87/+84 |
| 2017-04-09 | Modernise ViewStyle with vector, unique_ptr, any_of, and method deletion. | Neil | 5 | -108/+93 |
| 2017-04-08 | SciTE change log. | Neil | 1 | -0/+3 |
| 2017-04-08 | Use reference for efficiency. | Neil | 1 | -1/+1 |
| 2017-04-07 | Prefer C++ static cast over C-style casts. | Neil | 7 | -18/+19 |