diff options
author | Neil <nyamatongwe@gmail.com> | 2024-03-30 08:49:15 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-03-30 08:49:15 +1100 |
commit | 2c01d26fce8ec14fa9f4c8bbee0d1171c9f45048 (patch) | |
tree | 3354433e08f7be25dfe943c1299add018202c65b | |
parent | a66cd4c4882781beb6855edf043b054874e48f91 (diff) | |
download | scintilla-mirror-2c01d26fce8ec14fa9f4c8bbee0d1171c9f45048.tar.gz |
Bug [#2435]. Fix documentation of type of SCNotification::annotationLinesAdded.
-rw-r--r-- | doc/ScintillaDoc.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 076e20bb5..e0ba05915 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -8879,7 +8879,7 @@ struct SCNotification { int x; /* SCN_DWELLSTART, SCN_DWELLEND */ int y; /* SCN_DWELLSTART, SCN_DWELLEND */ int token; /* SCN_MODIFIED with SC_MOD_CONTAINER */ - int annotationLinesAdded; /* SCN_MODIFIED with SC_MOD_CHANGEANNOTATION */ + Sci_Position annotationLinesAdded; /* SCN_MODIFIED with SC_MOD_CHANGEANNOTATION */ int updated; /* SCN_UPDATEUI */ int listCompletionMethod; /* SCN_AUTOCSELECTION, SCN_AUTOCCOMPLETED, SCN_USERLISTSELECTION */ |