From 9455684b429449f668c1aedb77ec9dcb1642c244 Mon Sep 17 00:00:00 2001 From: Don Ho Date: Mon, 12 Sep 2022 18:46:25 +0200 Subject: [PATCH] Renumber Notepad++ marks for preparing Scintilla 5.3.0's integration Ref: https://github.com/notepad-plus-plus/notepad-plus-plus/pull/12045#issuecomment-1229195785 --- .../src/ScintillaComponent/ScintillaEditView.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/PowerEditor/src/ScintillaComponent/ScintillaEditView.h b/PowerEditor/src/ScintillaComponent/ScintillaEditView.h index d2602d08f..3f3a28eeb 100644 --- a/PowerEditor/src/ScintillaComponent/ScintillaEditView.h +++ b/PowerEditor/src/ScintillaComponent/ScintillaEditView.h @@ -113,13 +113,11 @@ const UCHAR BASE_08 = 0x02; // Oct const UCHAR BASE_02 = 0x03; // Bin -const int MARK_BOOKMARK = 24; -const int MARK_HIDELINESBEGIN = 23; -const int MARK_HIDELINESEND = 22; -const int MARK_HIDELINESUNDERLINE = 21; -//const int MARK_LINEMODIFIEDUNSAVED = 20; -//const int MARK_LINEMODIFIEDSAVED = 19; -// 24 - 16 reserved for Notepad++ internal used +const int MARK_BOOKMARK = 20; +const int MARK_HIDELINESBEGIN = 19; +const int MARK_HIDELINESEND = 18; +const int MARK_HIDELINESUNDERLINE = 17; +// 20 - 16 reserved for Notepad++ internal used // 15 - 0 are free to use for plugins