diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-23 09:11:03 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-23 09:11:03 +1100 |
commit | 2b892f992491481b73b4e14c3088416357821fdb (patch) | |
tree | fdcc747d3c6d872eb96ca5d7e2c4b1f44c044b01 /qt/ScintillaEdit/WidgetGen.py | |
parent | 38eb38d945e08b878d8680025e1cc7239a59afe4 (diff) | |
download | scintilla-mirror-2b892f992491481b73b4e14c3088416357821fdb.tar.gz |
Add colouralpha type to iface.
Diffstat (limited to 'qt/ScintillaEdit/WidgetGen.py')
-rw-r--r-- | qt/ScintillaEdit/WidgetGen.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt/ScintillaEdit/WidgetGen.py b/qt/ScintillaEdit/WidgetGen.py index 0360ff166..62f8ec8e5 100644 --- a/qt/ScintillaEdit/WidgetGen.py +++ b/qt/ScintillaEdit/WidgetGen.py @@ -42,6 +42,7 @@ typeAliases = { "line": "int", "pointer": "int", "colour": "int", + "colouralpha": "int", "keymod": "int", "string": "const char *", "stringresult": "const char *", @@ -57,7 +58,7 @@ def cppAlias(s): return s understoodTypes = ["", "void", "int", "bool", "position", "line", "pointer", - "colour", "keymod", "string", "stringresult", "cells"] + "colour", "colouralpha", "keymod", "string", "stringresult", "cells"] def understoodType(t): return t in understoodTypes or Face.IsEnumeration(t) |