From 2b892f992491481b73b4e14c3088416357821fdb Mon Sep 17 00:00:00 2001 From: Neil Date: Tue, 23 Mar 2021 09:11:03 +1100 Subject: Add colouralpha type to iface. --- qt/ScintillaEdit/WidgetGen.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'qt') 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) -- cgit v1.2.3