diff options
-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> |