| Age | Commit message (Expand) | Author | Files | Lines |
| 2018-05-15 | Replace ELEMENTS with std::size and drop inclusion of StringCopy.h. | Neil | 5 | -6/+1 |
| 2018-05-14 | Remove dependency on StringCopy and simplify constructor. | Neil | 1 | -5/+9 |
| 2018-05-14 | Replace 0 with nullptr. | Neil | 3 | -6/+6 |
| 2018-05-14 | Use string_view for UniConversion functions. | Neil | 4 | -41/+42 |
| 2018-05-14 | Modernize Platform.h (4) - update Surface to use string_view for text arguments. | Neil | 8 | -46/+43 |
| 2018-05-14 | Modernize Platform.h (3) - update Surface to delete WidthChar, use size_t for | Neil | 4 | -12/+12 |
| 2018-05-14 | Modernize Platform.h (2) - noexcept, const, constexpr. | Neil | 4 | -36/+59 |
| 2018-05-14 | Modernize Platform.h (1) - noexcept, const, standard methods. | Neil | 2 | -7/+6 |
| 2018-05-14 | Include <string_view> to allow future use in Platform interface and Unicode. | Neil | 24 | -0/+24 |
| 2018-05-13 | Fix header order. | Neil | 1 | -1/+1 |
| 2018-05-13 | When line end characters are displayed, indicators are drawn under/over them. | Neil | 3 | -13/+15 |
| 2018-05-06 | Ensuring ptrdiff_t is available by including <cstddef>. | Neil | 4 | -0/+4 |
| 2018-05-03 | Use Range and Position in more cases to avoid casts. | Neil | 2 | -17/+20 |
| 2018-05-03 | Ensure all 4 byte characters will work in MapRepresentation by using unsigned... | Neil | 2 | -10/+17 |
| 2018-05-03 | Simplify PropSetSimple, avoid casts, use nullptr. | Neil | 1 | -1/+1 |
| 2018-05-03 | Avoid casts. | Neil | 2 | -8/+9 |
| 2018-05-03 | Specify type of std::clamp to avoid casting arguments. | Neil | 3 | -19/+19 |
| 2018-05-03 | Eliminate XFromPosition overload for Sci::Position as SelectionPosition overload | Neil | 2 | -8/+2 |
| 2018-05-01 | Add IntegerRectangle to simplify drawing lines without casting. | Neil | 6 | -112/+156 |
| 2018-05-01 | Use round and floor instead of casts. | Neil | 1 | -2/+2 |
| 2018-05-01 | Fix minor issues with AutoSurface, AutoLineLayout and SelectionText. | Neil | 2 | -8/+8 |
| 2018-05-01 | Bug [#2012]. Use '0' instead of '0l'. | Neil | 2 | -2/+2 |
| 2018-04-30 | Use const where possible. | Neil | 1 | -1/+1 |
| 2018-04-30 | Feature [feature-requests:#1215]. Use std::clamp to shorten code. | Neil | 1 | -6/+1 |
| 2018-04-30 | Feature [feature-requests:#1215]. Simplify RESearch::ChSetWithCase. | Neil | 1 | -9/+4 |
| 2018-04-28 | Delete standard functions on classes where there could be attempts to copy. | Neil | 14 | -9/+76 |
| 2018-04-28 | Rename method to avoid confusion between base and derived classes. | Neil | 2 | -4/+4 |
| 2018-04-27 | Use nullptr for custom draw functions. | Neil | 2 | -9/+10 |
| 2018-04-27 | Avoid reinterpret_cast. Use size_t argument to UTF8Classify to avoid casts. | Neil | 2 | -25/+23 |
| 2018-04-26 | Change type to avoid casts. | Neil | 2 | -3/+3 |
| 2018-04-26 | Specify concrete class for ldTabstops and use directly instead of copying value | Neil | 2 | -8/+7 |
| 2018-04-26 | Use <chrono> for platform-independent timing and remove ElapsedTime. | Neil | 3 | -23/+71 |
| 2018-04-25 | Use set of coercion functions for transforming WndProc parameters into pointers. | Neil | 3 | -44/+63 |
| 2018-04-25 | Removed mention of class that no longer exists. | Neil | 1 | -1/+0 |
| 2018-04-25 | Remove casts that are not needed since sptr_t and Sci::Position are the same ... | Neil | 2 | -32/+31 |
| 2018-04-24 | Feature [feature-requests:#1215]. Make Action move constructor noexcept and use | Neil | 2 | -10/+1 |
| 2018-04-24 | Feature [feature-requests:#1215]. Make a parameter const. | Neil | 2 | -2/+2 |
| 2018-04-22 | Remove casts between char and unsigned char where possible. | Neil | 5 | -12/+11 |
| 2018-04-21 | Code improvements - noexcept and intialization. | Neil | 2 | -5/+5 |
| 2018-04-21 | Safety improvements for character code - drop reinterpret_cast, ensure more | Neil | 3 | -13/+12 |
| 2018-04-21 | Use noexcept in basic data structures where reasonable. | Neil | 7 | -46/+55 |
| 2018-04-21 | Tighten definition of regular expression iterators so they are noexcept and | Neil | 11 | -120/+150 |
| 2018-04-20 | Stop "duplicate explicit instantiation" error on g++ 32-bit where int and | Neil | 1 | -0/+4 |
| 2018-04-20 | More const and cast avoidance. | Neil | 3 | -16/+17 |
| 2018-04-20 | Mark pointer to constant parameter as const. | Neil | 4 | -4/+4 |
| 2018-04-20 | Use std::count to simplify code. Avoid NULL. | Neil | 1 | -8/+2 |
| 2018-04-20 | Make reference argument const as not altered. | Neil | 2 | -2/+2 |
| 2018-04-20 | Undo part of last change as Xcode Clang doesn't like assigning long to int wi... | Neil Hodgson | 2 | -8/+8 |
| 2018-04-20 | Use standard lround function and remove some casts. | Neil | 1 | -5/+7 |
| 2018-04-20 | Feature [feature-requests:#1215]. Use standard functions in prference to | Neil | 2 | -7/+8 |