diff options
author | Neil <nyamatongwe@gmail.com> | 2016-09-11 19:30:42 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-09-11 19:30:42 +1000 |
commit | 6b717717368a0677fecc52d0fe5bb38030cf22b8 (patch) | |
tree | ddd5308fe5b4dd2eeb58e2e0b369e75fbe9803da | |
parent | bd923ceb3fba78f13a6cd6a9650b99e176b5eddb (diff) | |
download | scintilla-mirror-6b717717368a0677fecc52d0fe5bb38030cf22b8.tar.gz |
Fix SC_AC_* values in documentation to match header.
-rw-r--r-- | doc/ScintillaDoc.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 36eb6ad15..852828942 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -7491,7 +7491,7 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next <tr> <td align="left"><code>SC_AC_FILLUP</code></td> - <td align="center">0x01</td> + <td align="center">1</td> <td>A fillup character triggered the completion. The character used is in ch. </td> @@ -7501,7 +7501,7 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next <tr> <td align="left"><code>SC_AC_DOUBLECLICK</code></td> - <td align="center">0x02</td> + <td align="center">2</td> <td>A double-click triggered the completion. ch is 0.</td> @@ -7510,7 +7510,7 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next <tr> <td align="left"><code>SC_AC_TAB</code></td> - <td align="center">0x04</td> + <td align="center">3</td> <td>The tab key or SCI_TAB triggered the completion. ch is 0.</td> @@ -7519,7 +7519,7 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next <tr> <td align="left"><code>SC_AC_NEWLINE</code></td> - <td align="center">0x08</td> + <td align="center">4</td> <td>A new line or SCI_NEWLINE triggered the completion. ch is 0.</td> @@ -7528,7 +7528,7 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next <tr> <td align="left"><code>SC_AC_COMMAND</code></td> - <td align="center">0x10</td> + <td align="center">5</td> <td>The <code> |