| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2020-04-05 | Backport: Widen types to size_t to match change from int to position of ↵ | mitchell | 1 | -74/+81 | |
| CallTipSetHlt in Scintilla.iface. Backport of changeset 8098:228c9f9aa839. | |||||
| 2020-03-29 | Backport: Extract arrow drawing to function. Use noexcept, const and other ↵ | Neil | 1 | -40/+52 | |
| minor changes to fix warnings before making widening types in the next change set. Backport of changeset 8097:06cbbf702640. | |||||
| 2020-01-05 | Added Sci::round() and Sci::lround() for better compatibility with the ↵ | mitchell | 1 | -3/+3 | |
| default branch. Some olders MacOSX SDKs do not have std::round() or std::lround(). | |||||
| 2020-01-05 | Added Sci::make_unique() and Sci::size() for better compatibility with the ↵ | mitchell | 1 | -3/+2 | |
| default branch. std::make_unique() is c++14 and std::size() is c++17. | |||||
| 2019-03-31 | Backport: Use generic versions of ceil, floor, round, lround, trunc from ↵ | mitchell | 1 | -1/+1 | |
| <cmath>. Backport of changeset 7329:2662ef098d93, but without std::round and std::lround, since older Mac OSX SDKs may not have them. | |||||
| 2018-05-25 | Backport: Add <vector> to files that include Platform.h as likely needed in ↵ | mitchell | 1 | -0/+1 | |
| future. Backport of changeset 6959:b534742f5fa5. | |||||
| 2018-05-13 | Backport: Fix header order. | Neil | 1 | -1/+1 | |
| Backport of changeset 6935:ec1d6c4008fe. | |||||
| 2018-05-06 | Backport: Ensuring ptrdiff_t is available by including <cstddef>. | Neil | 1 | -0/+1 | |
| Backport of changeset 6921:f9b81cb21ed1. | |||||
| 2018-05-01 | Backport: Add IntegerRectangle to simplify drawing lines without casting. | Neil | 1 | -4/+6 | |
| Backport of changeset 6773:9a027c16f8c3. | |||||
| 2018-04-20 | Backport: Use std::count to simplify code. Avoid NULL. | Neil | 1 | -8/+2 | |
| Backport of changeset 6720:a53006dc13cd. | |||||
| 2018-04-20 | Backport: Make reference argument const as not altered. | Neil | 1 | -1/+1 | |
| Backport of changeset 6719:c366b4a0ae98. | |||||
| 2018-04-20 | Backport: Undo part of last change as Xcode Clang doesn't like assigning ↵ | Neil Hodgson | 1 | -3/+3 | |
| long to int without cast. Backport of changeset 6717:2fec6b5183b7. | |||||
| 2018-05-06 | Backport: Feature [feature-requests:#1215]. Use standard functions in ↵ | mitchell | 1 | -3/+4 | |
| prference to RoundXYPosition, XYMinimum, and XYMaximum. Backport of changeset 6713:fadc4c551b6d. | |||||
| 2018-03-01 | Backport: Mark variables as const where simple. | Neil | 1 | -11/+11 | |
| Backport of changeset 6470:d78a4b522662. | |||||
| 2017-09-11 | Backport: The Scintilla namespace is always active for internal symbols and ↵ | Neil | 1 | -2/+0 | |
| for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3. | |||||
| 2017-05-02 | Use unique_ptr for drawing surfaces and don't check for allocation failure | Neil | 1 | -5/+3 | |
| as that throws an exception. Also use unique_ptr for tab stop positions. | |||||
| 2017-04-06 | Added const where possible. | Neil | 1 | -5/+5 | |
| 2017-04-01 | Standardize on C++ headers, remove headers that aren't needed and add <cstddef> | Neil | 1 | -3/+3 | |
| where it may be needed in the future. | |||||
| 2017-03-31 | Prefer standard min/max over Platform's as adapts to changed types. | Neil | 1 | -5/+6 | |
| 2017-03-31 | Using Sci::Position and Sci::Line to mark variables that are document positions | Neil | 1 | -1/+1 | |
| and lines. | |||||
| 2015-07-27 | Add Position.h as a place-holder and to allow #include "Position.h" in source. | Neil | 1 | -0/+1 | |
| 2015-07-04 | Make std::exception visible to all core code to remove chance that a different | Neil | 1 | -0/+1 | |
| tool set will not indirectly include <stdexcept>. | |||||
| 2014-05-03 | Replacing the int-based constructors for Point and PRectangle with FromInts | Neil | 1 | -6/+6 | |
| static methods as there were too many failures with mixed types and not-quite matching types. | |||||
| 2014-05-03 | Turn on MSVC 'possible loss of data' warnings and add explicit casts. | Neil | 1 | -2/+2 | |
| 2014-05-03 | Using casts and an alternate PRectangle constructor to make XYPOSITION <-> int | Neil | 1 | -4/+4 | |
| conversions and other conversions more consistent. | |||||
| 2014-05-03 | Explicit and more consistent use of XYPOSITION versus int. | Neil | 1 | -19/+19 | |
| Fixes possible loss of data warnings when switched on. | |||||
| 2014-05-03 | Convenience Point constructor from integers as common source of shapes. | Neil | 1 | -6/+7 | |
| 2014-01-21 | Added ELEMENTS macro and use it to clarify determining size of arrays. | Neil Hodgson | 1 | -4/+4 | |
| 2013-05-24 | Made methods const where they can be and are logically const as well. | nyamatongwe | 1 | -1/+1 | |
| 2013-05-02 | Replacing raw pointer and allocation with std::string. | nyamatongwe | 1 | -13/+9 | |
| 2012-07-24 | Add ncurses platform. Rest of the implementation is an external project. | nyamatongwe | 1 | -7/+9 | |
| From Mitchell Foral. | |||||
| 2012-07-21 | Avoid problems when calltip highlight range is negative. Bug #3545938. | nyamatongwe | 1 | -1/+1 | |
| 2011-09-27 | Standardize code style. | nyamatongwe | 1 | -5/+2 | |
| 2011-09-23 | Allow to display calltip above or below the text | Sébastien Granjoux | 1 | -2/+16 | |
| 2011-09-25 | Palette support removed. | nyamatongwe | 1 | -24/+16 | |
| 2011-08-10 | Implement 'technology' concept which will allow GDI and Direct2D/DirectWrite | nyamatongwe | 1 | -3/+5 | |
| to run at the same time for different windows and operations. | |||||
| 2011-08-07 | Match new argument types to Font::Create. | nyamatongwe | 1 | -1/+1 | |
| 2011-05-21 | Code formatting normalised to standard. | nyamatongwe | 1 | -1/+1 | |
| 2011-01-02 | Avoid cppcheck warnings. | nyamatongwe | 1 | -0/+3 | |
| 2010-03-13 | Adding const to methods where possible. | nyamatongwe | 1 | -1/+1 | |
| 2010-02-17 | Formatting whitespace. | nyamatongwe | 1 | -1/+1 | |
| 2010-01-19 | Removed unnecessary check for NULL. | nyamatongwe | 1 | -2/+1 | |
| 2009-07-12 | Since exception handling now turned on, do not check return value from new. | nyamatongwe | 1 | -2/+1 | |
| 2007-06-01 | integrate OS X support for scintilla. a big patch with a little commit ↵ | scaraveo | 1 | -0/+15 | |
| message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable | |||||
| 2006-02-07 | Made a symbol static. | nyamatongwe | 1 | -1/+1 | |
| 2006-02-04 | Modification from Greg Smith to allow setting text style attributes for | nyamatongwe | 1 | -24/+68 | |
| calltips as STYLE_CALLTIP and display calltips with tabs to align text. | |||||
| 2005-07-22 | Ensure down arrow works for initial call. | nyamatongwe | 1 | -6/+5 | |
| 2005-07-14 | Fixed up and down button handling so they work when not on first line of | nyamatongwe | 1 | -15/+12 | |
| calltip. | |||||
| 2004-08-08 | Patch from Niki Spahiev to use correct character set in calltips. | nyamatongwe | 1 | -2/+2 | |
| 2004-02-21 | Change to avoid signed/unsigned character issue. | nyamatongwe | 1 | -1/+1 | |
