diff options
author | Neil <nyamatongwe@gmail.com> | 2019-06-17 08:45:40 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-06-17 08:45:40 +1000 |
commit | f40378978a7b3bb901a2085a2c76b1ac4a3f45a0 (patch) | |
tree | e7827356b952b25ba6f718095de0f1b126ccaeeb | |
parent | a25b9227ece3c61b5abe55f0b0d76216190ba9dc (diff) | |
download | scintilla-mirror-f40378978a7b3bb901a2085a2c76b1ac4a3f45a0.tar.gz |
Backport: Fix trailing space.
Backport of changeset 7574:d8639d8de9b5.
-rw-r--r-- | win32/ScintillaWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index b0ea35b2c..fb97719c0 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -121,7 +121,7 @@ // Two idle messages SC_WIN_IDLE and SC_WORK_IDLE. // SC_WIN_IDLE is low priority so should occur after the next WM_PAINT -// It is for lengthy actions like wrapping and background styling +// It is for lengthy actions like wrapping and background styling constexpr UINT SC_WIN_IDLE = 5001; // SC_WORK_IDLE is high priority and should occur before the next WM_PAINT // It is for shorter actions like restyling the text just inserted |