aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-11-11 09:38:43 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2013-11-11 09:38:43 -0500
commit443ca276efaf8dddf00a1ccab05ab8a84dd22cdd (patch)
tree1a791e79d80178bda063e38a77fc119a98b51817 /scripts
parent76ac1add61cb26f39ad8cd299f68f1bb2d2798c9 (diff)
Fixed bug with Scintilla notification constants.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_iface.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/gen_iface.lua b/scripts/gen_iface.lua
index b6702af7..07ba1a45 100755
--- a/scripts/gen_iface.lua
+++ b/scripts/gen_iface.lua
@@ -85,9 +85,9 @@ local events = {
SCN_AUTOCSELECTION = 2022,
SCN_INDICATORCLICK = 2023,
SCN_INDICATORRELEASE = 2024,
- SCN_AUTOCCANCELLED = 2026,
- SCN_AUTOCCHARDELETED = 2027,
- SCN_HOTSPOTRELEASECLICK = 2028
+ SCN_AUTOCCANCELLED = 2025,
+ SCN_AUTOCCHARDELETED = 2026,
+ SCN_HOTSPOTRELEASECLICK = 2027
}
for event, value in pairs(events) do
constants[#constants + 1] = string_format('%s=%d', event, value)