diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-09-11 22:05:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-09-12 13:36:42 +0200 |
commit | 04203a26757d26814a18c3251d1a97f6ded64a62 (patch) | |
tree | 80962f43d3b46e8670ad49068a1a6e8459c22f39 /solenv/gdb/libreoffice/util/uno.py | |
parent | 05d5062dca095f2e53de26db41edeb0b1279138b (diff) |
Replace remaining uses of sal_Char
+ remove sal_Char check on compilerplugins
Change-Id: I0f7da14e620f0c3d031d038aa8345ba4080fb3e9
Change-Id: Ia6dba4f27b47bc9e0c89159182ad80a5aee17166
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102499
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv/gdb/libreoffice/util/uno.py')
-rw-r--r-- | solenv/gdb/libreoffice/util/uno.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gdb/libreoffice/util/uno.py b/solenv/gdb/libreoffice/util/uno.py index 648ea408a6d5..2f0d83a6b7bf 100644 --- a/solenv/gdb/libreoffice/util/uno.py +++ b/solenv/gdb/libreoffice/util/uno.py @@ -201,7 +201,7 @@ def make_uno_type(val): if type_class == TypeClass.VOID: uno_type = VoidType() elif type_class == TypeClass.CHAR: - uno_type = PrimitiveType(type_class, name, 'sal_Char') + uno_type = PrimitiveType(type_class, name, 'char') elif type_class == TypeClass.BOOLEAN: uno_type = PrimitiveType(type_class, name, 'sal_Bool') elif type_class == TypeClass.BYTE: |