aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PerLine.cxx
AgeCommit message (Expand)AuthorFilesLines
2019-11-01Avoid calling vector::shrink_to_fit in destructors as it is not noexcept.Neil1-3/+0
2018-10-11Replace NULL and 0 with nullptr in clear cases of pure C++ code.Neil1-2/+2
2018-06-04Reduce scope of captures for lambdas.Neil1-2/+2
2018-05-14Include <string_view> to allow future use in Platform interface and Unicode.Neil1-0/+1
2018-04-21Use noexcept in basic data structures where reasonable.Neil1-4/+4
2018-03-01Mark variables as const where simple.Neil1-4/+4
2018-03-01Use make_unique in preference to new.Neil1-13/+12
2018-01-26Extend SplitVector to allow more than 2 billion elements on 64-bit systems.Neil1-2/+2
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil1-2/+0
2017-05-22More canonical version of previous change 6283.Neil1-5/+1
2017-05-22Fix a crash when a line containing a marker was deleted.Neil1-1/+5
2017-05-21Use unique_ptr and forward_list to regularize PerLine data structures.Neil1-124/+58
2017-04-22Include <memory> for std::unique_ptr.Neil1-0/+1
2017-04-15Avoid calling virtual functions in constructors and destructors.Neil1-2/+9
2017-04-15Use bool literals true and false instead of 1 and 0.Neil1-1/+1
2017-04-09Further use of range-for.Neil1-3/+3
2017-04-06Added const where possible.Neil1-5/+5
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-1/+2
2017-03-31Using Sci::Position and Sci::Line to mark variables that are document positionsNeil1-44/+44
2016-01-10Use value initialization in preference to memset as simpler and more robust.Neil1-2/+1
2015-07-27Add Position.h as a place-holder and to allow #include "Position.h" in source.Neil1-0/+1
2015-07-04Also need to see std::exception in PerLine.Neil1-0/+1
2015-06-09When combining MarkerHandlerSets, prepend the other set instead of appendingJiří Techet1-2/+3
2014-08-08Implement explicit tab stops per line.Neil1-0/+70
2014-02-21Bug [#1577]. Deleting a whole line deletes the annotations on that line insteadNeil1-3/+3
2013-12-15Format normalization - whitespace and braces made consistent.Neil1-1/+1
2013-05-24Made methods const where they can be and are logically const as well.nyamatongwe1-3/+3
2013-05-05Since new throws an exception on failure, remove testing of result.nyamatongwe1-4/+0
2013-04-19Remove unused methods.nyamatongwe1-15/+0
2013-04-19Using std::fill instead of a loop is much faster. As much as 4x on a large bl...nyamatongwe1-0/+2
2012-06-18Removed unnecessary code after change for bug #3535806.nyamatongwe1-6/+1
2012-06-18Remove marker only once for SCI_MARKERDELETE. Bug #3535806.nyamatongwe1-3/+5
2012-03-27Protect against modifying annotations with a negative line number or a linenyamatongwe1-24/+26
2011-10-23Avoid crashing for SCI_MARKERNEXT starting at -1. Bug #3427270.nyamatongwe1-0/+2
2011-09-23Optimized MarkerNext so it can be much faster when no marker ever setnyamatongwe1-0/+11
2011-06-25Add casts to avoid warnings from SDK 64-bit compiler.nyamatongwe1-2/+2
2010-08-29Fixed crash when lexer asks for line state of negative line. Better to just r...nyamatongwe1-0/+2
2010-07-27Fix problems with line state and fold level by duplicating value rather than ...nyamatongwe1-5/+3
2010-07-07Redraw when annotations change.nyamatongwe1-1/+6
2010-02-17Formatting whitespace.nyamatongwe1-2/+2
2010-01-16Fix for bug #2929708 Assertion in SplitVector adding line after addingnyamatongwe1-0/+1
2009-08-01Fixed Bug #2830307 crash when adding marker to line beyond end of document.nyamatongwe1-1/+4
2009-06-10Stop fold header flag sticking to last empty line.nyamatongwe1-1/+3
2009-06-10Clear out per-line data when all contents removed.nyamatongwe1-0/+16
2009-04-22Removed Document methods that returned parts of annotations in favour ofnyamatongwe1-3/+3
2009-04-12Annotations and text margins added.nyamatongwe1-0/+464