diff options
author | Neil <nyamatongwe@gmail.com> | 2022-07-31 08:16:54 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-07-31 08:16:54 +1000 |
commit | 535e20189d5a2dd9b43a6ea0a74749a50678d631 (patch) | |
tree | 6ddecde2fbdb77a2657a4662d4744483df4ac4d4 /src/EditModel.h | |
parent | 83d8151122916867367b75ac38d0cf32ba0ac932 (diff) | |
download | scintilla-mirror-535e20189d5a2dd9b43a6ea0a74749a50678d631.tar.gz |
Move main access to active marker bit set to model. This will allow merging in
change history markers and simplifies calls.
Diffstat (limited to 'src/EditModel.h')
-rw-r--r-- | src/EditModel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/EditModel.h b/src/EditModel.h index 64005a504..48c230f84 100644 --- a/src/EditModel.h +++ b/src/EditModel.h @@ -71,6 +71,7 @@ public: const char *GetDefaultFoldDisplayText() const noexcept; const char *GetFoldDisplayText(Sci::Line lineDoc) const noexcept; InSelection LineEndInSelection(Sci::Line lineDoc) const; + [[nodiscard]] int GetMark(Sci::Line line) const; }; } |