diff options
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.h b/src/Editor.h index ff940bc49..46879cdc4 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -346,7 +346,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void ThinRectangularRange(); void InvalidateSelection(SelectionRange newMain, bool invalidateWholeSelection=false); void InvalidateWholeSelection(); - SelectionRange LineSelectionRange(SelectionPosition currentPos_, SelectionPosition anchor_) const; + SelectionRange LineSelectionRange(SelectionPosition currentPos_, SelectionPosition anchor_) const noexcept; void SetSelection(SelectionPosition currentPos_, SelectionPosition anchor_); void SetSelection(Sci::Position currentPos_, Sci::Position anchor_); void SetSelection(SelectionPosition currentPos_); @@ -593,7 +593,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void SetFoldExpanded(Sci::Line lineDoc, bool expanded); void FoldLine(Sci::Line line, Scintilla::FoldAction action); void FoldExpand(Sci::Line line, Scintilla::FoldAction action, Scintilla::FoldLevel level); - Sci::Line ContractedFoldNext(Sci::Line lineStart) const; + Sci::Line ContractedFoldNext(Sci::Line lineStart) const noexcept; void EnsureLineVisible(Sci::Line lineDoc, bool enforcePolicy); void FoldChanged(Sci::Line line, Scintilla::FoldLevel levelNow, Scintilla::FoldLevel levelPrev); void NeedShown(Sci::Position pos, Sci::Position len); |