diff options
| author | Neil <nyamatongwe@gmail.com> | 2026-04-22 09:08:34 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2026-04-22 09:08:34 +1000 |
| commit | 29f72cb83b1565132c075ba815afbaa2b6e421d1 (patch) | |
| tree | 25319f57e2dfb6c9acad7d5fe71f3ecf8303fe43 /src/CellBuffer.h | |
| parent | 1d3381851bb6d0283055c19052a95eb48c4e4ac2 (diff) | |
| download | scintilla-mirror-29f72cb83b1565132c075ba815afbaa2b6e421d1.tar.gz | |
Rename parameters to avoid clang-tidy readability-suspicious-call-argument
warnings.
Diffstat (limited to 'src/CellBuffer.h')
| -rw-r--r-- | src/CellBuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index e48eded4d..d54d2be8d 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -161,7 +161,7 @@ public: /// Setting styles for positions outside the range of the buffer is safe and has no effect. /// @return range where style of characters changed. ChangedRange SetStyles(Sci::Position position, const char *styles, Sci::Position length) noexcept; - ChangedRange SetStyleFor(Sci::Position position, Sci::Position lengthStyle, char styleValue) noexcept; + ChangedRange SetStyleFor(Sci::Position position, Sci::Position length, char value) noexcept; const char *DeleteChars(Sci::Position position, Sci::Position deleteLength, bool &startSequence); |
