compilerplugins/clang/unusedenumconstants.py | 16 compilerplugins/clang/unusedenumconstants.readonly.results | 490 compilerplugins/clang/unusedenumconstants.untouched.results | 470 compilerplugins/clang/unusedenumconstants.writeonly.results | 9952 +++--------- include/xmloff/txtimp.hxx | 10 include/xmloff/xmlstyle.hxx | 19 sw/source/filter/xml/xmlbrsh.cxx | 30 xmloff/source/chart/XMLSymbolImageContext.cxx | 12 xmloff/source/draw/sdxmlimp_impl.hxx | 48 xmloff/source/style/DashStyle.cxx | 17 xmloff/source/style/GradientStyle.cxx | 21 xmloff/source/style/HatchStyle.cxx | 15 xmloff/source/style/ImageStyle.cxx | 14 xmloff/source/style/TransGradientStyle.cxx | 17 xmloff/source/style/XMLBackgroundImageContext.cxx | 30 xmloff/source/style/xmlnumi.cxx | 54 xmloff/source/style/xmltabi.cxx | 24 xmloff/source/text/XMLTextColumnsContext.cxx | 20 xmloff/source/text/txtdropi.cxx | 21 19 files changed, 3398 insertions(+), 7882 deletions(-)
New commits: commit 03ef620caff59bf624b931646b21b239171511bd Author: Noel <[email protected]> AuthorDate: Wed Nov 4 19:20:33 2020 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Thu Nov 5 09:04:54 2020 +0100 loplugin:unusedenumconstants Change-Id: I9a2eb83647d6620b3c5b5ed5642227be47a657f3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105303 Tested-by: Jenkins Tested-by: Noel Grandin <[email protected]> Reviewed-by: Noel Grandin <[email protected]> diff --git a/compilerplugins/clang/unusedenumconstants.py b/compilerplugins/clang/unusedenumconstants.py index aff9efd12ef4..72de385030c8 100755 --- a/compilerplugins/clang/unusedenumconstants.py +++ b/compilerplugins/clang/unusedenumconstants.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python3 import sys import re @@ -22,7 +22,7 @@ def parseFieldInfo( tokens ): else: return (normalizeTypeParams(tokens[1]), "") -with io.open("workdir/loplugin.unusedenumconstants.log", "rb", buffering=1024*1024) as txt: +with io.open("workdir/loplugin.unusedenumconstants.log", "r", buffering=1024*1024) as txt: for line in txt: tokens = line.strip().split("\t") if tokens[0] == "definition:": @@ -188,6 +188,8 @@ def is_ignore(srcLoc): "sc/inc/callform.hxx", # ParamType "include/i18nlangtag/applelangid.hxx", # AppleLanguageId "connectivity/source/drivers/firebird/Util.hxx", # firebird::BlobSubtype + "include/xmloff/xmltoken.hxx", + "writerfilter/source/rtftok/rtfcontrolwords.hxx", ]): return True if d[1] == "UNKNOWN" or d[1] == "LAST" or d[1].endswith("NONE") or d[1].endswith("None") or d[1].endswith("EQUAL_SIZE"): @@ -233,11 +235,15 @@ for d in readSet: def natural_sort_key(s, _nsre=re.compile('([0-9]+)')): return [int(text) if text.isdigit() else text.lower() for text in re.split(_nsre, s)] +# sort by both the source-line and the datatype, so the output file ordering is stable +# when we have multiple items on the same source line +def v_sort_key(v): + return natural_sort_key(v[1]) + [v[0]] # sort results by name and line number -tmp1list = sorted(untouchedSet, key=lambda v: natural_sort_key(v[1])) -tmp2list = sorted(writeonlySet, key=lambda v: natural_sort_key(v[1])) -tmp3list = sorted(readonlySet, key=lambda v: natural_sort_key(v[1])) +tmp1list = sorted(untouchedSet, key=lambda v: v_sort_key(v)) +tmp2list = sorted(writeonlySet, key=lambda v: v_sort_key(v)) +tmp3list = sorted(readonlySet, key=lambda v: v_sort_key(v)) # print out the results with open("compilerplugins/clang/unusedenumconstants.untouched.results", "wt") as f: diff --git a/compilerplugins/clang/unusedenumconstants.readonly.results b/compilerplugins/clang/unusedenumconstants.readonly.results index 265ed33296d2..bc7879acb127 100644 --- a/compilerplugins/clang/unusedenumconstants.readonly.results +++ b/compilerplugins/clang/unusedenumconstants.readonly.results @@ -4,231 +4,229 @@ bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx:80 enum (anonymous namespace)::x86_64_reg_class X86_64_X87_CLASS bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx:81 enum (anonymous namespace)::x86_64_reg_class X86_64_X87UP_CLASS -chart2/source/inc/CharacterProperties.hxx:121 - enum chart::CharacterProperties::(anonymous at /home/noel/libo2/chart2/source/inc/CharacterProperties.hxx:42:5) FAST_PROPERTY_ID_END_CHAR_PROP -chart2/source/inc/TitleHelper.hxx:48 +chart2/source/inc/CharacterProperties.hxx:120 + enum chart::CharacterProperties::(anonymous at /home/noel/libo/chart2/source/inc/CharacterProperties.hxx:41:5) FAST_PROPERTY_ID_END_CHAR_PROP +chart2/source/inc/TitleHelper.hxx:47 enum chart::TitleHelper::eTitleType NORMAL_TITLE_END -chart2/source/view/inc/ShapeFactory.hxx:50 +chart2/source/view/inc/ShapeFactory.hxx:49 enum chart::SymbolEnum Symbol_Square -chart2/source/view/inc/ShapeFactory.hxx:51 +chart2/source/view/inc/ShapeFactory.hxx:50 enum chart::SymbolEnum Symbol_Diamond -chart2/source/view/inc/ShapeFactory.hxx:52 +chart2/source/view/inc/ShapeFactory.hxx:51 enum chart::SymbolEnum Symbol_DownArrow -chart2/source/view/inc/ShapeFactory.hxx:53 +chart2/source/view/inc/ShapeFactory.hxx:52 enum chart::SymbolEnum Symbol_UpArrow -chart2/source/view/inc/ShapeFactory.hxx:54 +chart2/source/view/inc/ShapeFactory.hxx:53 enum chart::SymbolEnum Symbol_RightArrow -chart2/source/view/inc/ShapeFactory.hxx:55 +chart2/source/view/inc/ShapeFactory.hxx:54 enum chart::SymbolEnum Symbol_LeftArrow -chart2/source/view/inc/ShapeFactory.hxx:56 +chart2/source/view/inc/ShapeFactory.hxx:55 enum chart::SymbolEnum Symbol_Bowtie -chart2/source/view/inc/ShapeFactory.hxx:57 +chart2/source/view/inc/ShapeFactory.hxx:56 enum chart::SymbolEnum Symbol_Sandglass -chart2/source/view/inc/ShapeFactory.hxx:58 +chart2/source/view/inc/ShapeFactory.hxx:57 enum chart::SymbolEnum Symbol_Circle -chart2/source/view/inc/ShapeFactory.hxx:59 +chart2/source/view/inc/ShapeFactory.hxx:58 enum chart::SymbolEnum Symbol_Star -chart2/source/view/inc/ShapeFactory.hxx:60 +chart2/source/view/inc/ShapeFactory.hxx:59 enum chart::SymbolEnum Symbol_X -chart2/source/view/inc/ShapeFactory.hxx:61 +chart2/source/view/inc/ShapeFactory.hxx:60 enum chart::SymbolEnum Symbol_Plus -chart2/source/view/inc/ShapeFactory.hxx:62 +chart2/source/view/inc/ShapeFactory.hxx:61 enum chart::SymbolEnum Symbol_Asterisk -chart2/source/view/inc/ShapeFactory.hxx:63 +chart2/source/view/inc/ShapeFactory.hxx:62 enum chart::SymbolEnum Symbol_HorizontalBar -chart2/source/view/inc/ShapeFactory.hxx:64 +chart2/source/view/inc/ShapeFactory.hxx:63 enum chart::SymbolEnum Symbol_VerticalBar -configmgr/source/access.hxx:444 - enum configmgr::Access::(anonymous at /home/noel/libo2/configmgr/source/access.hxx:442:5) IS_GROUP_MEMBER -configmgr/source/access.hxx:444 - enum configmgr::Access::(anonymous at /home/noel/libo2/configmgr/source/access.hxx:442:5) IS_SET_MEMBER -configmgr/source/parsemanager.hxx:44 - enum configmgr::ParseManager::(anonymous at /home/noel/libo2/configmgr/source/parsemanager.hxx:44:5) NAMESPACE_XS -configmgr/source/parsemanager.hxx:44 - enum configmgr::ParseManager::(anonymous at /home/noel/libo2/configmgr/source/parsemanager.hxx:44:5) NAMESPACE_XSI -configmgr/source/parsemanager.hxx:44 - enum configmgr::ParseManager::(anonymous at /home/noel/libo2/configmgr/source/parsemanager.hxx:44:5) NAMESPACE_OOR -connectivity/source/drivers/evoab2/NConnection.hxx:41 - connectivity::evoab::SDBCAddress::sdbc_address_type Unknown +configmgr/source/access.hxx:443 + enum configmgr::Access::(anonymous at /home/noel/libo/configmgr/source/access.hxx:441:5) IS_GROUP_MEMBER +configmgr/source/access.hxx:443 + enum configmgr::Access::(anonymous at /home/noel/libo/configmgr/source/access.hxx:441:5) IS_SET_MEMBER +configmgr/source/parsemanager.hxx:43 + enum configmgr::ParseManager::(anonymous at /home/noel/libo/configmgr/source/parsemanager.hxx:43:5) NAMESPACE_OOR +configmgr/source/parsemanager.hxx:43 + enum configmgr::ParseManager::(anonymous at /home/noel/libo/configmgr/source/parsemanager.hxx:43:5) NAMESPACE_XS +configmgr/source/parsemanager.hxx:43 + enum configmgr::ParseManager::(anonymous at /home/noel/libo/configmgr/source/parsemanager.hxx:43:5) NAMESPACE_XSI cui/source/options/optgenrl.cxx:63 enum (anonymous namespace)::RowType nRowCount -dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:72 +dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:71 enum dbaccess::OSingleSelectQueryComposer::EColumnType SelectColumns -dbaccess/source/ui/inc/sqlmessage.hxx:57 +dbaccess/source/ui/inc/sqlmessage.hxx:56 enum dbaui::MessBoxStyle DefaultCancel drawinglayer/source/tools/emfphelperdata.cxx:67 - enum emfplushelper::(anonymous at /home/noel/libo2/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeTile + enum emfplushelper::(anonymous at /home/noel/libo/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeTile drawinglayer/source/tools/emfphelperdata.cxx:68 - enum emfplushelper::(anonymous at /home/noel/libo2/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeTileFlipX + enum emfplushelper::(anonymous at /home/noel/libo/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeTileFlipX drawinglayer/source/tools/emfphelperdata.cxx:69 - enum emfplushelper::(anonymous at /home/noel/libo2/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeTileFlipY + enum emfplushelper::(anonymous at /home/noel/libo/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeTileFlipY drawinglayer/source/tools/emfphelperdata.cxx:70 - enum emfplushelper::(anonymous at /home/noel/libo2/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeTileFlipXY -drawinglayer/source/tools/emfphelperdata.hxx:108 + enum emfplushelper::(anonymous at /home/noel/libo/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeTileFlipXY +drawinglayer/source/tools/emfphelperdata.hxx:107 enum emfplushelper::PixelOffsetMode PixelOffsetModeDefault -drawinglayer/source/tools/emfphelperdata.hxx:109 +drawinglayer/source/tools/emfphelperdata.hxx:108 enum emfplushelper::PixelOffsetMode PixelOffsetModeHighSpeed -drawinglayer/source/tools/emfphelperdata.hxx:110 +drawinglayer/source/tools/emfphelperdata.hxx:109 enum emfplushelper::PixelOffsetMode PixelOffsetModeHighQuality -drawinglayer/source/tools/emfphelperdata.hxx:112 +drawinglayer/source/tools/emfphelperdata.hxx:111 enum emfplushelper::PixelOffsetMode PixelOffsetModeHalf -drawinglayer/source/tools/emfphelperdata.hxx:117 +drawinglayer/source/tools/emfphelperdata.hxx:116 enum emfplushelper::SmoothingMode SmoothingModeDefault -drawinglayer/source/tools/emfphelperdata.hxx:118 +drawinglayer/source/tools/emfphelperdata.hxx:117 enum emfplushelper::SmoothingMode SmoothingModeHighSpeed -drawinglayer/source/tools/emfphelperdata.hxx:119 +drawinglayer/source/tools/emfphelperdata.hxx:118 enum emfplushelper::SmoothingMode SmoothingModeHighQuality -drawinglayer/source/tools/emfphelperdata.hxx:121 +drawinglayer/source/tools/emfphelperdata.hxx:120 enum emfplushelper::SmoothingMode SmoothingModeAntiAlias8x4 -drawinglayer/source/tools/emfphelperdata.hxx:122 +drawinglayer/source/tools/emfphelperdata.hxx:121 enum emfplushelper::SmoothingMode SmoothingModeAntiAlias8x8 -drawinglayer/source/tools/emfphelperdata.hxx:127 +drawinglayer/source/tools/emfphelperdata.hxx:126 enum emfplushelper::InterpolationMode InterpolationModeDefault -drawinglayer/source/tools/emfphelperdata.hxx:128 +drawinglayer/source/tools/emfphelperdata.hxx:127 enum emfplushelper::InterpolationMode InterpolationModeLowQuality -drawinglayer/source/tools/emfphelperdata.hxx:129 +drawinglayer/source/tools/emfphelperdata.hxx:128 enum emfplushelper::InterpolationMode InterpolationModeHighQuality -drawinglayer/source/tools/emfphelperdata.hxx:130 +drawinglayer/source/tools/emfphelperdata.hxx:129 enum emfplushelper::InterpolationMode InterpolationModeBilinear -drawinglayer/source/tools/emfphelperdata.hxx:131 +drawinglayer/source/tools/emfphelperdata.hxx:130 enum emfplushelper::InterpolationMode InterpolationModeBicubic -drawinglayer/source/tools/emfphelperdata.hxx:132 +drawinglayer/source/tools/emfphelperdata.hxx:131 enum emfplushelper::InterpolationMode InterpolationModeNearestNeighbor -drawinglayer/source/tools/emfphelperdata.hxx:133 +drawinglayer/source/tools/emfphelperdata.hxx:132 enum emfplushelper::InterpolationMode InterpolationModeHighQualityBilinear -drawinglayer/source/tools/emfphelperdata.hxx:134 +drawinglayer/source/tools/emfphelperdata.hxx:133 enum emfplushelper::InterpolationMode InterpolationModeHighQualityBicubic -drawinglayer/source/tools/emfphelperdata.hxx:139 +drawinglayer/source/tools/emfphelperdata.hxx:138 enum emfplushelper::TextRenderingHint TextRenderingHintSystemDefault -drawinglayer/source/tools/emfphelperdata.hxx:140 +drawinglayer/source/tools/emfphelperdata.hxx:139 enum emfplushelper::TextRenderingHint TextRenderingHintSingleBitPerPixelGridFit -drawinglayer/source/tools/emfphelperdata.hxx:141 +drawinglayer/source/tools/emfphelperdata.hxx:140 enum emfplushelper::TextRenderingHint TextRenderingHintSingleBitPerPixel -drawinglayer/source/tools/emfphelperdata.hxx:142 +drawinglayer/source/tools/emfphelperdata.hxx:141 enum emfplushelper::TextRenderingHint TextRenderingHintAntialiasGridFit -drawinglayer/source/tools/emfphelperdata.hxx:143 +drawinglayer/source/tools/emfphelperdata.hxx:142 enum emfplushelper::TextRenderingHint TextRenderingHintAntialias -drawinglayer/source/tools/emfphelperdata.hxx:144 +drawinglayer/source/tools/emfphelperdata.hxx:143 enum emfplushelper::TextRenderingHint TextRenderingHintClearTypeGridFit -drawinglayer/source/tools/emfphelperdata.hxx:149 +drawinglayer/source/tools/emfphelperdata.hxx:148 enum emfplushelper::UnitType UnitTypeWorld -drawinglayer/source/tools/emfphelperdata.hxx:150 +drawinglayer/source/tools/emfphelperdata.hxx:149 enum emfplushelper::UnitType UnitTypeDisplay -drawinglayer/source/tools/emfphelperdata.hxx:151 +drawinglayer/source/tools/emfphelperdata.hxx:150 enum emfplushelper::UnitType UnitTypePixel -drawinglayer/source/tools/emfphelperdata.hxx:152 +drawinglayer/source/tools/emfphelperdata.hxx:151 enum emfplushelper::UnitType UnitTypePoint -drawinglayer/source/tools/emfphelperdata.hxx:153 +drawinglayer/source/tools/emfphelperdata.hxx:152 enum emfplushelper::UnitType UnitTypeInch -drawinglayer/source/tools/emfphelperdata.hxx:154 +drawinglayer/source/tools/emfphelperdata.hxx:153 enum emfplushelper::UnitType UnitTypeDocument -drawinglayer/source/tools/emfphelperdata.hxx:155 +drawinglayer/source/tools/emfphelperdata.hxx:154 enum emfplushelper::UnitType UnitTypeMillimeter -drawinglayer/source/tools/emfphelperdata.hxx:160 +drawinglayer/source/tools/emfphelperdata.hxx:159 enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeReplace -drawinglayer/source/tools/emfphelperdata.hxx:161 +drawinglayer/source/tools/emfphelperdata.hxx:160 enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeIntersect -drawinglayer/source/tools/emfphelperdata.hxx:162 +drawinglayer/source/tools/emfphelperdata.hxx:161 enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeUnion -drawinglayer/source/tools/emfphelperdata.hxx:163 +drawinglayer/source/tools/emfphelperdata.hxx:162 enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeXOR -drawinglayer/source/tools/emfphelperdata.hxx:164 +drawinglayer/source/tools/emfphelperdata.hxx:163 enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeExclude -drawinglayer/source/tools/emfphelperdata.hxx:165 +drawinglayer/source/tools/emfphelperdata.hxx:164 enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeComplement -drawinglayer/source/tools/emfpimage.hxx:32 +drawinglayer/source/tools/emfpimage.hxx:31 emfplushelper::ImageDataType ImageDataTypeBitmap -drawinglayer/source/tools/emfpimage.hxx:33 +drawinglayer/source/tools/emfpimage.hxx:32 emfplushelper::ImageDataType ImageDataTypeMetafile -drawinglayer/source/tools/emfppen.hxx:59 +drawinglayer/source/tools/emfppen.hxx:58 enum emfplushelper::LineCapType LineCapTypeFlat -drawinglayer/source/tools/emfppen.hxx:60 +drawinglayer/source/tools/emfppen.hxx:59 enum emfplushelper::LineCapType LineCapTypeSquare -drawinglayer/source/tools/emfppen.hxx:61 +drawinglayer/source/tools/emfppen.hxx:60 enum emfplushelper::LineCapType LineCapTypeRound -drawinglayer/source/tools/emfppen.hxx:62 +drawinglayer/source/tools/emfppen.hxx:61 enum emfplushelper::LineCapType LineCapTypeTriangle -drawinglayer/source/tools/emfppen.hxx:63 +drawinglayer/source/tools/emfppen.hxx:62 enum emfplushelper::LineCapType LineCapTypeNoAnchor -drawinglayer/source/tools/emfppen.hxx:64 +drawinglayer/source/tools/emfppen.hxx:63 enum emfplushelper::LineCapType LineCapTypeSquareAnchor -drawinglayer/source/tools/emfppen.hxx:65 +drawinglayer/source/tools/emfppen.hxx:64 enum emfplushelper::LineCapType LineCapTypeRoundAnchor -drawinglayer/source/tools/emfppen.hxx:66 +drawinglayer/source/tools/emfppen.hxx:65 enum emfplushelper::LineCapType LineCapTypeDiamondAnchor -drawinglayer/source/tools/emfppen.hxx:67 +drawinglayer/source/tools/emfppen.hxx:66 enum emfplushelper::LineCapType LineCapTypeArrowAnchor -drawinglayer/source/tools/emfppen.hxx:68 +drawinglayer/source/tools/emfppen.hxx:67 enum emfplushelper::LineCapType LineCapTypeAnchorMask -drawinglayer/source/tools/emfppen.hxx:69 +drawinglayer/source/tools/emfppen.hxx:68 enum emfplushelper::LineCapType LineCapTypeCustom -drawinglayer/source/tools/emfppen.hxx:74 +drawinglayer/source/tools/emfppen.hxx:73 enum emfplushelper::LineJoinType LineJoinTypeMiter -drawinglayer/source/tools/emfppen.hxx:75 +drawinglayer/source/tools/emfppen.hxx:74 enum emfplushelper::LineJoinType LineJoinTypeBevel -drawinglayer/source/tools/emfppen.hxx:76 +drawinglayer/source/tools/emfppen.hxx:75 enum emfplushelper::LineJoinType LineJoinTypeRound -drawinglayer/source/tools/emfppen.hxx:77 +drawinglayer/source/tools/emfppen.hxx:76 enum emfplushelper::LineJoinType LineJoinTypeMiterClipped -drawinglayer/source/tools/emfppen.hxx:82 +drawinglayer/source/tools/emfppen.hxx:81 enum emfplushelper::DashedLineCapType DashedLineCapTypeFlat -drawinglayer/source/tools/emfppen.hxx:83 +drawinglayer/source/tools/emfppen.hxx:82 enum emfplushelper::DashedLineCapType DashedLineCapTypeRound -drawinglayer/source/tools/emfppen.hxx:84 +drawinglayer/source/tools/emfppen.hxx:83 enum emfplushelper::DashedLineCapType DashedLineCapTypeTriangle -drawinglayer/source/tools/emfppen.hxx:89 +drawinglayer/source/tools/emfppen.hxx:88 enum emfplushelper::PenAlignment PenAlignmentCenter -drawinglayer/source/tools/emfppen.hxx:90 +drawinglayer/source/tools/emfppen.hxx:89 enum emfplushelper::PenAlignment PenAlignmentInset -drawinglayer/source/tools/emfppen.hxx:91 +drawinglayer/source/tools/emfppen.hxx:90 enum emfplushelper::PenAlignment PenAlignmentLeft -drawinglayer/source/tools/emfppen.hxx:92 +drawinglayer/source/tools/emfppen.hxx:91 enum emfplushelper::PenAlignment PenAlignmentOutset -drawinglayer/source/tools/emfppen.hxx:93 +drawinglayer/source/tools/emfppen.hxx:92 enum emfplushelper::PenAlignment PenAlignmentRight -drawinglayer/source/tools/emfpregion.hxx:29 +drawinglayer/source/tools/emfpregion.hxx:28 emfplushelper::RegionNodeDataType RegionNodeDataTypeAnd -drawinglayer/source/tools/emfpregion.hxx:30 +drawinglayer/source/tools/emfpregion.hxx:29 emfplushelper::RegionNodeDataType RegionNodeDataTypeOr -drawinglayer/source/tools/emfpregion.hxx:31 +drawinglayer/source/tools/emfpregion.hxx:30 emfplushelper::RegionNodeDataType RegionNodeDataTypeXor -drawinglayer/source/tools/emfpregion.hxx:32 +drawinglayer/source/tools/emfpregion.hxx:31 emfplushelper::RegionNodeDataType RegionNodeDataTypeExclude -drawinglayer/source/tools/emfpregion.hxx:33 +drawinglayer/source/tools/emfpregion.hxx:32 emfplushelper::RegionNodeDataType RegionNodeDataTypeComplement -drawinglayer/source/tools/emfpregion.hxx:34 +drawinglayer/source/tools/emfpregion.hxx:33 emfplushelper::RegionNodeDataType RegionNodeDataTypeRect -drawinglayer/source/tools/emfpregion.hxx:35 +drawinglayer/source/tools/emfpregion.hxx:34 emfplushelper::RegionNodeDataType RegionNodeDataTypePath -drawinglayer/source/tools/emfpregion.hxx:36 +drawinglayer/source/tools/emfpregion.hxx:35 emfplushelper::RegionNodeDataType RegionNodeDataTypeEmpty -drawinglayer/source/tools/emfpregion.hxx:37 +drawinglayer/source/tools/emfpregion.hxx:36 emfplushelper::RegionNodeDataType RegionNodeDataTypeInfinite -drawinglayer/source/tools/emfpstringformat.hxx:40 +drawinglayer/source/tools/emfpstringformat.hxx:39 enum emfplushelper::StringAlignment StringAlignmentNear -drawinglayer/source/tools/emfpstringformat.hxx:41 +drawinglayer/source/tools/emfpstringformat.hxx:40 enum emfplushelper::StringAlignment StringAlignmentCenter -drawinglayer/source/tools/emfpstringformat.hxx:42 +drawinglayer/source/tools/emfpstringformat.hxx:41 enum emfplushelper::StringAlignment StringAlignmentFar -drawinglayer/source/tools/emfpstringformat.hxx:47 +drawinglayer/source/tools/emfpstringformat.hxx:46 enum emfplushelper::StringDigitSubstitution StringDigitSubstitutionUser -drawinglayer/source/tools/emfpstringformat.hxx:49 +drawinglayer/source/tools/emfpstringformat.hxx:48 enum emfplushelper::StringDigitSubstitution StringDigitSubstitutionNational -drawinglayer/source/tools/emfpstringformat.hxx:50 +drawinglayer/source/tools/emfpstringformat.hxx:49 enum emfplushelper::StringDigitSubstitution StringDigitSubstitutionTraditional -drawinglayer/source/tools/emfpstringformat.hxx:56 +drawinglayer/source/tools/emfpstringformat.hxx:55 enum emfplushelper::HotkeyPrefix HotkeyPrefixShow -drawinglayer/source/tools/emfpstringformat.hxx:57 +drawinglayer/source/tools/emfpstringformat.hxx:56 enum emfplushelper::HotkeyPrefix HotkeyPrefixHide -drawinglayer/source/tools/emfpstringformat.hxx:63 +drawinglayer/source/tools/emfpstringformat.hxx:62 enum emfplushelper::StringTrimming StringTrimmingCharacter -drawinglayer/source/tools/emfpstringformat.hxx:64 +drawinglayer/source/tools/emfpstringformat.hxx:63 enum emfplushelper::StringTrimming StringTrimmingWord -drawinglayer/source/tools/emfpstringformat.hxx:65 +drawinglayer/source/tools/emfpstringformat.hxx:64 enum emfplushelper::StringTrimming StringTrimmingEllipsisCharacter -drawinglayer/source/tools/emfpstringformat.hxx:66 +drawinglayer/source/tools/emfpstringformat.hxx:65 enum emfplushelper::StringTrimming StringTrimmingEllipsisWord -drawinglayer/source/tools/emfpstringformat.hxx:67 +drawinglayer/source/tools/emfpstringformat.hxx:66 enum emfplushelper::StringTrimming StringTrimmingEllipsisPath editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:28 enum SvXMLAutoCorrectToken BLOCK @@ -314,27 +312,27 @@ include/desktop/exithelper.h:29 int EXITHELPER_CRASH_WITH_RESTART include/desktop/exithelper.h:31 int EXITHELPER_NORMAL_RESTART -include/editeng/editeng.hxx:125 - enum GetAttribsFlags STYLESHEET include/editeng/editeng.hxx:126 + enum GetAttribsFlags STYLESHEET +include/editeng/editeng.hxx:127 enum GetAttribsFlags PARAATTRIBS include/editeng/editstat.hxx:46 enum EEControlBits AUTOCOMPLETE -include/editeng/flditem.hxx:92 +include/editeng/flditem.hxx:91 enum SvxDateFormat System -include/editeng/flditem.hxx:94 +include/editeng/flditem.hxx:93 enum SvxDateFormat StdBig -include/editeng/flditem.hxx:261 +include/editeng/flditem.hxx:260 enum SvxTimeFormat System -include/editeng/flditem.hxx:269 +include/editeng/flditem.hxx:268 enum SvxTimeFormat HH12_MM_AMPM -include/editeng/flditem.hxx:270 +include/editeng/flditem.hxx:269 enum SvxTimeFormat HH12_MM_SS_AMPM -include/editeng/flditem.hxx:271 +include/editeng/flditem.hxx:270 enum SvxTimeFormat HH12_MM_SS_00_AMPM -include/editeng/flditem.hxx:358 +include/editeng/flditem.hxx:357 enum SvxAuthorFormat LastName -include/editeng/flditem.hxx:359 +include/editeng/flditem.hxx:358 enum SvxAuthorFormat FirstName include/framework/framelistanalyzer.hxx:40 enum FrameAnalyzerFlags Model @@ -352,7 +350,7 @@ include/LibreOfficeKit/LibreOfficeKitEnums.h:40 LibreOfficeKitTileMode LOK_TILEMODE_RGBA include/LibreOfficeKit/LibreOfficeKitEnums.h:99 LibreOfficeKitOptionalFeatures LOK_FEATURE_RANGE_HEADERS -include/oox/core/filterbase.hxx:78 +include/oox/core/filterbase.hxx:77 enum oox::core::OoxmlVersion ISOIEC_29500_2008 include/oox/mathml/export.hxx:33 enum oox::FormulaExportBase::eFormulaAlign GROUPEDCENTER @@ -392,15 +390,15 @@ include/svl/languageoptions.hxx:73 enum SvtLanguageOptions::EOption E_CTLCURSORMOVEMENT include/svl/languageoptions.hxx:74 enum SvtLanguageOptions::EOption E_CTLTEXTNUMERALS -include/svl/lockfilecommon.hxx:34 - enum LockFileComponent SYSUSERNAME -include/svl/lockfilecommon.hxx:34 - enum LockFileComponent OOOUSERNAME include/svl/lockfilecommon.hxx:34 enum LockFileComponent EDITTIME include/svl/lockfilecommon.hxx:34 enum LockFileComponent LOCALHOST -include/svl/poolitem.hxx:89 +include/svl/lockfilecommon.hxx:34 + enum LockFileComponent OOOUSERNAME +include/svl/lockfilecommon.hxx:34 + enum LockFileComponent SYSUSERNAME +include/svl/poolitem.hxx:90 enum SfxItemState READONLY include/svl/srchdefs.hxx:40 enum SearchOptionFlags WILDCARD @@ -410,8 +408,6 @@ include/svtools/apearcfg.hxx:35 enum DragMode FullWindow include/svtools/apearcfg.hxx:36 enum DragMode Frame -include/svtools/restartdialog.hxx:59 - enum svtools::RestartReason RESTART_REASON_OPENGL include/svx/EnhancedCustomShapeGeometry.hxx:47 enum SvxMSDffHandleFlags MIRRORED_X include/svx/EnhancedCustomShapeGeometry.hxx:48 @@ -442,18 +438,16 @@ include/svx/sdtakitm.hxx:31 enum SdrTextAniKind Blink include/svx/svdhdl.hxx:108 enum BitmapMarkerKind RectPlus_7x7 -include/svx/svdograf.hxx:54 +include/svx/svdograf.hxx:52 enum SdrGrafObjTransformsAttrs ROTATE -include/svx/swframeposstrings.hxx:78 +include/svx/swframeposstrings.hxx:79 enum SvxSwFramePosString::StringId STR_MAX include/svx/swframetypes.hxx:41 enum RndStdIds HEADERR include/tools/inetmsg.hxx:71 enum InetMessageMime NUMHDR -include/tools/wintypes.hxx:70 - enum WindowType NUMERICFIELD -include/tools/wintypes.hxx:82 - enum WindowType LONGCURRENCYFIELD +include/unotools/extendedsecurityoptions.hxx:27 + enum SvtExtendedSecurityOptions::OpenHyperlinkMode OPEN_NEVER include/unotools/fontcfg.hxx:52 enum ImplFontAttrs Default include/unotools/fontcfg.hxx:53 @@ -480,9 +474,9 @@ include/unotools/fontdefs.hxx:70 enum DefaultFontType LATIN_FIXED include/unotools/fontdefs.hxx:80 enum DefaultFontType CTL_DISPLAY -include/vcl/bitmap.hxx:55 +include/vcl/bitmap.hxx:56 enum BmpScaleFlag NearestNeighbor -include/vcl/bitmap.hxx:60 +include/vcl/bitmap.hxx:61 enum BmpScaleFlag Super include/vcl/errinf.hxx:83 enum DialogMask ButtonsYesNo @@ -492,9 +486,9 @@ include/vcl/errinf.hxx:87 enum DialogMask ButtonDefaultsYes include/vcl/errinf.hxx:88 enum DialogMask ButtonDefaultsNo -include/vcl/gfxlink.hxx:54 +include/vcl/gfxlink.hxx:53 enum GfxLinkType NativeFirst -include/vcl/gfxlink.hxx:55 +include/vcl/gfxlink.hxx:54 enum GfxLinkType NativeLast include/vcl/GraphicObject.hxx:35 enum GraphicAdjustmentFlags DRAWMODE @@ -512,17 +506,15 @@ include/vcl/headbar.hxx:187 enum HeaderBarItemBits RIGHTIMAGE include/vcl/help.hxx:41 enum QuickHelpFlags NoAutoPos -include/vcl/keycod.hxx:32 +include/vcl/keycod.hxx:31 enum KeyFuncType REDO -include/vcl/keycod.hxx:32 - enum KeyFuncType REPEAT include/vcl/keycodes.hxx:173 enum ModKeyFlags Mod1Msk include/vcl/keycodes.hxx:174 enum ModKeyFlags Mod2Msk -include/vcl/menu.hxx:71 +include/vcl/menu.hxx:72 enum PopupMenuFlags ExecuteUp -include/vcl/menu.hxx:80 +include/vcl/menu.hxx:81 enum PopupMenuFlags NoHorzPlacement include/vcl/outdev.hxx:159 enum DrawTextFlags NewsEllipsis @@ -530,40 +522,42 @@ include/vcl/outdev.hxx:174 enum DrawImageFlags Highlight include/vcl/outdev.hxx:175 enum DrawImageFlags Deactive -include/vcl/pdfwriter.hxx:109 - enum vcl::PDFWriter::PDFVersion PDF_1_3 +include/vcl/pdf/PDFAnnotationSubType.hxx:26 + enum vcl::pdf::PDFAnnotationSubType Highlight include/vcl/pdfwriter.hxx:109 enum vcl::PDFWriter::PDFVersion PDF_1_2 -include/vcl/pdfwriter.hxx:121 - enum vcl::PDFWriter::StructElement Part +include/vcl/pdfwriter.hxx:109 + enum vcl::PDFWriter::PDFVersion PDF_1_3 include/vcl/pdfwriter.hxx:121 enum vcl::PDFWriter::StructElement Article +include/vcl/pdfwriter.hxx:121 + enum vcl::PDFWriter::StructElement Part include/vcl/pdfwriter.hxx:125 - enum vcl::PDFWriter::StructElement H5 + enum vcl::PDFWriter::StructElement H2 include/vcl/pdfwriter.hxx:125 enum vcl::PDFWriter::StructElement H3 include/vcl/pdfwriter.hxx:125 enum vcl::PDFWriter::StructElement H4 include/vcl/pdfwriter.hxx:125 - enum vcl::PDFWriter::StructElement H6 + enum vcl::PDFWriter::StructElement H5 include/vcl/pdfwriter.hxx:125 - enum vcl::PDFWriter::StructElement H2 + enum vcl::PDFWriter::StructElement H6 include/vcl/pdfwriter.hxx:130 enum vcl::PDFWriter::StructElement Reference -include/vcl/pdfwriter.hxx:139 - enum vcl::PDFWriter::StructAttribute InlineAlign include/vcl/pdfwriter.hxx:139 enum vcl::PDFWriter::StructAttribute BlockAlign +include/vcl/pdfwriter.hxx:139 + enum vcl::PDFWriter::StructAttribute InlineAlign include/vcl/pdfwriter.hxx:140 enum vcl::PDFWriter::StructAttribute LineHeight include/vcl/pdfwriter.hxx:140 enum vcl::PDFWriter::StructAttribute ListNumbering include/vcl/pdfwriter.hxx:162 - enum vcl::PDFWriter::StructAttributeValue Start + enum vcl::PDFWriter::StructAttributeValue After include/vcl/pdfwriter.hxx:162 enum vcl::PDFWriter::StructAttributeValue Before include/vcl/pdfwriter.hxx:162 - enum vcl::PDFWriter::StructAttributeValue After + enum vcl::PDFWriter::StructAttributeValue Start include/vcl/pdfwriter.hxx:168 enum vcl::PDFWriter::StructAttributeValue Auto include/vcl/pdfwriter.hxx:170 @@ -571,21 +565,21 @@ include/vcl/pdfwriter.hxx:170 include/vcl/pdfwriter.hxx:172 enum vcl::PDFWriter::StructAttributeValue Normal include/vcl/pdfwriter.hxx:176 - enum vcl::PDFWriter::StructAttributeValue UpperAlpha + enum vcl::PDFWriter::StructAttributeValue Circle include/vcl/pdfwriter.hxx:176 - enum vcl::PDFWriter::StructAttributeValue LowerRoman + enum vcl::PDFWriter::StructAttributeValue Decimal include/vcl/pdfwriter.hxx:176 - enum vcl::PDFWriter::StructAttributeValue UpperRoman + enum vcl::PDFWriter::StructAttributeValue Disc include/vcl/pdfwriter.hxx:176 - enum vcl::PDFWriter::StructAttributeValue Square + enum vcl::PDFWriter::StructAttributeValue LowerAlpha include/vcl/pdfwriter.hxx:176 - enum vcl::PDFWriter::StructAttributeValue Decimal + enum vcl::PDFWriter::StructAttributeValue LowerRoman include/vcl/pdfwriter.hxx:176 - enum vcl::PDFWriter::StructAttributeValue Circle + enum vcl::PDFWriter::StructAttributeValue Square include/vcl/pdfwriter.hxx:176 - enum vcl::PDFWriter::StructAttributeValue LowerAlpha + enum vcl::PDFWriter::StructAttributeValue UpperAlpha include/vcl/pdfwriter.hxx:176 - enum vcl::PDFWriter::StructAttributeValue Disc + enum vcl::PDFWriter::StructAttributeValue UpperRoman include/vcl/prntypes.hxx:37 enum PrintQueueFlags Ready include/vcl/prntypes.hxx:38 @@ -638,25 +632,25 @@ include/vcl/prntypes.hxx:61 enum PrintQueueFlags PowerSave include/vcl/ptrstyle.hxx:56 enum PointerStyle Pen +include/vcl/Scanline.hxx:38 + enum ScanlineFormat N8BitTcMask include/vcl/Scanline.hxx:47 enum ScanlineFormat N32BitTcMask -include/vcl/treelistbox.hxx:151 - enum DragDropMode CTRL_COPY include/vcl/vclenum.hxx:39 enum MenuItemBits POPUPSELECT +include/vcl/vclenum.hxx:114 + enum WindowBorderStyle NWF include/vcl/vclenum.hxx:151 enum ExtTimeFieldFormat Long24H include/vcl/vclenum.hxx:151 enum ExtTimeFieldFormat Short24H -include/vcl/vclenum.hxx:152 - enum ExtTimeFieldFormat Short12H include/vcl/vclenum.hxx:152 enum ExtTimeFieldFormat Long12H -include/vcl/vclenum.hxx:153 - enum ExtTimeFieldFormat LongDuration +include/vcl/vclenum.hxx:152 + enum ExtTimeFieldFormat Short12H include/vcl/vclenum.hxx:153 enum ExtTimeFieldFormat ShortDuration -include/vcl/vclevent.hxx:121 +include/vcl/vclevent.hxx:120 enum VclEventId TabpageRemovedAll include/vcl/wall.hxx:36 enum WallpaperStyle Center @@ -672,6 +666,8 @@ include/vcl/wall.hxx:43 enum WallpaperStyle BottomLeft include/vcl/wall.hxx:44 enum WallpaperStyle Bottom +include/vcl/weld.hxx:1926 + enum weld::LabelType Warning include/xmloff/families.hxx:62 enum XmlStyleFamily TEXT_ENDNOTECONFIG include/xmloff/xmlimp.hxx:118 @@ -682,10 +678,10 @@ linguistic/source/convdicxml.hxx:68 enum ConvDicXMLToken RIGHT_TEXT linguistic/source/convdicxml.hxx:69 enum ConvDicXMLToken ENTRY -o3tl/qa/test-enumarray.cxx:30 - enum MyEnum TWO o3tl/qa/test-enumarray.cxx:30 enum MyEnum ONE +o3tl/qa/test-enumarray.cxx:30 + enum MyEnum TWO o3tl/qa/test-typed_flags.cxx:20 enum (anonymous namespace)::ConfigurationChangedHint TWO reportdesign/inc/conditionalexpression.hxx:78 @@ -718,9 +714,9 @@ sc/source/ui/inc/viewdata.hxx:43 enum ScSplitMode SC_SPLIT_MODE_MAX_ENUM sc/source/ui/inc/viewdata.hxx:45 enum ScSplitPos SC_SPLIT_POS_MAX_ENUM -sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:98 +sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:102 enum (anonymous namespace)::ScRegType LOGARITHMIC -sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:99 +sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:103 enum (anonymous namespace)::ScRegType POWER sc/source/ui/unoobj/condformatuno.cxx:274 enum (anonymous namespace)::DateProperties Date_StyleName @@ -734,81 +730,83 @@ scaddins/source/datefunc/datefunc.hxx:43 enum ScaCategory Math scaddins/source/datefunc/datefunc.hxx:44 enum ScaCategory Tech -scaddins/source/pricing/pricing.hxx:50 +scaddins/source/pricing/pricing.hxx:49 enum sca::pricing::ScaCategory DateTime -scaddins/source/pricing/pricing.hxx:51 +scaddins/source/pricing/pricing.hxx:50 enum sca::pricing::ScaCategory Text -scaddins/source/pricing/pricing.hxx:53 +scaddins/source/pricing/pricing.hxx:52 enum sca::pricing::ScaCategory Inf -scaddins/source/pricing/pricing.hxx:54 +scaddins/source/pricing/pricing.hxx:53 enum sca::pricing::ScaCategory Math -scaddins/source/pricing/pricing.hxx:55 +scaddins/source/pricing/pricing.hxx:54 enum sca::pricing::ScaCategory Tech sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx:40 enum sd::slidesorter::cache::RequestPriorityClass MAX_CLASS -slideshow/source/engine/shapes/viewshape.hxx:278 - enum slideshow::internal::ViewShape::(anonymous at /home/noel/libo2/slideshow/source/engine/shapes/viewshape.hxx:278:13) MAX_RENDER_CACHE_ENTRIES +slideshow/source/engine/shapes/viewshape.hxx:276 + enum slideshow::internal::ViewShape::(anonymous at /home/noel/libo/slideshow/source/engine/shapes/viewshape.hxx:276:13) MAX_RENDER_CACHE_ENTRIES slideshow/source/engine/slideview.cxx:242 - enum slideshow::internal::(anonymous namespace)::LayerSpriteContainer::(anonymous at /home/noel/libo2/slideshow/source/engine/slideview.cxx:242:5) SPRITE_ULLAGE + enum slideshow::internal::(anonymous namespace)::LayerSpriteContainer::(anonymous at /home/noel/libo/slideshow/source/engine/slideview.cxx:242:5) SPRITE_ULLAGE slideshow/source/engine/slideview.cxx:722 - enum slideshow::internal::(anonymous namespace)::SlideView::(anonymous at /home/noel/libo2/slideshow/source/engine/slideview.cxx:722:5) LAYER_ULLAGE + enum slideshow::internal::(anonymous namespace)::SlideView::(anonymous at /home/noel/libo/slideshow/source/engine/slideview.cxx:722:5) LAYER_ULLAGE +slideshow/source/inc/box2dtools.hxx:47 + enum box2d::utils::box2DNonsimulatedShapeUpdateType BOX2D_UPDATE_SIZE soltools/cpp/cpp.h:42 int WS -svgio/inc/svgstyleattributes.hxx:63 +svgio/inc/svgstyleattributes.hxx:61 enum svgio::svgreader::FontSize FontSize_notset -svl/source/numbers/zformat.cxx:303 +svl/source/numbers/zformat.cxx:305 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM2 -svl/source/numbers/zformat.cxx:304 +svl/source/numbers/zformat.cxx:306 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM3 -svl/source/numbers/zformat.cxx:305 +svl/source/numbers/zformat.cxx:307 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM4 -svl/source/numbers/zformat.cxx:306 +svl/source/numbers/zformat.cxx:308 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM5 -svl/source/numbers/zformat.cxx:307 +svl/source/numbers/zformat.cxx:309 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM6 -svl/source/numbers/zformat.cxx:308 +svl/source/numbers/zformat.cxx:310 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM7 -svl/source/numbers/zformat.cxx:309 +svl/source/numbers/zformat.cxx:311 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM8 -svl/source/numbers/zformat.cxx:310 +svl/source/numbers/zformat.cxx:312 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM9 -svl/source/numbers/zformat.cxx:313 +svl/source/numbers/zformat.cxx:315 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM1 -svl/source/numbers/zformat.cxx:314 +svl/source/numbers/zformat.cxx:316 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM2 -svl/source/numbers/zformat.cxx:315 +svl/source/numbers/zformat.cxx:317 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM3 -svl/source/numbers/zformat.cxx:316 +svl/source/numbers/zformat.cxx:318 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM4 -svl/source/numbers/zformat.cxx:317 +svl/source/numbers/zformat.cxx:319 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM5 -svl/source/numbers/zformat.cxx:318 +svl/source/numbers/zformat.cxx:320 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM6 -svl/source/numbers/zformat.cxx:319 +svl/source/numbers/zformat.cxx:321 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM7 -svl/source/numbers/zformat.cxx:320 +svl/source/numbers/zformat.cxx:322 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM8 -svl/source/numbers/zformat.cxx:321 +svl/source/numbers/zformat.cxx:323 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM9 -svl/source/numbers/zformat.cxx:322 +svl/source/numbers/zformat.cxx:324 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM10 -svl/source/numbers/zformat.cxx:323 +svl/source/numbers/zformat.cxx:325 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM11 -svl/source/numbers/zformat.cxx:324 +svl/source/numbers/zformat.cxx:326 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM12 -svl/source/numbers/zformat.cxx:325 +svl/source/numbers/zformat.cxx:327 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM13 -svl/source/numbers/zformat.cxx:326 +svl/source/numbers/zformat.cxx:328 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM14 -svl/source/numbers/zformat.cxx:327 +svl/source/numbers/zformat.cxx:329 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM15 -svl/source/numbers/zformat.cxx:328 +svl/source/numbers/zformat.cxx:330 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM16 -svl/source/numbers/zformat.cxx:329 +svl/source/numbers/zformat.cxx:331 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM17 -svl/source/numbers/zformat.cxx:330 +svl/source/numbers/zformat.cxx:332 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM18 -svl/source/numbers/zformat.cxx:331 +svl/source/numbers/zformat.cxx:333 enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM19 svtools/inc/table/tablemodel.hxx:49 enum ColumnAttributeGroup ALL @@ -830,9 +828,9 @@ sw/inc/crstate.hxx:33 enum SwFillMode Margin sw/inc/crstate.hxx:34 enum SwFillMode Indent -sw/inc/dbmgr.hxx:485 - enum sw::DBConnURIType MSJET sw/inc/dbmgr.hxx:486 + enum sw::DBConnURIType MSJET +sw/inc/dbmgr.hxx:487 enum sw::DBConnURIType MSACE sw/inc/docary.hxx:69 enum SwVectorModifyBase<class SwFrameFormat *>::DestructorPolicy FreeElements @@ -870,9 +868,7 @@ sw/source/core/inc/SwXMLBlockImport.hxx:107 enum SwXMLBlockListToken BLOCK_LIST sw/source/core/text/pormulti.hxx:48 enum RubyPosition RIGHT -sw/source/filter/html/css1atr.cxx:113 - enum (anonymous namespace)::Css1FrameSize AnyHeight -sw/source/filter/ww8/ww8scan.hxx:600 +sw/source/filter/ww8/ww8scan.hxx:603 enum WW8PLCFx_Fc_FKP::Limits eMaxCache sw/source/uibase/inc/envimg.hxx:31 enum SwEnvAlign ENV_HOR_CNTR @@ -883,48 +879,54 @@ sw/source/uibase/inc/envimg.hxx:33 sw/source/uibase/inc/envimg.hxx:34 enum SwEnvAlign ENV_VER_CNTR tools/source/generic/poly.cxx:1117 - enum (anonymous at /home/noel/libo2/tools/source/generic/poly.cxx:1117:5) maxRecursionDepth + enum (anonymous at /home/noel/libo/tools/source/generic/poly.cxx:1117:5) maxRecursionDepth ucbhelper/source/client/proxydecider.cxx:125 enum ucbhelper::proxydecider_impl::InternetProxyDecider_Impl::ProxyType Automatic +vcl/inc/driverblocklist.hxx:65 + enum DriverBlocklist::OperatingSystem DRIVER_OS_WINDOWS_LAST +vcl/inc/driverblocklist.hxx:73 + enum DriverBlocklist::OperatingSystem DRIVER_OS_OSX_LAST vcl/inc/fontsubset.hxx:42 enum FontType ANY_TYPE1 vcl/inc/salptype.hxx:44 enum SalPrinterError Abort -vcl/source/app/svapp.cxx:1136 - enum (anonymous at /home/noel/libo2/vcl/source/app/svapp.cxx:1136:1) hwUI -vcl/source/app/svapp.cxx:1136 - enum (anonymous at /home/noel/libo2/vcl/source/app/svapp.cxx:1136:1) hwEnv -vcl/source/filter/jpeg/Exif.hxx:39 +vcl/inc/unx/gtk/gtkgdi.hxx:57 + enum GtkControlPart SpinButtonEntry +vcl/source/app/svapp.cxx:1122 + enum (anonymous at /home/noel/libo/vcl/source/app/svapp.cxx:1122:1) hwEnv +vcl/source/app/svapp.cxx:1122 + enum (anonymous at /home/noel/libo/vcl/source/app/svapp.cxx:1122:1) hwUI +vcl/source/filter/jpeg/Exif.hxx:40 enum Tag ORIENTATION vcl/source/gdi/CommonSalLayout.cxx:133 enum (anonymous namespace)::VerticalOrientation Upright vcl/source/gdi/CommonSalLayout.cxx:136 enum (anonymous namespace)::VerticalOrientation TransformedRotated -vcl/source/gdi/pdfwriter_impl.hxx:82 +vcl/source/gdi/pdfwriter_impl.hxx:84 enum vcl::pdf::GraphicsStateUpdateFlags MapMode -vcl/source/gdi/pdfwriter_impl.hxx:87 +vcl/source/gdi/pdfwriter_impl.hxx:89 enum vcl::pdf::GraphicsStateUpdateFlags TransparentPercent vcl/source/window/printdlg.cxx:55 - enum (anonymous at /home/noel/libo2/vcl/source/window/printdlg.cxx:52:1) ORIENTATION_PORTRAIT -writerfilter/source/dmapper/PropertyIds.hxx:231 + enum (anonymous at /home/noel/libo/vcl/source/window/printdlg.cxx:52:1) ORIENTATION_PORTRAIT +writerfilter/source/dmapper/PropertyIds.hxx:230 enum writerfilter::dmapper::PropertyIds PROP_PARA_HYPHENATION_NO_CAPS -writerfilter/source/ooxml/OOXMLFactory.hxx:34 +writerfilter/source/ooxml/OOXMLFactory.hxx:33 enum writerfilter::ooxml::ResourceType List -writerfilter/source/ooxml/OOXMLFactory.hxx:35 +writerfilter/source/ooxml/OOXMLFactory.hxx:34 enum writerfilter::ooxml::ResourceType Integer -writerfilter/source/ooxml/OOXMLFactory.hxx:37 +writerfilter/source/ooxml/OOXMLFactory.hxx:36 enum writerfilter::ooxml::ResourceType Hex -writerfilter/source/ooxml/OOXMLFactory.hxx:38 +writerfilter/source/ooxml/OOXMLFactory.hxx:37 enum writerfilter::ooxml::ResourceType HexColor -writerfilter/source/ooxml/OOXMLFactory.hxx:39 +writerfilter/source/ooxml/OOXMLFactory.hxx:38 enum writerfilter::ooxml::ResourceType String -writerfilter/source/ooxml/OOXMLFactory.hxx:41 +writerfilter/source/ooxml/OOXMLFactory.hxx:40 enum writerfilter::ooxml::ResourceType Boolean -writerfilter/source/ooxml/OOXMLFactory.hxx:50 +writerfilter/source/ooxml/OOXMLFactory.hxx:49 enum writerfilter::ooxml::ResourceType TwipsMeasure_asSigned -writerfilter/source/ooxml/OOXMLFactory.hxx:51 +writerfilter/source/ooxml/OOXMLFactory.hxx:50 enum writerfilter::ooxml::ResourceType TwipsMeasure_asZero -writerfilter/source/ooxml/OOXMLFactory.hxx:52 +writerfilter/source/ooxml/OOXMLFactory.hxx:51 enum writerfilter::ooxml::ResourceType HpsMeasure -writerfilter/source/ooxml/OOXMLFactory.hxx:53 +writerfilter/source/ooxml/OOXMLFactory.hxx:52 enum writerfilter::ooxml::ResourceType MeasurementOrPercent diff --git a/compilerplugins/clang/unusedenumconstants.untouched.results b/compilerplugins/clang/unusedenumconstants.untouched.results index fc5475d7a379..128eb7327f8f 100644 --- a/compilerplugins/clang/unusedenumconstants.untouched.results +++ b/compilerplugins/clang/unusedenumconstants.untouched.results @@ -1,14 +1,14 @@ -canvas/inc/rendering/icolorbuffer.hxx:38 +canvas/inc/rendering/icolorbuffer.hxx:37 enum canvas::IColorBuffer::Format A8R8G8B8 -canvas/inc/rendering/icolorbuffer.hxx:41 +canvas/inc/rendering/icolorbuffer.hxx:40 enum canvas::IColorBuffer::Format X8R8G8B8 canvas/inc/rendering/irendermodule.hxx:54 enum canvas::IRenderModule::PrimitiveType Unknown cui/source/options/optfltr.cxx:35 enum MSFltrPg2_CheckBoxEntries InvalidCBEntry drawinglayer/source/tools/emfphelperdata.cxx:71 - enum emfplushelper::(anonymous at /home/noel/libo2/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeClamp -drawinglayer/source/tools/emfpimage.hxx:31 + enum emfplushelper::(anonymous at /home/noel/libo/drawinglayer/source/tools/emfphelperdata.cxx:65:5) WrapModeClamp +drawinglayer/source/tools/emfpimage.hxx:30 emfplushelper::ImageDataType ImageDataTypeUnknown framework/inc/xml/imagesdocumenthandler.hxx:43 enum framework::OReadImagesDocumentHandler::Image_XML_Entry IMG_ELEMENT_EXTERNALIMAGES @@ -32,14 +32,18 @@ framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx:44 enum (anonymous namespace)::EPROPERTIES PROPERTYCOUNT include/connectivity/dbtools.hxx:821 enum connectivity::dbase::DBFType dBaseIVMemo -include/desktop/exithelper.h:25 - int EXITHELPER_NO_ERROR include/desktop/exithelper.h:25 enum EExitCodes EXITHELPER_NO_ERROR +include/desktop/exithelper.h:25 + int EXITHELPER_NO_ERROR include/desktop/exithelper.h:27 int EXITHELPER_FATAL_ERROR -include/editeng/borderline.hxx:130 +include/editeng/borderline.hxx:131 enum SvxBorderLineStyle BORDER_LINE_STYLE_MAX +include/filter/msfilter/ww8fields.hxx:28 + enum ww::eField ePOSSIBLEBOOKMARK +include/filter/msfilter/ww8fields.hxx:112 + enum ww::eField eUNKNOWN2 include/i18nutil/transliteration.hxx:45 enum TransliterationFlags NumToTextLower_zh_CN include/i18nutil/transliteration.hxx:47 @@ -60,7 +64,7 @@ include/i18nutil/transliteration.hxx:119 enum TransliterationFlags largeToSmall_ja_JP include/LibreOfficeKit/LibreOfficeKitEnums.h:56 LibreOfficeKitSelectionType LOK_SELTYPE_LARGE_TEXT -include/LibreOfficeKit/LibreOfficeKitEnums.h:772 +include/LibreOfficeKit/LibreOfficeKitEnums.h:792 LibreOfficeKitExtTextInputType LOK_EXT_TEXTINPUT_POS include/oox/ole/axfontdata.hxx:39 enum AxFontFlags Disabled @@ -70,117 +74,159 @@ include/unotools/eventcfg.hxx:29 enum GlobalEventId STARTAPP include/unotools/eventcfg.hxx:30 enum GlobalEventId CLOSEAPP +include/unotools/extendedsecurityoptions.hxx:28 + enum SvtExtendedSecurityOptions::OpenHyperlinkMode OPEN_WITHSECURITYCHECK +include/unotools/sharedunocomponent.hxx:149 + enum utl::SharedUNOComponent::AssignmentMode NoTakeOwnership include/unotools/sharedunocomponent.hxx:149 enum utl::SharedUNOComponent<class com::sun::star::beans::XPropertySet, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership include/unotools/sharedunocomponent.hxx:149 - enum utl::SharedUNOComponent<class com::sun::star::sdbc::XPreparedStatement, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership + enum utl::SharedUNOComponent<class com::sun::star::embed::XStorage, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership include/unotools/sharedunocomponent.hxx:149 enum utl::SharedUNOComponent<class com::sun::star::sdb::XSingleSelectQueryComposer, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership +include/unotools/sharedunocomponent.hxx:149 + enum utl::SharedUNOComponent<class com::sun::star::sdbc::XPreparedStatement, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership include/unotools/sharedunocomponent.hxx:149 enum utl::SharedUNOComponent<class com::sun::star::sdbc::XStatement, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership include/unotools/sharedunocomponent.hxx:149 enum utl::SharedUNOComponent<class com::sun::star::uno::XInterface, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership -include/unotools/sharedunocomponent.hxx:149 - enum utl::SharedUNOComponent::AssignmentMode NoTakeOwnership -include/unotools/sharedunocomponent.hxx:149 - enum utl::SharedUNOComponent<class com::sun::star::embed::XStorage, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership -include/vcl/keycod.hxx:29 - enum KeyFuncType OPEN -include/vcl/keycod.hxx:29 - enum KeyFuncType SAVE -include/vcl/keycod.hxx:30 - enum KeyFuncType SAVEAS -include/vcl/keycod.hxx:30 - enum KeyFuncType PRINT -include/vcl/keycod.hxx:30 - enum KeyFuncType CLOSE -include/vcl/keycod.hxx:30 - enum KeyFuncType QUIT -include/vcl/keycod.hxx:32 - enum KeyFuncType FIND -include/vcl/keycod.hxx:33 - enum KeyFuncType FINDBACKWARD -include/vcl/keycod.hxx:33 - enum KeyFuncType PROPERTIES +include/vcl/pdf/PDFAnnotationMarker.hxx:57 + enum vcl::pdf::PDFTextMarkerType Underline +include/vcl/pdf/PDFAnnotationMarker.hxx:58 + enum vcl::pdf::PDFTextMarkerType Squiggly +include/vcl/pdf/PDFAnnotationMarker.hxx:59 + enum vcl::pdf::PDFTextMarkerType StrikeOut +include/vcl/pdf/PDFAnnotationSubType.hxx:17 + enum vcl::pdf::PDFAnnotationSubType Unknown +include/vcl/pdf/PDFAnnotationSubType.hxx:19 + enum vcl::pdf::PDFAnnotationSubType Link +include/vcl/pdf/PDFAnnotationSubType.hxx:25 + enum vcl::pdf::PDFAnnotationSubType Polyline +include/vcl/pdf/PDFAnnotationSubType.hxx:27 + enum vcl::pdf::PDFAnnotationSubType Underline +include/vcl/pdf/PDFAnnotationSubType.hxx:28 + enum vcl::pdf::PDFAnnotationSubType Squiggly +include/vcl/pdf/PDFAnnotationSubType.hxx:29 + enum vcl::pdf::PDFAnnotationSubType Strikeout +include/vcl/pdf/PDFAnnotationSubType.hxx:30 + enum vcl::pdf::PDFAnnotationSubType Stamp +include/vcl/pdf/PDFAnnotationSubType.hxx:31 + enum vcl::pdf::PDFAnnotationSubType Caret +include/vcl/pdf/PDFAnnotationSubType.hxx:34 + enum vcl::pdf::PDFAnnotationSubType FileAttachment +include/vcl/pdf/PDFAnnotationSubType.hxx:35 + enum vcl::pdf::PDFAnnotationSubType Sound +include/vcl/pdf/PDFAnnotationSubType.hxx:36 + enum vcl::pdf::PDFAnnotationSubType Movie +include/vcl/pdf/PDFAnnotationSubType.hxx:37 + enum vcl::pdf::PDFAnnotationSubType Widget +include/vcl/pdf/PDFAnnotationSubType.hxx:38 + enum vcl::pdf::PDFAnnotationSubType Screen +include/vcl/pdf/PDFAnnotationSubType.hxx:39 + enum vcl::pdf::PDFAnnotationSubType Printermark +include/vcl/pdf/PDFAnnotationSubType.hxx:40 + enum vcl::pdf::PDFAnnotationSubType Trapnet +include/vcl/pdf/PDFAnnotationSubType.hxx:41 + enum vcl::pdf::PDFAnnotationSubType Watermark +include/vcl/pdf/PDFAnnotationSubType.hxx:42 + enum vcl::pdf::PDFAnnotationSubType Threed +include/vcl/pdf/PDFAnnotationSubType.hxx:43 + enum vcl::pdf::PDFAnnotationSubType Richmedia +include/vcl/pdf/PDFAnnotationSubType.hxx:44 + enum vcl::pdf::PDFAnnotationSubType XFAWidget include/vcl/toolkit/svtabbx.hxx:36 enum SvTabJustify AdjustRight include/vcl/toolkit/svtabbx.hxx:37 enum SvTabJustify AdjustLeft -include/vcl/treelistbox.hxx:152 +include/vcl/toolkit/treelistbox.hxx:151 enum DragDropMode APP_COPY -include/vcl/vclenum.hxx:312 +include/vcl/toolkit/treelistbox.hxx:155 + enum DragDropMode ALL +include/vcl/vclenum.hxx:313 enum WindowStateState FullScreen include/vcl/window.hxx:109 enum TrackingEventFlags Focus -libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:69 - enum (anonymous at /home/noel/libo2/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:67:1) PROP_0 +include/xmloff/txtimp.hxx:321 + enum XMLTextPageMasterElemTokens XML_TOK_TEXT_MP_HEADER +include/xmloff/txtimp.hxx:322 + enum XMLTextPageMasterElemTokens XML_TOK_TEXT_MP_FOOTER +include/xmloff/txtimp.hxx:323 + enum XMLTextPageMasterElemTokens XML_TOK_TEXT_MP_HEADER_LEFT +include/xmloff/txtimp.hxx:324 + enum XMLTextPageMasterElemTokens XML_TOK_TEXT_MP_FOOTER_LEFT +include/xmloff/txtimp.hxx:325 + enum XMLTextPageMasterElemTokens XML_TOK_TEXT_MP_HEADER_FIRST +include/xmloff/txtimp.hxx:326 + enum XMLTextPageMasterElemTokens XML_TOK_TEXT_MP_FOOTER_FIRST +include/xmloff/xmlstyle.hxx:42 + enum XMLStyleStylesElemTokens XML_TOK_STYLE_STYLE +include/xmloff/xmlstyle.hxx:43 + enum XMLStyleStylesElemTokens XML_TOK_STYLE_PAGE_MASTER +include/xmloff/xmlstyle.hxx:44 + enum XMLStyleStylesElemTokens XML_TOK_TEXT_LIST_STYLE +include/xmloff/xmlstyle.hxx:45 + enum XMLStyleStylesElemTokens XML_TOK_TEXT_OUTLINE +include/xmloff/xmlstyle.hxx:46 + enum XMLStyleStylesElemTokens XML_TOK_STYLES_GRADIENTSTYLES +include/xmloff/xmlstyle.hxx:47 + enum XMLStyleStylesElemTokens XML_TOK_STYLES_HATCHSTYLES +include/xmloff/xmlstyle.hxx:48 + enum XMLStyleStylesElemTokens XML_TOK_STYLES_BITMAPSTYLES +include/xmloff/xmlstyle.hxx:49 + enum XMLStyleStylesElemTokens XML_TOK_STYLES_TRANSGRADIENTSTYLES +include/xmloff/xmlstyle.hxx:50 + enum XMLStyleStylesElemTokens XML_TOK_STYLES_MARKERSTYLES +include/xmloff/xmlstyle.hxx:51 + enum XMLStyleStylesElemTokens XML_TOK_STYLES_DASHSTYLES +include/xmloff/xmlstyle.hxx:52 + enum XMLStyleStylesElemTokens XML_TOK_TEXT_NOTE_CONFIG +include/xmloff/xmlstyle.hxx:53 + enum XMLStyleStylesElemTokens XML_TOK_TEXT_BIBLIOGRAPHY_CONFIG +include/xmloff/xmlstyle.hxx:54 + enum XMLStyleStylesElemTokens XML_TOK_TEXT_LINENUMBERING_CONFIG +include/xmloff/xmlstyle.hxx:55 + enum XMLStyleStylesElemTokens XML_TOK_STYLE_DEFAULT_STYLE +include/xmloff/xmlstyle.hxx:56 + enum XMLStyleStylesElemTokens XML_TOK_STYLE_DEFAULT_PAGE_LAYOUT +libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:70 + enum (anonymous at /home/noel/libo/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:68:1) PROP_0 libreofficekit/source/gtk/lokdocview.cxx:296 - enum (anonymous at /home/noel/libo2/libreofficekit/source/gtk/lokdocview.cxx:294:1) PROP_0 + enum (anonymous at /home/noel/libo/libreofficekit/source/gtk/lokdocview.cxx:294:1) PROP_0 reportdesign/source/filter/xml/xmlEnums.hxx:42 enum rptxml::XMLReportToken XML_TOK_REPORT_ELEMENT sc/source/filter/excel/xiescher.cxx:473 - enum (anonymous at /home/noel/libo2/sc/source/filter/excel/xiescher.cxx:473:17) eCreateFromOffice + enum (anonymous at /home/noel/libo/sc/source/filter/excel/xiescher.cxx:473:17) eCreateFromOffice sc/source/filter/inc/decl.h:24 enum WKTYP eWK4 sc/source/ui/inc/anyrefdg.hxx:145 - enum ScRefHdlrControllerImpl::(anonymous at /home/noel/libo2/sc/source/ui/inc/anyrefdg.hxx:145:5) SLOTID + enum ScRefHdlrControllerImpl::(anonymous at /home/noel/libo/sc/source/ui/inc/anyrefdg.hxx:145:5) SLOTID sc/source/ui/inc/anyrefdg.hxx:145 - enum ScRefHdlrControllerImpl<class SfxModelessDialogController, true>::(anonymous at /home/noel/libo2/sc/source/ui/inc/anyrefdg.hxx:145:5) SLOTID + enum ScRefHdlrControllerImpl<class SfxModelessDialogController, true>::(anonymous at /home/noel/libo/sc/source/ui/inc/anyrefdg.hxx:145:5) SLOTID sc/source/ui/inc/anyrefdg.hxx:145 - enum ScRefHdlrControllerImpl<class SfxTabDialogController, false>::(anonymous at /home/noel/libo2/sc/source/ui/inc/anyrefdg.hxx:145:5) SLOTID -sc/source/ui/inc/checklistmenu.hxx:173 - enum ScCheckListMenuControl::SectionType WHOLE -sc/source/ui/inc/checklistmenu.hxx:174 - enum ScCheckListMenuControl::SectionType LISTBOX_AREA_OUTER -sc/source/ui/inc/checklistmenu.hxx:175 - enum ScCheckListMenuControl::SectionType LISTBOX_AREA_INNER -sc/source/ui/inc/checklistmenu.hxx:176 - enum ScCheckListMenuControl::SectionType SINGLE_BTN_AREA -sc/source/ui/inc/checklistmenu.hxx:177 - enum ScCheckListMenuControl::SectionType CHECK_TOGGLE_ALL -sc/source/ui/inc/checklistmenu.hxx:178 - enum ScCheckListMenuControl::SectionType BTN_SINGLE_SELECT -sc/source/ui/inc/checklistmenu.hxx:179 - enum ScCheckListMenuControl::SectionType BTN_SINGLE_UNSELECT -sc/source/ui/inc/checklistmenu.hxx:180 - enum ScCheckListMenuControl::SectionType BTN_OK -sc/source/ui/inc/checklistmenu.hxx:181 - enum ScCheckListMenuControl::SectionType BTN_CANCEL -sc/source/ui/inc/checklistmenu.hxx:182 - enum ScCheckListMenuControl::SectionType EDIT_SEARCH -sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:97 + enum ScRefHdlrControllerImpl<class SfxTabDialogController, false>::(anonymous at /home/noel/libo/sc/source/ui/inc/anyrefdg.hxx:145:5) SLOTID +sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:101 enum (anonymous namespace)::ScRegType LINEAR -starmath/source/mathmlimport.hxx:111 - enum SmXMLPresScriptEmptyElemTokenMap XML_TOK_MPRESCRIPTS -svtools/source/control/valueset.cxx:61 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/svtools/source/control/valueset.cxx:53:1) SCRBAR_OFFSET svx/inc/sxmkitm.hxx:25 enum SdrMeasureKind SDRMEASURE_RADIUS svx/source/inc/datanavi.hxx:59 enum svxform::DataGroupType DGTUnknown -svx/source/inc/fmexpl.hxx:381 - enum svxform::NavigatorTree::DROP_ACTION DA_EXPANDNODE -svx/source/inc/fmexpl.hxx:381 - enum svxform::NavigatorTree::DROP_ACTION DA_SCROLLUP -svx/source/inc/fmexpl.hxx:381 - enum svxform::NavigatorTree::DROP_ACTION DA_SCROLLDOWN sw/inc/docary.hxx:68 enum SwVectorModifyBase::DestructorPolicy KeepElements +sw/inc/docary.hxx:68 + enum SwVectorModifyBase<class SwCharFormat *>::DestructorPolicy KeepElements sw/inc/docary.hxx:68 enum SwVectorModifyBase<class SwNumRule *>::DestructorPolicy KeepElements sw/inc/docary.hxx:68 enum SwVectorModifyBase<class SwSectionFormat *>::DestructorPolicy KeepElements -sw/inc/docary.hxx:68 - enum SwVectorModifyBase<class SwCharFormat *>::DestructorPolicy KeepElements sw/inc/docary.hxx:69 enum SwVectorModifyBase::DestructorPolicy FreeElements sw/inc/tblenum.hxx:34 enum TableChgWidthHeightType InvalidPos -sw/source/filter/ww8/ww8scan.hxx:381 +sw/source/filter/ww8/ww8scan.hxx:384 enum ePLCFT SEP -sw/source/filter/ww8/ww8struc.hxx:940 +sw/source/filter/ww8/ww8struc.hxx:950 enum WW8_FSPA::FSPAOrient RelPgMargin -sw/source/filter/ww8/ww8struc.hxx:940 +sw/source/filter/ww8/ww8struc.hxx:950 enum WW8_FSPA::FSPAOrient RelText sw/source/ui/fldui/fldref.cxx:734 enum (anonymous namespace)::FMT_REF_IDX FMT_REF_PAGE_IDX @@ -194,29 +240,29 @@ sw/source/ui/fldui/fldref.cxx:739 enum (anonymous namespace)::FMT_REF_IDX FMT_REF_ONLYNUMBER_IDX sw/source/ui/fldui/fldref.cxx:740 enum (anonymous namespace)::FMT_REF_IDX FMT_REF_ONLYCAPTION_IDX -sw/source/uibase/utlui/content.cxx:821 +sw/source/uibase/utlui/content.cxx:848 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_OUTLINE_LEVEL -sw/source/uibase/utlui/content.cxx:822 +sw/source/uibase/utlui/content.cxx:849 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_DRAGMODE -sw/source/uibase/utlui/content.cxx:824 +sw/source/uibase/utlui/content.cxx:851 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_LINK_REGION -sw/source/uibase/utlui/content.cxx:825 +sw/source/uibase/utlui/content.cxx:852 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_COPY_REGION -sw/source/uibase/utlui/content.cxx:826 +sw/source/uibase/utlui/content.cxx:853 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_DISPLAY -sw/source/uibase/utlui/content.cxx:830 +sw/source/uibase/utlui/content.cxx:857 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_INACTIVE -sw/source/uibase/utlui/content.cxx:831 +sw/source/uibase/utlui/content.cxx:858 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_EDIT_ENTRY -sw/source/uibase/utlui/content.cxx:832 +sw/source/uibase/utlui/content.cxx:859 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_DELETE_ENTRY -sw/source/uibase/utlui/content.cxx:833 +sw/source/uibase/utlui/content.cxx:860 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY -sw/source/uibase/utlui/content.cxx:835 +sw/source/uibase/utlui/content.cxx:862 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_OUTLINE_TRACKING_DEFAULT -sw/source/uibase/utlui/content.cxx:836 +sw/source/uibase/utlui/content.cxx:863 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_OUTLINE_TRACKING_FOCUS -sw/source/uibase/utlui/content.cxx:837 +sw/source/uibase/utlui/content.cxx:864 enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_OUTLINE_TRACKING_OFF sw/source/uibase/utlui/glbltree.cxx:91 enum (anonymous namespace)::GLOBAL_CONTEXT_IDX IDX_STR_UPDATE @@ -248,45 +294,251 @@ ucbhelper/source/client/proxydecider.cxx:125 enum ucbhelper::proxydecider_impl::InternetProxyDecider_Impl::ProxyType Manual vcl/inc/salptype.hxx:43 enum SalPrinterError General -vcl/inc/skia/gdiimpl.hxx:215 +vcl/inc/skia/gdiimpl.hxx:221 enum SkiaSalGraphicsImpl::GlyphOrientation Ignore vcl/inc/unx/saldisp.hxx:62 srv_vendor_t vendor_none -vcl/source/app/svapp.cxx:1136 - enum (anonymous at /home/noel/libo2/vcl/source/app/svapp.cxx:1136:1) hwAll +vcl/source/app/svapp.cxx:1122 + enum (anonymous at /home/noel/libo/vcl/source/app/svapp.cxx:1122:1) hwAll vcl/source/gdi/CommonSalLayout.cxx:134 enum (anonymous namespace)::VerticalOrientation Rotated -vcl/unx/gtk3/gtk3gtkinst.cxx:5161 - enum (anonymous at /home/noel/libo2/vcl/unx/gtk3/gtk3gtkinst.cxx:5159:1) PROP_0 -vcl/unx/gtk3/gtk3gtkinst.cxx:5166 - enum (anonymous at /home/noel/libo2/vcl/unx/gtk3/gtk3gtkinst.cxx:5159:1) PROP_SHADOW_TYPE -writerfilter/source/ooxml/OOXMLFactory.hxx:31 +vcl/unx/gtk3/gtk3gtkinst.cxx:5205 + enum (anonymous at /home/noel/libo/vcl/unx/gtk3/gtk3gtkinst.cxx:5203:1) PROP_0 +vcl/unx/gtk3/gtk3gtkinst.cxx:5210 + enum (anonymous at /home/noel/libo/vcl/unx/gtk3/gtk3gtkinst.cxx:5203:1) PROP_SHADOW_TYPE +writerfilter/source/ooxml/OOXMLFactory.hxx:30 enum writerfilter::ooxml::ResourceType NoResource -writerfilter/source/ooxml/OOXMLFactory.hxx:32 +writerfilter/source/ooxml/OOXMLFactory.hxx:31 enum writerfilter::ooxml::ResourceType Table -writerfilter/source/ooxml/OOXMLFactory.hxx:33 +writerfilter/source/ooxml/OOXMLFactory.hxx:32 enum writerfilter::ooxml::ResourceType Stream -writerfilter/source/ooxml/OOXMLFactory.hxx:36 +writerfilter/source/ooxml/OOXMLFactory.hxx:35 enum writerfilter::ooxml::ResourceType Properties -writerfilter/source/ooxml/OOXMLFactory.hxx:40 +writerfilter/source/ooxml/OOXMLFactory.hxx:39 enum writerfilter::ooxml::ResourceType Shape -writerfilter/source/ooxml/OOXMLFactory.hxx:42 +writerfilter/source/ooxml/OOXMLFactory.hxx:41 enum writerfilter::ooxml::ResourceType Value -writerfilter/source/ooxml/OOXMLFactory.hxx:43 +writerfilter/source/ooxml/OOXMLFactory.hxx:42 enum writerfilter::ooxml::ResourceType XNote -writerfilter/source/ooxml/OOXMLFactory.hxx:44 +writerfilter/source/ooxml/OOXMLFactory.hxx:43 enum writerfilter::ooxml::ResourceType TextTableCell -writerfilter/source/ooxml/OOXMLFactory.hxx:45 +writerfilter/source/ooxml/OOXMLFactory.hxx:44 enum writerfilter::ooxml::ResourceType TextTableRow -writerfilter/source/ooxml/OOXMLFactory.hxx:46 +writerfilter/source/ooxml/OOXMLFactory.hxx:45 enum writerfilter::ooxml::ResourceType TextTable -writerfilter/source/ooxml/OOXMLFactory.hxx:47 +writerfilter/source/ooxml/OOXMLFactory.hxx:46 enum writerfilter::ooxml::ResourceType PropertyTable -writerfilter/source/ooxml/OOXMLFactory.hxx:48 +writerfilter/source/ooxml/OOXMLFactory.hxx:47 enum writerfilter::ooxml::ResourceType Math -writerfilter/source/ooxml/OOXMLFactory.hxx:49 +writerfilter/source/ooxml/OOXMLFactory.hxx:48 enum writerfilter::ooxml::ResourceType Any -writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:203 +writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:202 enum writerfilter::ooxml::OOXMLFastContextHandler::eMathParaJc INLINE +xmloff/source/chart/XMLSymbolImageContext.cxx:38 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_SYMBOL_IMAGE_HREF +xmloff/source/chart/XMLSymbolImageContext.cxx:39 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_SYMBOL_IMAGE_TYPE +xmloff/source/chart/XMLSymbolImageContext.cxx:40 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_SYMBOL_IMAGE_ACTUATE +xmloff/source/chart/XMLSymbolImageContext.cxx:41 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_SYMBOL_IMAGE_SHOW +xmloff/source/draw/sdxmlimp_impl.hxx:35 + enum SdXMLBodyElemTokenMap XML_TOK_BODY_PAGE +xmloff/source/draw/sdxmlimp_impl.hxx:36 + enum SdXMLBodyElemTokenMap XML_TOK_BODY_SETTINGS +xmloff/source/draw/sdxmlimp_impl.hxx:37 + enum SdXMLBodyElemTokenMap XML_TOK_BODY_HEADER_DECL +xmloff/source/draw/sdxmlimp_impl.hxx:38 + enum SdXMLBodyElemTokenMap XML_TOK_BODY_FOOTER_DECL +xmloff/source/draw/sdxmlimp_impl.hxx:39 + enum SdXMLBodyElemTokenMap XML_TOK_BODY_DATE_TIME_DECL +xmloff/source/draw/sdxmlimp_impl.hxx:44 + enum SdXMLStylesElemTokenMap XML_TOK_STYLES_STYLE +xmloff/source/draw/sdxmlimp_impl.hxx:45 + enum SdXMLStylesElemTokenMap XML_TOK_STYLES_PAGE_MASTER +xmloff/source/draw/sdxmlimp_impl.hxx:46 + enum SdXMLStylesElemTokenMap XML_TOK_STYLES_PRESENTATION_PAGE_LAYOUT +xmloff/source/draw/sdxmlimp_impl.hxx:51 + enum SdXMLMasterPageElemTokenMap XML_TOK_MASTERPAGE_STYLE +xmloff/source/draw/sdxmlimp_impl.hxx:52 + enum SdXMLMasterPageElemTokenMap XML_TOK_MASTERPAGE_NOTES +xmloff/source/draw/sdxmlimp_impl.hxx:57 + enum SdXMLPageMasterAttrTokenMap XML_TOK_PAGEMASTER_NAME +xmloff/source/draw/sdxmlimp_impl.hxx:62 + enum SdXMLPageMasterStyleAttrTokenMap XML_TOK_PAGEMASTERSTYLE_MARGIN_TOP +xmloff/source/draw/sdxmlimp_impl.hxx:63 + enum SdXMLPageMasterStyleAttrTokenMap XML_TOK_PAGEMASTERSTYLE_MARGIN_BOTTOM +xmloff/source/draw/sdxmlimp_impl.hxx:64 + enum SdXMLPageMasterStyleAttrTokenMap XML_TOK_PAGEMASTERSTYLE_MARGIN_LEFT +xmloff/source/draw/sdxmlimp_impl.hxx:65 + enum SdXMLPageMasterStyleAttrTokenMap XML_TOK_PAGEMASTERSTYLE_MARGIN_RIGHT +xmloff/source/draw/sdxmlimp_impl.hxx:66 + enum SdXMLPageMasterStyleAttrTokenMap XML_TOK_PAGEMASTERSTYLE_PAGE_WIDTH +xmloff/source/draw/sdxmlimp_impl.hxx:67 + enum SdXMLPageMasterStyleAttrTokenMap XML_TOK_PAGEMASTERSTYLE_PAGE_HEIGHT +xmloff/source/draw/sdxmlimp_impl.hxx:68 + enum SdXMLPageMasterStyleAttrTokenMap XML_TOK_PAGEMASTERSTYLE_PAGE_ORIENTATION +xmloff/source/draw/sdxmlimp_impl.hxx:74 + enum SdXMLPresentationPlaceholderAttrTokenMap XML_TOK_PRESENTATIONPLACEHOLDER_OBJECTNAME +xmloff/source/draw/sdxmlimp_impl.hxx:75 + enum SdXMLPresentationPlaceholderAttrTokenMap XML_TOK_PRESENTATIONPLACEHOLDER_X +xmloff/source/draw/sdxmlimp_impl.hxx:76 + enum SdXMLPresentationPlaceholderAttrTokenMap XML_TOK_PRESENTATIONPLACEHOLDER_Y +xmloff/source/draw/sdxmlimp_impl.hxx:77 + enum SdXMLPresentationPlaceholderAttrTokenMap XML_TOK_PRESENTATIONPLACEHOLDER_WIDTH +xmloff/source/draw/sdxmlimp_impl.hxx:78 + enum SdXMLPresentationPlaceholderAttrTokenMap XML_TOK_PRESENTATIONPLACEHOLDER_HEIGHT +xmloff/source/style/DashStyle.cxx:46 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_DASH_NAME +xmloff/source/style/DashStyle.cxx:47 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_DASH_DISPLAY_NAME +xmloff/source/style/DashStyle.cxx:48 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_DASH_STYLE +xmloff/source/style/DashStyle.cxx:49 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_DASH_DOTS1 +xmloff/source/style/DashStyle.cxx:50 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_DASH_DOTS1LEN +xmloff/source/style/DashStyle.cxx:51 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_DASH_DOTS2 +xmloff/source/style/DashStyle.cxx:52 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_DASH_DOTS2LEN +xmloff/source/style/DashStyle.cxx:53 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_DASH_DISTANCE +xmloff/source/style/GradientStyle.cxx:52 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_STARTCOLOR +xmloff/source/style/GradientStyle.cxx:53 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_ENDCOLOR +xmloff/source/style/GradientStyle.cxx:54 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_STARTINT +xmloff/source/style/GradientStyle.cxx:55 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_ENDINT +xmloff/source/style/HatchStyle.cxx:46 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_HATCH_NAME +xmloff/source/style/HatchStyle.cxx:47 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_HATCH_DISPLAY_NAME +xmloff/source/style/HatchStyle.cxx:48 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_HATCH_STYLE +xmloff/source/style/HatchStyle.cxx:49 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_HATCH_COLOR +xmloff/source/style/HatchStyle.cxx:50 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_HATCH_DISTANCE +xmloff/source/style/HatchStyle.cxx:51 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_HATCH_ROTATION xmloff/source/style/HatchStyle.cxx:52 enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_TABSTOP_END +xmloff/source/style/ImageStyle.cxx:39 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_IMAGE_NAME +xmloff/source/style/ImageStyle.cxx:40 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_IMAGE_DISPLAY_NAME +xmloff/source/style/ImageStyle.cxx:41 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_IMAGE_URL +xmloff/source/style/ImageStyle.cxx:42 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_IMAGE_TYPE +xmloff/source/style/ImageStyle.cxx:43 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_IMAGE_SHOW +xmloff/source/style/ImageStyle.cxx:44 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_IMAGE_ACTUATE +xmloff/source/style/TransGradientStyle.cxx:47 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_NAME +xmloff/source/style/TransGradientStyle.cxx:48 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_DISPLAY_NAME +xmloff/source/style/TransGradientStyle.cxx:49 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_STYLE +xmloff/source/style/TransGradientStyle.cxx:50 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_CX +xmloff/source/style/TransGradientStyle.cxx:51 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_CY +xmloff/source/style/TransGradientStyle.cxx:52 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_START +xmloff/source/style/TransGradientStyle.cxx:53 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_END +xmloff/source/style/TransGradientStyle.cxx:54 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_ANGLE +xmloff/source/style/TransGradientStyle.cxx:55 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_GRADIENT_BORDER +xmloff/source/style/xmlnumi.cxx:108 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_LEVEL +xmloff/source/style/xmlnumi.cxx:109 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_STYLE_NAME +xmloff/source/style/xmlnumi.cxx:110 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_BULLET_CHAR +xmloff/source/style/xmlnumi.cxx:111 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_HREF +xmloff/source/style/xmlnumi.cxx:112 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_TYPE +xmloff/source/style/xmlnumi.cxx:113 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_SHOW +xmloff/source/style/xmlnumi.cxx:114 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_ACTUATE +xmloff/source/style/xmlnumi.cxx:115 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_NUM_FORMAT +xmloff/source/style/xmlnumi.cxx:116 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_NUM_PREFIX +xmloff/source/style/xmlnumi.cxx:117 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_NUM_SUFFIX +xmloff/source/style/xmlnumi.cxx:118 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_NUM_LETTER_SYNC +xmloff/source/style/xmlnumi.cxx:119 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_START_VALUE +xmloff/source/style/xmlnumi.cxx:120 + enum (anonymous namespace)::SvxXMLTextListLevelStyleAttrTokens XML_TOK_TEXT_LEVEL_ATTR_DISPLAY_LEVELS +xmloff/source/style/xmlnumi.cxx:562 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_SPACE_BEFORE +xmloff/source/style/xmlnumi.cxx:563 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_MIN_LABEL_WIDTH +xmloff/source/style/xmlnumi.cxx:564 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_MIN_LABEL_DIST +xmloff/source/style/xmlnumi.cxx:565 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_TEXT_ALIGN +xmloff/source/style/xmlnumi.cxx:566 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_FONT_NAME +xmloff/source/style/xmlnumi.cxx:567 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_FONT_FAMILY +xmloff/source/style/xmlnumi.cxx:568 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_FONT_FAMILY_GENERIC +xmloff/source/style/xmlnumi.cxx:569 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_FONT_STYLENAME +xmloff/source/style/xmlnumi.cxx:570 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_FONT_PITCH +xmloff/source/style/xmlnumi.cxx:571 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_FONT_CHARSET +xmloff/source/style/xmlnumi.cxx:572 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_VERTICAL_POS +xmloff/source/style/xmlnumi.cxx:573 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_VERTICAL_REL +xmloff/source/style/xmlnumi.cxx:574 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_WIDTH +xmloff/source/style/xmlnumi.cxx:575 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_HEIGHT +xmloff/source/style/xmlnumi.cxx:576 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_COLOR +xmloff/source/style/xmlnumi.cxx:577 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_WINDOW_FONT_COLOR +xmloff/source/style/xmlnumi.cxx:578 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_FONT_SIZE +xmloff/source/style/xmlnumi.cxx:579 + enum (anonymous namespace)::SvxXMLStyleAttributesAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_POSITION_AND_SPACE_MODE +xmloff/source/style/xmlnumi.cxx:843 + enum (anonymous namespace)::SvxXMLStyleAttributesLabelAlignmentAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_LABEL_FOLLOWED_BY +xmloff/source/style/xmlnumi.cxx:844 + enum (anonymous namespace)::SvxXMLStyleAttributesLabelAlignmentAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_LISTTAB_STOP_POSITION +xmloff/source/style/xmlnumi.cxx:845 + enum (anonymous namespace)::SvxXMLStyleAttributesLabelAlignmentAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_FIRST_LINE_INDENT +xmloff/source/style/xmlnumi.cxx:846 + enum (anonymous namespace)::SvxXMLStyleAttributesLabelAlignmentAttrTokens XML_TOK_STYLE_ATTRIBUTES_ATTR_INDENT_AT +xmloff/source/text/XMLTextColumnsContext.cxx:51 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_COLUMN_WIDTH +xmloff/source/text/XMLTextColumnsContext.cxx:52 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_COLUMN_MARGIN_LEFT +xmloff/source/text/XMLTextColumnsContext.cxx:53 + enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_COLUMN_MARGIN_RIGHT +xmloff/source/text/XMLTextColumnsContext.cxx:58 + enum (anonymous namespace)::SvXMLSepTokenMapAttrs XML_TOK_COLUMN_SEP_WIDTH +xmloff/source/text/XMLTextColumnsContext.cxx:59 + enum (anonymous namespace)::SvXMLSepTokenMapAttrs XML_TOK_COLUMN_SEP_HEIGHT +xmloff/source/text/XMLTextColumnsContext.cxx:60 + enum (anonymous namespace)::SvXMLSepTokenMapAttrs XML_TOK_COLUMN_SEP_COLOR +xmloff/source/text/XMLTextColumnsContext.cxx:61 + enum (anonymous namespace)::SvXMLSepTokenMapAttrs XML_TOK_COLUMN_SEP_ALIGN +xmloff/source/text/XMLTextColumnsContext.cxx:62 + enum (anonymous namespace)::SvXMLSepTokenMapAttrs XML_TOK_COLUMN_SEP_STYLE diff --git a/compilerplugins/clang/unusedenumconstants.writeonly.results b/compilerplugins/clang/unusedenumconstants.writeonly.results index 46c5cdcd7bc9..b8ff65f99e98 100644 --- a/compilerplugins/clang/unusedenumconstants.writeonly.results +++ b/compilerplugins/clang/unusedenumconstants.writeonly.results @@ -8,371 +8,373 @@ basctl/source/basicide/macrodlg.hxx:34 enum basctl::MacroExitCode Macro_New basctl/source/basicide/macrodlg.hxx:35 enum basctl::MacroExitCode Macro_Edit -basctl/source/inc/bastype2.hxx:41 +basctl/source/inc/bastype2.hxx:40 enum BrowseMode All -basctl/source/inc/dlged.hxx:100 +basctl/source/inc/dlged.hxx:99 enum basctl::DlgEditor::Mode SELECT +basctl/source/inc/dlgeddef.hxx:27 + enum basctl::(anonymous at /home/noel/libo/basctl/source/inc/dlgeddef.hxx:25:1) OBJ_DLG_CONTROL basctl/source/inc/dlgeddef.hxx:28 - enum basctl::(anonymous at /home/noel/libo2/basctl/source/inc/dlgeddef.hxx:26:1) OBJ_DLG_CONTROL -basctl/source/inc/dlgeddef.hxx:29 - enum basctl::(anonymous at /home/noel/libo2/basctl/source/inc/dlgeddef.hxx:26:1) OBJ_DLG_DIALOG -basctl/source/inc/layout.hxx:82 + enum basctl::(anonymous at /home/noel/libo/basctl/source/inc/dlgeddef.hxx:25:1) OBJ_DLG_DIALOG +basctl/source/inc/layout.hxx:81 enum basctl::Layout::SplittedSide::Side Bottom -basctl/source/inc/sbxitem.hxx:31 +basctl/source/inc/sbxitem.hxx:30 enum basctl::ItemType TYPE_SHELL -basctl/source/inc/sbxitem.hxx:32 +basctl/source/inc/sbxitem.hxx:31 enum basctl::ItemType TYPE_LIBRARY -basctl/source/inc/scriptdocument.hxx:47 +basctl/source/inc/scriptdocument.hxx:46 enum basctl::LibraryLocation LIBRARY_LOCATION_UNKNOWN basegfx/source/range/b2drangeclipper.cxx:150 enum basegfx::(anonymous namespace)::SweepLineEvent::EdgeType FINISHING_EDGE basegfx/source/range/b2drangeclipper.cxx:156 enum basegfx::(anonymous namespace)::SweepLineEvent::EdgeDirection PROCEED_UP basegfx/source/range/b2drangeclipper.cxx:791 - enum basegfx::(anonymous namespace)::(anonymous at /home/noel/libo2/basegfx/source/range/b2drangeclipper.cxx:791:9) PerformErase + enum basegfx::(anonymous namespace)::(anonymous at /home/noel/libo/basegfx/source/range/b2drangeclipper.cxx:791:9) NoErase basegfx/source/range/b2drangeclipper.cxx:791 - enum basegfx::(anonymous namespace)::(anonymous at /home/noel/libo2/basegfx/source/range/b2drangeclipper.cxx:791:9) NoErase -basic/source/inc/expr.hxx:62 + enum basegfx::(anonymous namespace)::(anonymous at /home/noel/libo/basegfx/source/range/b2drangeclipper.cxx:791:9) PerformErase +basic/source/inc/expr.hxx:61 enum SbiExprMode EXPRMODE_STANDARD -basic/source/inc/expr.hxx:79 +basic/source/inc/expr.hxx:78 enum SbiNodeType SbxDUMMY -basic/source/inc/expr.hxx:86 +basic/source/inc/expr.hxx:85 enum RecursiveMode PREVENT_CALL -basic/source/inc/image.hxx:34 +basic/source/inc/image.hxx:33 enum SbiImageFlags EXPLICIT -basic/source/inc/image.hxx:35 +basic/source/inc/image.hxx:34 enum SbiImageFlags COMPARETEXT -basic/source/inc/image.hxx:36 +basic/source/inc/image.hxx:35 enum SbiImageFlags INITCODE -basic/source/inc/image.hxx:37 +basic/source/inc/image.hxx:36 enum SbiImageFlags CLASSMODULE -basic/source/inc/iosys.hxx:38 +basic/source/inc/iosys.hxx:37 enum SbiStreamFlags Output -basic/source/inc/namecont.hxx:225 +basic/source/inc/namecont.hxx:224 enum basic::SfxLibraryContainer::InitMode LIBRARY_INIT_FILE -basic/source/inc/namecont.hxx:227 +basic/source/inc/namecont.hxx:226 enum basic::SfxLibraryContainer::InitMode OLD_BASIC_STORAGE -basic/source/runtime/methods.cxx:4355 - enum BasicResponse Ok basic/source/runtime/methods.cxx:4356 - enum BasicResponse Cancel + enum BasicResponse Ok basic/source/runtime/methods.cxx:4357 - enum BasicResponse Abort + enum BasicResponse Cancel basic/source/runtime/methods.cxx:4358 - enum BasicResponse Retry + enum BasicResponse Abort basic/source/runtime/methods.cxx:4359 - enum BasicResponse Ignore + enum BasicResponse Retry basic/source/runtime/methods.cxx:4360 - enum BasicResponse Yes + enum BasicResponse Ignore basic/source/runtime/methods.cxx:4361 + enum BasicResponse Yes +basic/source/runtime/methods.cxx:4362 enum BasicResponse No -binaryurp/source/cache.hxx:36 - enum binaryurp::cache::(anonymous at /home/noel/libo2/binaryurp/qa/../source/cache.hxx:36:1) size +binaryurp/source/cache.hxx:35 + enum binaryurp::cache::(anonymous at /home/noel/libo/binaryurp/qa/../source/cache.hxx:35:1) size canvas/inc/rendering/irendermodule.hxx:55 enum canvas::IRenderModule::PrimitiveType Triangle canvas/inc/rendering/irendermodule.hxx:56 enum canvas::IRenderModule::PrimitiveType Quad chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:67 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAX + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAX chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:68 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MIN chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:69 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPMAIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPMAIN chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:70 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:71 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP_COUNT + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP_COUNT chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:72 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MAX + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MAX chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:73 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MIN chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:74 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPMAIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPMAIN chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:75 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPHELP + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPHELP chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:76 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TYPE + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TYPE chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:77 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TIME_INCREMENT + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TIME_INCREMENT chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:78 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_EXPLICIT_TIME_INCREMENT + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_EXPLICIT_TIME_INCREMENT chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:79 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LOGARITHMIC + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LOGARITHMIC chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:80 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_REVERSEDIRECTION + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_REVERSEDIRECTION chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:81 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_VISIBLE + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_VISIBLE chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:82 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_POSITION + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_POSITION chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:83 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_VALUE + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_VALUE chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:84 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ORIGIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ORIGIN chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:85 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_ORIGIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_ORIGIN chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:86 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARKS + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARKS chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:87 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_HELPMARKS + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_HELPMARKS chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:88 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARK_POSITION + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARK_POSITION chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:89 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_LABELS + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_LABELS chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:90 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_NUMBERFORMAT + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_NUMBERFORMAT chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:91 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LINK_NUMBERFORMAT_TO_SOURCE + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LINK_NUMBERFORMAT_TO_SOURCE chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:92 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LABEL_POSITION + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LABEL_POSITION chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:93 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXT_ROTATION + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXT_ROTATION chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:94 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ARRANGE_ORDER + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ARRANGE_ORDER chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:95 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXTBREAK + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXTBREAK chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:96 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CAN_OVERLAP + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CAN_OVERLAP chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:97 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STACKEDTEXT + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STACKEDTEXT chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:98 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_OVERLAP + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_OVERLAP chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:99 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_GAP_WIDTH + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_GAP_WIDTH chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:100 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_UNITS + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_UNITS chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:101 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_BUILTINUNIT + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_BUILTINUNIT chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:102 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TRY_STAGGERING_FIRST + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TRY_STAGGERING_FIRST chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:103 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAJOR_ORIGIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAJOR_ORIGIN chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:133 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_HAS_MAIN_TITLE + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_HAS_MAIN_TITLE chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_HAS_SUB_TITLE + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_HAS_SUB_TITLE chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:135 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_HAS_LEGEND + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_HAS_LEGEND chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:136 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_LABELS_IN_FIRST_ROW + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_LABELS_IN_FIRST_ROW chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:137 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_LABELS_IN_FIRST_COLUMN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_LABELS_IN_FIRST_COLUMN chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_ADDIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_ADDIN chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:139 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_BASEDIAGRAM + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_BASEDIAGRAM chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:140 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_ADDITIONAL_SHAPES + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_ADDITIONAL_SHAPES chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:141 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_UPDATE_ADDIN + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_UPDATE_ADDIN chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:142 - enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_NULL_DATE + enum (anonymous namespace)::(anonymous at /home/noel/libo/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:131:1) PROP_DOCUMENT_NULL_DATE chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:143 ... etc. - the rest is truncated _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
