diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-17 08:33:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-17 09:56:19 +0200 |
commit | 1ac9f8ddd7d4126a138b84143f48abdc5c41d0ff (patch) | |
tree | 18745cc3ee5fae8d30635d77e8a75525bf144cb3 /compilerplugins/clang | |
parent | 8fc4aecde317a1c49755b1a0695d8359830a2c8d (diff) |
convert PropertyType to scoped enum
and drop unused enumerators
Change-Id: I61d2a46ed84ce4163757a2da58162c72b1b0950f
Diffstat (limited to 'compilerplugins/clang')
-rwxr-xr-x | compilerplugins/clang/unusedenumconstants.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compilerplugins/clang/unusedenumconstants.py b/compilerplugins/clang/unusedenumconstants.py index ebd5ddaba474..f409a5eaa7f0 100755 --- a/compilerplugins/clang/unusedenumconstants.py +++ b/compilerplugins/clang/unusedenumconstants.py @@ -117,6 +117,7 @@ for d in definitionSet: "basic/source/inc/filefmt.hxx", # FileOffset "include/basic/sbxdef.hxx", # SbxDataType "connectivity/source/inc/dbase/DTable.hxx", # ODbaseTable::DBFType + "codemaker/source/javamaker/classfile.hxx", # AccessFlags # unit test code "cppu/source/uno/check.cxx", # general weird nonsense going on @@ -177,7 +178,8 @@ for d in definitionSet: "cui/source/tabpages/tparea.cxx", # FillType (from UI) "include/editeng/svxenum.hxx", # css::style::NumberingType "include/editeng/bulletitem.hxx", # css::style::NumberingType - ":basic/source/sbx/sbxdec.hxx", # SbxDecimal::CmpResult, must match some Windows API + "basic/source/sbx/sbxdec.hxx", # SbxDecimal::CmpResult, must match some Windows API + "codemaker/source/javamaker/javatype.cxx", # TypeInfo::Flags, from UNO # represents constants from an external API "opencl/inc/opencl_device_selection.h", "vcl/inc/sft.hxx", |