diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-06 14:03:46 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-07 06:01:50 +0000 |
commit | c1380c00397aa251627fb81f1665704416e1a4f8 (patch) | |
tree | a7feb23ea1e8d4faec03ffbd80c716fe8fca3f9a /compilerplugins | |
parent | d91c81e4335ccf6a383d1d66d789f2478c92bc7a (diff) |
drop unused FONT_PROPTYPE_CELL constant
which makes this enum not necessary anymore
Change-Id: I0194634d357569aee502f1e8a7fd95c49e23040c
Reviewed-on: https://gerrit.libreoffice.org/33967
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/unusedenumconstants.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compilerplugins/clang/unusedenumconstants.py b/compilerplugins/clang/unusedenumconstants.py index 3b5585ef4fc9..670bb005eaab 100755 --- a/compilerplugins/clang/unusedenumconstants.py +++ b/compilerplugins/clang/unusedenumconstants.py @@ -92,6 +92,11 @@ for d in definitionSet: "include/vcl/settings.hxx", # stored in a setting, can't remove it without potentially triggering UBSAN "basic/source/inc/opcodes.hxx", # can't touch this without breaking unit tests, not sure why "include/unotools/securityoptions.hxx", # comes from the UI + "sot/source/sdstor/stgelem.hxx", + "sd/source/filter/eppt/epptbase.hxx", + "include/registry/refltype.hxx", + "include/registry/version.h", + "include/svtools/rtftoken.h", # unit test code "cppu/source/uno/check.cxx", # general weird nonsense going on @@ -115,6 +120,7 @@ for d in definitionSet: "include/oox/drawingml/shapepropertymap.hxx", "include/svl/nfkeytab.hx", "include/svl/zforlist.hxx", + "include/svtools/svtabbx.hxx", # represents constants from an external API "opencl/inc/opencl_device_selection.h", "vcl/inc/sft.hxx", |