[Libreoffice-commits] core.git: compilerplugins/clang editeng/source include/editeng sd/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Nov 22 06:34:45 UTC 2018


 compilerplugins/clang/test/unusedenumconstants.cxx          |    6 
 compilerplugins/clang/unusedenumconstants.cxx               |   17 
 compilerplugins/clang/unusedenumconstants.py                |    6 
 compilerplugins/clang/unusedenumconstants.readonly.results  |  186 -
 compilerplugins/clang/unusedenumconstants.untouched.results |  364 ++
 compilerplugins/clang/unusedenumconstants.writeonly.results | 1800 +++---------
 editeng/source/editeng/editeng.cxx                          |   14 
 editeng/source/editeng/editstt2.hxx                         |    9 
 editeng/source/editeng/impedit2.cxx                         |    2 
 editeng/source/editeng/impedit3.cxx                         |   10 
 include/editeng/editstat.hxx                                |    6 
 sd/source/filter/ppt/pptin.cxx                              |    1 
 sd/source/ui/docshell/docshel4.cxx                          |    1 
 13 files changed, 1108 insertions(+), 1314 deletions(-)

New commits:
commit bab2753312c960c9eea610e927492775308fdfd5
Author:     Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Wed Nov 21 13:34:02 2018 +0200
Commit:     Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Thu Nov 22 07:34:15 2018 +0100

    loplugin:unusedenumconstants in EEControlBits
    
    (*) remove effectivly unused enum constants
    
    (*) tweak the plugins heuristics some more to remove false+ in this enum
    
    (*) twweak the python post-processing step to avoid a KeyError
    
    Change-Id: I2943ec94c00f71dcd049f5c9ef33db259c005ba3
    Reviewed-on: https://gerrit.libreoffice.org/63709
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/compilerplugins/clang/test/unusedenumconstants.cxx b/compilerplugins/clang/test/unusedenumconstants.cxx
index 3de1a65537e0..76027b8e8481 100644
--- a/compilerplugins/clang/test/unusedenumconstants.cxx
+++ b/compilerplugins/clang/test/unusedenumconstants.cxx
@@ -27,10 +27,12 @@ enum class BrowseMode
 {
     Modules = 0x01, // expected-error {{read Modules [loplugin:unusedenumconstants]}}
     Top = 0x02, // expected-error {{write Top [loplugin:unusedenumconstants]}}
+    Bottom = 0x04, // expected-error {{read Bottom [loplugin:unusedenumconstants]}}
+    Left = 0x04, // expected-error {{write Left [loplugin:unusedenumconstants]}}
 };
 namespace o3tl
 {
-template <> struct typed_flags<BrowseMode> : is_typed_flags<BrowseMode, 0x3>
+template <> struct typed_flags<BrowseMode> : is_typed_flags<BrowseMode, 0xf>
 {
 };
 }
@@ -42,6 +44,8 @@ int test2(BrowseMode nMode)
     g_flags |= BrowseMode::Top;
     return 0;
 }
+bool test2b(BrowseMode nMode) { return bool(nMode & BrowseMode::Bottom); }
+BrowseMode test2c() { return BrowseMode::Left; }
 
 enum class Enum3
 {
diff --git a/compilerplugins/clang/unusedenumconstants.cxx b/compilerplugins/clang/unusedenumconstants.cxx
index 74e9eb216da7..80f40d69a1a1 100644
--- a/compilerplugins/clang/unusedenumconstants.cxx
+++ b/compilerplugins/clang/unusedenumconstants.cxx
@@ -188,12 +188,21 @@ walk_up:
     }
     else if (const CXXMemberCallExpr * memberCall = dyn_cast<CXXMemberCallExpr>(parent))
     {
-        //memberCall->getImplicitObjectArgument()->dump();
-        //child->dump();
         // happens a lot with o3tl::typed_flags
         if (*memberCall->child_begin() == child)
-            goto walk_up;
-        bWrite = true;
+        {
+            if (auto conversionDecl = dyn_cast<CXXConversionDecl>(memberCall->getMethodDecl()))
+            {
+                if (conversionDecl->getConversionType()->isSpecificBuiltinType(clang::BuiltinType::Bool))
+                    bRead = true;
+                else
+                    goto walk_up;
+            }
+            else
+                goto walk_up;
+        }
+        else
+            bWrite = true;
     }
     else if (isa<CallExpr>(parent) || isa<InitListExpr>(parent) || isa<ArraySubscriptExpr>(parent)
              || isa<ReturnStmt>(parent) || isa<DeclStmt>(parent)
diff --git a/compilerplugins/clang/unusedenumconstants.py b/compilerplugins/clang/unusedenumconstants.py
index ded7f4f8b1aa..24cd0c6ded07 100755
--- a/compilerplugins/clang/unusedenumconstants.py
+++ b/compilerplugins/clang/unusedenumconstants.py
@@ -205,6 +205,9 @@ writeonlySet = set()
 for d in writeSet:
     if d in readSet:
         continue
+    # can happen with stuff in workdir or external
+    if d not in definitionSet:
+        continue
     srcLoc = definitionToSourceLocationMap[d];
     if (is_ignore(srcLoc)):
         continue
@@ -214,6 +217,9 @@ readonlySet = set()
 for d in readSet:
     if d in writeSet:
         continue
+    # can happen with stuff in workdir or external
+    if d not in definitionSet:
+        continue
     srcLoc = definitionToSourceLocationMap[d];
     if (is_ignore(srcLoc)):
         continue
diff --git a/compilerplugins/clang/unusedenumconstants.readonly.results b/compilerplugins/clang/unusedenumconstants.readonly.results
index be07890fdf83..cae51737565f 100644
--- a/compilerplugins/clang/unusedenumconstants.readonly.results
+++ b/compilerplugins/clang/unusedenumconstants.readonly.results
@@ -5,7 +5,7 @@ bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx:78
 bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx:79
     enum x86_64_reg_class X86_64_X87UP_CLASS
 chart2/source/inc/CharacterProperties.hxx:121
-    enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) FAST_PROPERTY_ID_END_CHAR_PROP
+    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
     enum chart::TitleHelper::eTitleType NORMAL_TITLE_END
 chart2/source/view/inc/ShapeFactory.hxx:50
@@ -39,15 +39,15 @@ chart2/source/view/inc/ShapeFactory.hxx:63
 chart2/source/view/inc/ShapeFactory.hxx:64
     enum chart::SymbolEnum Symbol_VerticalBar
 configmgr/source/access.hxx:455
-    enum configmgr::Access::(anonymous at /media/noel/disk2/libo6/configmgr/source/access.hxx:453:5) IS_GROUP_MEMBER
+    enum configmgr::Access::(anonymous at /home/noel/libo2/configmgr/source/access.hxx:453:5) IS_GROUP_MEMBER
 configmgr/source/access.hxx:455
-    enum configmgr::Access::(anonymous at /media/noel/disk2/libo6/configmgr/source/access.hxx:453:5) IS_SET_MEMBER
+    enum configmgr::Access::(anonymous at /home/noel/libo2/configmgr/source/access.hxx:453:5) IS_SET_MEMBER
 configmgr/source/parsemanager.hxx:47
-    enum configmgr::ParseManager::(anonymous at /media/noel/disk2/libo6/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_XS
+    enum configmgr::ParseManager::(anonymous at /home/noel/libo2/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_XS
 configmgr/source/parsemanager.hxx:47
-    enum configmgr::ParseManager::(anonymous at /media/noel/disk2/libo6/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_XSI
+    enum configmgr::ParseManager::(anonymous at /home/noel/libo2/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_OOR
 configmgr/source/parsemanager.hxx:47
-    enum configmgr::ParseManager::(anonymous at /media/noel/disk2/libo6/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_OOR
+    enum configmgr::ParseManager::(anonymous at /home/noel/libo2/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_XSI
 connectivity/source/drivers/evoab2/NConnection.hxx:41
     connectivity::evoab::SDBCAddress::sdbc_address_type Unknown
 cppcanvas/source/mtfrenderer/emfppen.cxx:53
@@ -82,6 +82,8 @@ dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:72
     enum dbaccess::OSingleSelectQueryComposer::EColumnType SelectColumns
 dbaccess/source/filter/xml/xmlEnums.hxx:140
     enum dbaxml::XMLQueryTable XML_TOK_UPDATE_TABLE
+dbaccess/source/ui/inc/sqlmessage.hxx:57
+    enum dbaui::MessBoxStyle DefaultCancel
 drawinglayer/source/tools/emfpbrush.hxx:37
     enum emfplushelper::EmfPlusHatchStyle HatchStyle05Percent
 drawinglayer/source/tools/emfpbrush.hxx:38
@@ -305,7 +307,11 @@ include/editeng/editeng.hxx:126
 include/editeng/editeng.hxx:127
     enum GetAttribsFlags PARAATTRIBS
 include/editeng/editstat.hxx:32
-    enum EEControlBits USEPARAATTRIBS
+    enum EEControlBits CRSRLEFTPARA
+include/editeng/editstat.hxx:49
+    enum EEControlBits AUTOCOMPLETE
+include/editeng/editstat.hxx:64
+    enum EVControlBits BIGSCROLL
 include/editeng/flditem.hxx:94
     enum SvxDateFormat System
 include/editeng/flditem.hxx:96
@@ -326,6 +332,8 @@ include/framework/framelistanalyzer.hxx:36
     enum FrameAnalyzerFlags Model
 include/framework/framelistanalyzer.hxx:41
     enum FrameAnalyzerFlags Zombie
+include/i18nutil/casefolding.hxx:39
+    enum MappingType CasedLetterMask
 include/i18nutil/casefolding.hxx:40
     enum MappingType NotValue
 include/LibreOfficeKit/LibreOfficeKitEnums.h:31
@@ -343,65 +351,67 @@ include/LibreOfficeKit/LibreOfficeKitEnums.h:630
 include/oox/core/filterbase.hxx:82
     enum oox::core::OoxmlVersion ISOIEC_29500_2008
 include/oox/ppt/animationspersist.hxx:37
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_TO
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_TO
 include/oox/ppt/animationspersist.hxx:38
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_FROM
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_USERDATA
 include/oox/ppt/animationspersist.hxx:38
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_USERDATA
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_ATTRIBUTENAME
 include/oox/ppt/animationspersist.hxx:38
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_BY
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_BY
 include/oox/ppt/animationspersist.hxx:38
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_ATTRIBUTENAME
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_FROM
 include/oox/ppt/animationspersist.hxx:39
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_DECELERATE
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_FILL
 include/oox/ppt/animationspersist.hxx:39
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_DURATION
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_ACCELERATION
 include/oox/ppt/animationspersist.hxx:39
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_AUTOREVERSE
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_AUTOREVERSE
 include/oox/ppt/animationspersist.hxx:39
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_ACCELERATION
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_DURATION
 include/oox/ppt/animationspersist.hxx:39
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_FILL
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_DECELERATE
 include/oox/ppt/animationspersist.hxx:40
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_REPEATDURATION
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_REPEATCOUNT
 include/oox/ppt/animationspersist.hxx:40
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_RESTART
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_RESTART
 include/oox/ppt/animationspersist.hxx:40
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_REPEATCOUNT
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_REPEATDURATION
 include/oox/ppt/animationspersist.hxx:41
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_COLORINTERPOLATION
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_DIRECTION
 include/oox/ppt/animationspersist.hxx:41
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_DIRECTION
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_CALCMODE
 include/oox/ppt/animationspersist.hxx:41
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_CALCMODE
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_COLORINTERPOLATION
 include/oox/ppt/animationspersist.hxx:41
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_TRANSFORMTYPE
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_TRANSFORMTYPE
 include/oox/ppt/animationspersist.hxx:42
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_PATH
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_PATH
 include/oox/ppt/animationspersist.hxx:43
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_ITERATEINTERVAL
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_ITERATETYPE
 include/oox/ppt/animationspersist.hxx:43
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_ITERATETYPE
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_ITERATEINTERVAL
 include/oox/ppt/animationspersist.hxx:44
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_COMMAND
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_PARAMETER
 include/oox/ppt/animationspersist.hxx:44
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_SUBITEM
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_SUBITEM
 include/oox/ppt/animationspersist.hxx:44
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_PARAMETER
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_COMMAND
 include/oox/ppt/animationspersist.hxx:44
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_TARGET
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_TARGET
 include/oox/ppt/animationspersist.hxx:45
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_VALUES
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_VALUES
 include/oox/ppt/animationspersist.hxx:45
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_KEYTIMES
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_DISPLAY
 include/oox/ppt/animationspersist.hxx:45
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_FORMULA
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_KEYTIMES
 include/oox/ppt/animationspersist.hxx:45
-    enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_DISPLAY
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_FORMULA
 include/sfx2/objsh.hxx:120
     enum SfxObjectShellFlags DONTCLOSE
 include/sfx2/objsh.hxx:121
     enum SfxObjectShellFlags NODOCINFO
+include/sfx2/viewsh.hxx:101
+    enum SfxViewShellFlags NO_SHOW
 include/store/types.h:65
     enum storeAccessMode ReadCreate
 include/svl/ctloptions.hxx:64
@@ -441,10 +451,10 @@ include/svl/languageoptions.hxx:74
 include/svl/lockfilecommon.hxx:34
     enum LockFileComponent OOOUSERNAME
 include/svl/lockfilecommon.hxx:34
-    enum LockFileComponent SYSUSERNAME
-include/svl/lockfilecommon.hxx:34
     enum LockFileComponent EDITTIME
 include/svl/lockfilecommon.hxx:34
+    enum LockFileComponent SYSUSERNAME
+include/svl/lockfilecommon.hxx:34
     enum LockFileComponent LOCALHOST
 include/svl/poolitem.hxx:89
     enum SfxItemState READONLY
@@ -470,6 +480,12 @@ include/svtools/headbar.hxx:189
     enum HeaderBarItemBits BOTTOM
 include/svtools/headbar.hxx:191
     enum HeaderBarItemBits RIGHTIMAGE
+include/svtools/ivctrl.hxx:43
+    enum SvxIconViewFlags CURSORED
+include/svtools/ivctrl.hxx:45
+    enum SvxIconViewFlags DROP_TARGET
+include/svtools/ivctrl.hxx:46
+    enum SvxIconViewFlags BLOCK_EMPHASIS
 include/svtools/ruler.hxx:506
     enum RulerBorderStyle Snap
 include/svtools/ruler.hxx:507
@@ -482,6 +498,10 @@ include/svx/EnhancedCustomShapeGeometry.hxx:47
     enum SvxMSDffHandleFlags MIRRORED_Y
 include/svx/EnhancedCustomShapeGeometry.hxx:50
     enum SvxMSDffHandleFlags MAP
+include/svx/EnhancedCustomShapeGeometry.hxx:56
+    enum SvxMSDffHandleFlags CENTER_X_IS_SPECIAL
+include/svx/EnhancedCustomShapeGeometry.hxx:57
+    enum SvxMSDffHandleFlags CENTER_Y_IS_SPECIAL
 include/svx/flagsdef.hxx:111
     enum TabulatorDisableFlags TypeRight
 include/svx/flagsdef.hxx:112
@@ -508,6 +528,8 @@ include/svx/langbox.hxx:45
     enum SvxLanguageListFlags HYPH_USED
 include/svx/langbox.hxx:46
     enum SvxLanguageListFlags THES_USED
+include/svx/langbox.hxx:47
+    enum SvxLanguageListFlags ALSO_PRIMARY_ONLY
 include/svx/ruler.hxx:60
     enum SvxRulerDragFlags OBJECT_LEFT_INDENT_ONLY
 include/svx/sdtakitm.hxx:31
@@ -520,6 +542,12 @@ include/svx/svdmrkv.hxx:42
     enum SdrSearchOptions WITHTEXT
 include/svx/svdmrkv.hxx:43
     enum SdrSearchOptions TESTTEXTAREA
+include/svx/svdmrkv.hxx:44
+    enum SdrSearchOptions BACKWARD
+include/svx/svdmrkv.hxx:47
+    enum SdrSearchOptions PASS3NEAREST
+include/svx/svdograf.hxx:52
+    enum SdrGrafObjTransformsAttrs ROTATE
 include/svx/swframeposstrings.hxx:78
     enum SvxSwFramePosString::StringId STR_MAX
 include/svx/swframetypes.hxx:41
@@ -530,6 +558,8 @@ include/tools/inetmsg.hxx:70
     enum InetMessageMime NUMHDR
 include/tools/poly.hxx:34
     enum PolyOptimizeFlags OPEN
+include/tools/poly.hxx:37
+    enum PolyOptimizeFlags REDUCE
 include/unotools/fontcfg.hxx:51
     enum ImplFontAttrs Default
 include/unotools/fontcfg.hxx:52
@@ -560,9 +590,9 @@ include/unotools/fontdefs.hxx:71
     enum DefaultFontType LATIN_FIXED
 include/unotools/fontdefs.hxx:81
     enum DefaultFontType CTL_DISPLAY
-include/vcl/bitmap.hxx:64
+include/vcl/bitmap.hxx:65
     enum BmpDitherFlags Matrix
-include/vcl/bitmap.hxx:66
+include/vcl/bitmap.hxx:67
     enum BmpDitherFlags Floyd16
 include/vcl/decoview.hxx:87
     enum DrawButtonFlags NoFill
@@ -876,11 +906,15 @@ include/vcl/keycod.hxx:32
     enum KeyFuncType REDO
 include/vcl/keycod.hxx:32
     enum KeyFuncType REPEAT
-include/vcl/menu.hxx:74
-    enum PopupMenuFlags ExecuteUp
+include/vcl/keycodes.hxx:173
+    enum ModKeyFlags Mod1Msk
+include/vcl/keycodes.hxx:174
+    enum ModKeyFlags Mod2Msk
 include/vcl/menu.hxx:75
+    enum PopupMenuFlags ExecuteUp
+include/vcl/menu.hxx:76
     enum PopupMenuFlags ExecuteLeft
-include/vcl/menu.hxx:83
+include/vcl/menu.hxx:84
     enum PopupMenuFlags NoHorzPlacement
 include/vcl/outdev.hxx:142
     enum SalLayoutFlags EnableLigatures
@@ -900,6 +934,10 @@ include/vcl/outdev.hxx:230
     enum DrawModeFlags GhostedLine
 include/vcl/outdev.hxx:232
     enum DrawModeFlags GhostedText
+include/vcl/outdev.hxx:233
+    enum DrawModeFlags GhostedBitmap
+include/vcl/outdev.hxx:234
+    enum DrawModeFlags GhostedGradient
 include/vcl/pdfwriter.hxx:110
     enum vcl::PDFWriter::PDFVersion PDF_1_3
 include/vcl/pdfwriter.hxx:110
@@ -943,20 +981,20 @@ include/vcl/pdfwriter.hxx:171
 include/vcl/pdfwriter.hxx:173
     enum vcl::PDFWriter::StructAttributeValue Normal
 include/vcl/pdfwriter.hxx:177
-    enum vcl::PDFWriter::StructAttributeValue LowerAlpha
+    enum vcl::PDFWriter::StructAttributeValue UpperRoman
+include/vcl/pdfwriter.hxx:177
+    enum vcl::PDFWriter::StructAttributeValue Square
 include/vcl/pdfwriter.hxx:177
     enum vcl::PDFWriter::StructAttributeValue Circle
 include/vcl/pdfwriter.hxx:177
     enum vcl::PDFWriter::StructAttributeValue Disc
 include/vcl/pdfwriter.hxx:177
-    enum vcl::PDFWriter::StructAttributeValue Square
+    enum vcl::PDFWriter::StructAttributeValue LowerAlpha
 include/vcl/pdfwriter.hxx:177
     enum vcl::PDFWriter::StructAttributeValue UpperAlpha
 include/vcl/pdfwriter.hxx:177
     enum vcl::PDFWriter::StructAttributeValue LowerRoman
 include/vcl/pdfwriter.hxx:177
-    enum vcl::PDFWriter::StructAttributeValue UpperRoman
-include/vcl/pdfwriter.hxx:177
     enum vcl::PDFWriter::StructAttributeValue Decimal
 include/vcl/prntypes.hxx:38
     enum PrintQueueFlags Ready
@@ -1034,6 +1072,8 @@ include/vcl/salctype.hxx:41
     enum ConvertDataFormat PDF
 include/vcl/splitwin.hxx:37
     enum SplitWindowItemFlags Invisible
+include/vcl/treelistentry.hxx:38
+    enum SvTLEntryFlags IN_USE
 include/vcl/vclenum.hxx:37
     enum MenuItemBits POPUPSELECT
 include/vcl/vclenum.hxx:143
@@ -1066,8 +1106,16 @@ include/vcl/window.hxx:303
     enum StartTrackingFlags MouseButtonDown
 include/vcl/window.hxx:304
     enum StartTrackingFlags FocusCancel
+include/vcl/window.hxx:373
+    enum DrawFlags NoBorder
+include/vcl/window.hxx:375
+    enum DrawFlags NoDisable
 include/vcl/window.hxx:376
     enum DrawFlags NoMnemonic
+include/vcl/window.hxx:377
+    enum DrawFlags NoSelection
+include/vcl/window.hxx:378
+    enum DrawFlags NoBackground
 include/vcl/wrkwin.hxx:37
     enum PresentationFlags NoFullScreen
 include/vcl/wrkwin.hxx:38
@@ -1078,14 +1126,18 @@ include/xmloff/shapeexport.hxx:54
     enum XMLShapeExportFlags HEIGHT
 include/xmloff/xmlexppr.hxx:35
     enum SvXmlExportFlags DEFAULTS
+include/xmloff/xmlexppr.hxx:36
+    enum SvXmlExportFlags DEEP
 include/xmloff/xmlexppr.hxx:38
     enum SvXmlExportFlags EMPTY
 include/xmloff/xmlimp.hxx:108
     enum SvXMLImportFlags EMBEDDED
 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:19
+    enum ConfigurationChangedHint TWO
 oox/source/dump/dffdumper.cxx:157
     enum oox::dump::(anonymous namespace)::PropType PROPTYPE_COLORARRAY
 oox/source/dump/dffdumper.cxx:157
@@ -1114,6 +1166,8 @@ sc/inc/token.hxx:213
     enum ScTableRefToken::Item HEADERS_DATA
 sc/inc/token.hxx:214
     enum ScTableRefToken::Item DATA_TOTALS
+sc/inc/types.hxx:38
+    enum ScMatValType NonvalueMask
 sc/inc/types.hxx:56
     enum ScFormulaVectorState FormulaVectorDisabledNotInSoftwareSubset
 sc/inc/types.hxx:123
@@ -1124,6 +1178,8 @@ sc/source/filter/inc/unitconverter.hxx:44
     enum oox::xls::Unit UNIT_REFDEVY
 sc/source/filter/lotus/lotread.cxx:41
     enum STATE S_WK1
+sc/source/filter/oox/formulabase.cxx:63
+    enum FuncFlags BIFFIMPORTONLY
 sc/source/ui/inc/undobase.hxx:135
     enum ScMoveUndoMode SC_UNDO_REFFIRST
 sc/source/ui/inc/viewdata.hxx:43
@@ -1171,11 +1227,11 @@ scaddins/source/pricing/pricing.hxx:55
 sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx:40
     enum sd::slidesorter::cache::RequestPriorityClass MAX_CLASS
 slideshow/source/engine/shapes/viewshape.hxx:279
-    enum slideshow::internal::ViewShape::(anonymous at /media/noel/disk2/libo6/slideshow/source/engine/shapes/viewshape.hxx:279:13) MAX_RENDER_CACHE_ENTRIES
+    enum slideshow::internal::ViewShape::(anonymous at /home/noel/libo2/slideshow/source/engine/shapes/viewshape.hxx:279:13) MAX_RENDER_CACHE_ENTRIES
 slideshow/source/engine/slideview.cxx:249
-    enum slideshow::internal::(anonymous namespace)::LayerSpriteContainer::(anonymous at /media/noel/disk2/libo6/slideshow/source/engine/slideview.cxx:249:5) SPRITE_ULLAGE
+    enum slideshow::internal::(anonymous namespace)::LayerSpriteContainer::(anonymous at /home/noel/libo2/slideshow/source/engine/slideview.cxx:249:5) SPRITE_ULLAGE
 slideshow/source/engine/slideview.cxx:729
-    enum slideshow::internal::(anonymous namespace)::SlideView::(anonymous at /media/noel/disk2/libo6/slideshow/source/engine/slideview.cxx:729:5) LAYER_ULLAGE
+    enum slideshow::internal::(anonymous namespace)::SlideView::(anonymous at /home/noel/libo2/slideshow/source/engine/slideview.cxx:729:5) LAYER_ULLAGE
 slideshow/source/inc/doctreenode.hxx:52
     enum slideshow::internal::DocTreeNode::NodeType Invalid
 soltools/cpp/cpp.h:42
@@ -1238,7 +1294,7 @@ svl/source/numbers/zformat.cxx:385
     enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM18
 svl/source/numbers/zformat.cxx:386
     enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM19
-svtools/source/contnr/fileview.cxx:109
+svtools/source/contnr/fileview.cxx:110
     enum FileViewFlags SHOW_ONLYTITLE
 svx/inc/galbrws2.hxx:53
     enum GalleryItemFlags ThemeName
@@ -1252,6 +1308,8 @@ svx/source/inc/docrecovery.hxx:93
     enum EDocStates Incomplete
 svx/source/inc/docrecovery.hxx:95
     enum EDocStates Succeeded
+sw/inc/accmap.hxx:75
+    enum AccessibleStates OPAQUE
 sw/inc/dbmgr.hxx:485
     enum sw::DBConnURIType MSJET
 sw/inc/dbmgr.hxx:486
@@ -1268,6 +1326,8 @@ sw/inc/docufld.hxx:114
     enum SwExtUserSubType EU_APARTMENT
 sw/inc/IDocumentRedlineAccess.hxx:57
     enum RedlineFlags IgnoreDeleteRedlines
+sw/inc/ndtyp.hxx:42
+    enum SwNodeType ContentMask
 sw/inc/poolfmt.hxx:116
     enum RES_POOL_CHRFMT_TYPE RES_POOLCHR_LABEL
 sw/inc/poolfmt.hxx:117
@@ -1382,6 +1442,8 @@ sw/inc/poolfmt.hxx:422
     enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_DOC_TITEL
 sw/inc/reffld.hxx:38
     enum REFERENCESUBTYPE REF_OUTLINE
+sw/inc/tblenum.hxx:37
+    enum TableChgWidthHeightType InsertDeleteMode
 sw/inc/undobj.hxx:134
     enum DelContentType Fly
 sw/inc/undobj.hxx:135
@@ -1407,13 +1469,15 @@ sw/source/core/inc/SwXMLBlockImport.hxx:108
 sw/source/core/text/pormulti.hxx:50
     enum RubyPosition RIGHT
 sw/source/core/unocore/unosett.cxx:1578
-    enum (anonymous at /media/noel/disk2/libo6/sw/source/core/unocore/unosett.cxx:1577:5) NotInChapterFirst
+    enum (anonymous at /home/noel/libo2/sw/source/core/unocore/unosett.cxx:1577:5) NotInChapterFirst
 sw/source/core/unocore/unosett.cxx:1579
-    enum (anonymous at /media/noel/disk2/libo6/sw/source/core/unocore/unosett.cxx:1577:5) NotInChapterLast
+    enum (anonymous at /home/noel/libo2/sw/source/core/unocore/unosett.cxx:1577:5) NotInChapterLast
 sw/source/core/unocore/unosett.cxx:1580
-    enum (anonymous at /media/noel/disk2/libo6/sw/source/core/unocore/unosett.cxx:1577:5) InChapterFirst
+    enum (anonymous at /home/noel/libo2/sw/source/core/unocore/unosett.cxx:1577:5) InChapterFirst
 sw/source/core/unocore/unosett.cxx:1581
-    enum (anonymous at /media/noel/disk2/libo6/sw/source/core/unocore/unosett.cxx:1577:5) InChapterLast
+    enum (anonymous at /home/noel/libo2/sw/source/core/unocore/unosett.cxx:1577:5) InChapterLast
+sw/source/filter/html/css1atr.cxx:114
+    enum Css1FrameSize VarHeight
 sw/source/filter/html/css1atr.cxx:117
     enum Css1FrameSize AnyHeight
 sw/source/filter/ww8/ww8scan.hxx:604
@@ -1426,14 +1490,22 @@ sw/source/uibase/inc/envimg.hxx:33
     enum SwEnvAlign ENV_VER_LEFT
 sw/source/uibase/inc/envimg.hxx:34
     enum SwEnvAlign ENV_VER_CNTR
+sw/source/uibase/inc/numberingtypelistbox.hxx:32
+    enum SwInsertNumTypes PageStyleNumbering
+sw/source/uibase/inc/numberingtypelistbox.hxx:33
+    enum SwInsertNumTypes Bitmap
+sw/source/uibase/inc/numberingtypelistbox.hxx:34
+    enum SwInsertNumTypes Bullet
 tools/source/generic/poly.cxx:1122
-    enum (anonymous at /media/noel/disk2/libo6/tools/source/generic/poly.cxx:1122:5) maxRecursionDepth
+    enum (anonymous at /home/noel/libo2/tools/source/generic/poly.cxx:1122:5) maxRecursionDepth
 ucbhelper/source/client/proxydecider.cxx:119
     enum ucbhelper::proxydecider_impl::InternetProxyDecider_Impl::ProxyType Automatic
 uui/source/logindlg.hxx:29
     enum LoginFlags NoUsername
 uui/source/logindlg.hxx:30
     enum LoginFlags NoPassword
+vcl/inc/fontsubset.hxx:41
+    enum FontType ANY_TYPE1
 vcl/inc/salptype.hxx:45
     enum SalPrinterError Abort
 vcl/source/gdi/CommonSalLayout.cxx:128
diff --git a/compilerplugins/clang/unusedenumconstants.untouched.results b/compilerplugins/clang/unusedenumconstants.untouched.results
index d31d48928b5a..1bc5f5f600d5 100644
--- a/compilerplugins/clang/unusedenumconstants.untouched.results
+++ b/compilerplugins/clang/unusedenumconstants.untouched.results
@@ -1,3 +1,23 @@
+canvas/source/cairo/cairo_canvashelper.hxx:216
+    enum cairocanvas::CanvasHelper::ColorType IGNORE_COLOR
+canvas/source/cairo/cairo_canvashelper.hxx:216
+    enum cairocanvas::CanvasHelper::ColorType TEXT_COLOR
+canvas/source/cairo/cairo_canvashelper.hxx:216
+    enum cairocanvas::CanvasHelper::ColorType LINE_COLOR
+canvas/source/cairo/cairo_canvashelper.hxx:216
+    enum cairocanvas::CanvasHelper::ColorType FILL_COLOR
+cui/source/inc/hldoctp.hxx:54
+    enum SvxHyperlinkDocTp::EPathType Type_Unknown
+cui/source/inc/hldoctp.hxx:55
+    enum SvxHyperlinkDocTp::EPathType Type_File
+cui/source/inc/hldoctp.hxx:56
+    enum SvxHyperlinkDocTp::EPathType Type_ExistsDir
+cui/source/inc/hldoctp.hxx:56
+    enum SvxHyperlinkDocTp::EPathType Type_Dir
+dbaccess/source/core/api/query.hxx:66
+    enum dbaccess::OQuery::AGGREGATE_ACTION FLUSHING
+dbaccess/source/core/inc/querycontainer.hxx:72
+    enum dbaccess::OQueryContainer::AGGREGATE_ACTION FLUSHING
 drawinglayer/source/tools/emfpbrush.hxx:32
     enum emfplushelper::EmfPlusHatchStyle HatchStyleVertical
 drawinglayer/source/tools/emfpbrush.hxx:33
@@ -80,10 +100,58 @@ drawinglayer/source/tools/emfpbrush.hxx:83
     enum emfplushelper::EmfPlusHatchStyle HatchStyleSolidDiamond
 drawinglayer/source/tools/emfpimage.hxx:31
     emfplushelper::ImageDataType ImageDataTypeUnknown
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:28
+    enum BrushStyle BRUSH_NULL
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:28
+    enum BrushStyle BRUSH_HORZ
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:28
+    enum BrushStyle BRUSH_VERT
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:28
+    enum BrushStyle BRUSH_SOLID
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:29
+    enum BrushStyle BRUSH_CROSS
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:29
+    enum BrushStyle BRUSH_DIAGCROSS
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:29
+    enum BrushStyle BRUSH_DOWNDIAG
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:29
+    enum BrushStyle BRUSH_UPDIAG
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:30
+    enum BrushStyle BRUSH_75
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:30
+    enum BrushStyle BRUSH_25
+filter/source/graphicfilter/idxf/dxf2mtf.hxx:30
+    enum BrushStyle BRUSH_50
+filter/source/graphicfilter/ipict/ipict.cxx:71
+    enum PictReaderInternal::Pattern::BrushStyle BRUSH_NULL
+filter/source/msfilter/eschesdo.hxx:29
+    enum ImplEESdrPageType NORMAL
+filter/source/msfilter/eschesdo.hxx:29
+    enum ImplEESdrPageType UNDEFINED
+filter/source/msfilter/eschesdo.hxx:29
+    enum ImplEESdrPageType NOTICE
+filter/source/msfilter/eschesdo.hxx:29
+    enum ImplEESdrPageType MASTER
+include/canvas/spriteredrawmanager.hxx:145
+    enum canvas::SpriteRedrawManager::SpriteChangeRecord::ChangeType none
 include/connectivity/dbtools.hxx:822
     enum connectivity::dbase::DBFType dBaseIVMemo
+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_SECOND_OFFICE
+include/desktop/exithelper.h:27
+    enum EExitCodes EXITHELPER_SECOND_OFFICE
+include/desktop/exithelper.h:29
+    int EXITHELPER_FATAL_ERROR
 include/editeng/borderline.hxx:128
     enum SvxBorderLineStyle BORDER_LINE_STYLE_MAX
+include/editeng/editdata.hxx:41
+    enum EESpellState LanguageNotInstalled
+include/formula/formula.hxx:52
+    enum formula::FormulaDlgMode FORMULA_FORMDLG_ARGS
 include/i18nutil/transliteration.hxx:45
     enum TransliterationFlags NumToTextLower_zh_CN
 include/i18nutil/transliteration.hxx:47
@@ -108,18 +176,238 @@ include/oox/ole/axfontdata.hxx:39
     enum AxFontFlags Disabled
 include/oox/ole/axfontdata.hxx:40
     enum AxFontFlags AutoColor
+include/oox/ppt/animationspersist.hxx:43
+    enum oox::ppt::(anonymous at /home/noel/libo2/include/oox/ppt/animationspersist.hxx:36:5) NP_ENDSYNC
+include/svx/nbdtmg.hxx:40
+    enum svx::sidebar::NBType Bullets
+include/svx/nbdtmg.hxx:40
+    enum svx::sidebar::NBType GraphicBullets
+include/svx/xenum.hxx:27
+    enum XBitmapType Import
+include/svx/xenum.hxx:27
+    enum XBitmapType N8x8
 include/unotools/eventcfg.hxx:29
     enum GlobalEventId STARTAPP
 include/unotools/eventcfg.hxx:30
     enum GlobalEventId CLOSEAPP
+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::sdb::XSingleSelectQueryComposer, 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::sdbc::XPreparedStatement, 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 CLOSE
+include/vcl/keycod.hxx:30
+    enum KeyFuncType PRINT
+include/vcl/keycod.hxx:30
+    enum KeyFuncType QUIT
+include/vcl/keycod.hxx:32
+    enum KeyFuncType FIND
+include/vcl/keycod.hxx:33
+    enum KeyFuncType PROPERTIES
+include/vcl/keycod.hxx:33
+    enum KeyFuncType FINDBACKWARD
+include/vcl/pdfwriter.hxx:201
+    enum vcl::PDFWriter::WidgetState Up
+include/vcl/pdfwriter.hxx:201
+    enum vcl::PDFWriter::WidgetState Down
 include/vcl/syswin.hxx:54
     enum WindowStateState FullScreen
+include/vcl/vclenum.hxx:191
+    enum FontAutoHint DontKnow
+include/vcl/vclenum.hxx:191
+    enum FontAutoHint Yes
+include/vcl/vclenum.hxx:191
+    enum FontAutoHint No
+include/vcl/vclenum.hxx:193
+    enum FontHinting DontKnow
+include/vcl/vclenum.hxx:193
+    enum FontHinting No
+include/vcl/vclenum.hxx:193
+    enum FontHinting Yes
+include/vcl/vclenum.hxx:195
+    enum FontHintStyle Slight
+include/vcl/vclenum.hxx:195
+    enum FontHintStyle Medium
+include/vcl/vclenum.hxx:195
+    enum FontHintStyle Full
+l10ntools/inc/export.hxx:63
+    enum IdLevel Identifier
+l10ntools/inc/export.hxx:63
+    enum IdLevel Null
+l10ntools/inc/export.hxx:63
+    enum IdLevel Text
+l10ntools/inc/export.hxx:85
+    enum ExportListType Filter
+l10ntools/inc/export.hxx:85
+    enum ExportListType String
+l10ntools/inc/export.hxx:85
+    enum ExportListType Item
+l10ntools/inc/export.hxx:85
+    enum ExportListType Paired
+l10ntools/inc/export.hxx:89
+    enum StringType QuickHelpText
+l10ntools/inc/export.hxx:89
+    enum StringType Text
+l10ntools/inc/export.hxx:89
+    enum StringType Title
 libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:61
-    enum (anonymous at /media/noel/disk2/libo6/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:59:1) PROP_0
+    enum (anonymous at /home/noel/libo2/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:59:1) PROP_0
 libreofficekit/source/gtk/lokdocview.cxx:287
-    enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:285:1) PROP_0
+    enum (anonymous at /home/noel/libo2/libreofficekit/source/gtk/lokdocview.cxx:285:1) PROP_0
+linguistic/source/defs.hxx:85
+    enum LinguDispatcher::DspType DSP_GRAMMAR
+linguistic/source/defs.hxx:85
+    enum LinguDispatcher::DspType DSP_THES
+linguistic/source/defs.hxx:85
+    enum LinguDispatcher::DspType DSP_HYPH
+linguistic/source/defs.hxx:85
+    enum LinguDispatcher::DspType DSP_SPELL
+reportdesign/source/ui/inc/ReportDefines.hxx:24
+    enum rptui::DlgEdMode Test
+sax/source/fastparser/fastparser.cxx:80
+    enum (anonymous namespace)::CallbackType INVALID
+sc/inc/filter.hxx:43
+    enum ExportFormatLotus ExpWK4
+sc/inc/filter.hxx:43
+    enum ExportFormatLotus ExpWK1
+sc/inc/filter.hxx:43
+    enum ExportFormatLotus ExpWK3
+sc/inc/filter.hxx:44
+    enum ExportFormatExcel ExpBiff4W
+sc/inc/filter.hxx:44
+    enum ExportFormatExcel ExpBiff4
+sc/inc/filter.hxx:44
+    enum ExportFormatExcel ExpBiff3
+sc/inc/filter.hxx:44
+    enum ExportFormatExcel ExpBiff2
+sc/inc/filter.hxx:44
+    enum ExportFormatExcel Exp2007Xml
+sc/inc/scmatrix.hxx:130
+    enum ScMatrix::Op Div
+sc/inc/scmatrix.hxx:130
+    enum ScMatrix::Op Add
+sc/inc/scmatrix.hxx:130
+    enum ScMatrix::Op Sub
+sc/source/core/inc/doubleref.hxx:41
+    enum ScDBRangeBase::RefType EXTERNAL
+sc/source/core/inc/doubleref.hxx:41
+    enum ScDBRangeBase::RefType INTERNAL
+sc/source/filter/excel/xiescher.cxx:460
+    enum (anonymous at /home/noel/libo2/sc/source/filter/excel/xiescher.cxx:460:17) eCreateFromOffice
+sc/source/filter/inc/decl.h:24
+    enum WKTYP eWK4
+sc/source/ui/inc/anyrefdg.hxx:192
+    enum ScRefHdlrImpl<class ScValidationDlg, class SfxTabDialog, false>::(anonymous at /home/noel/libo2/sc/source/ui/inc/anyrefdg.hxx:192:5) SLOTID
+sc/source/ui/inc/anyrefdg.hxx:192
+    enum ScRefHdlrImpl::(anonymous at /home/noel/libo2/sc/source/ui/inc/anyrefdg.hxx:192:5) SLOTID
+sc/source/ui/inc/autofmt.hxx:33
+    enum AutoFmtLine BOTTOM_LINE
+sc/source/ui/inc/autofmt.hxx:33
+    enum AutoFmtLine LEFT_LINE
+sc/source/ui/inc/autofmt.hxx:33
+    enum AutoFmtLine RIGHT_LINE
+sc/source/ui/inc/autofmt.hxx:33
+    enum AutoFmtLine TOP_LINE
 sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:105
     enum (anonymous namespace)::ScRegType LINEAR
+sd/inc/CustomAnimationEffect.hxx:212
+    enum sd::ESequenceHint EFFECT_ADDED
+sd/inc/CustomAnimationEffect.hxx:212
+    enum sd::ESequenceHint EFFECT_REMOVED
+sd/inc/CustomAnimationEffect.hxx:212
+    enum sd::ESequenceHint EFFECT_EDITED
+sd/inc/Outliner.hxx:185
+    enum SdOutliner::ChangeHint CH_VIEW_SHELL_VALID
+sd/inc/Outliner.hxx:185
+    enum SdOutliner::ChangeHint CH_VIEW_SHELL_INVALID
+sd/inc/sdenumdef.hxx:23
+    enum OutputType OUTPUT_PAGE
+sd/inc/sdenumdef.hxx:23
+    enum OutputType OUTPUT_ORIGINAL
+sd/inc/sdenumdef.hxx:23
+    enum OutputType OUTPUT_SLIDE
+sd/inc/sdenumdef.hxx:23
+    enum OutputType OUTPUT_OVERHEAD
+sd/inc/sdenumdef.hxx:23
+    enum OutputType OUTPUT_WIDESCREEN
+sd/inc/sdenumdef.hxx:23
+    enum OutputType OUTPUT_PRESENTATION
+sd/inc/sdenumdef.hxx:24
+    enum StartType ST_EMPTY
+sd/inc/sdenumdef.hxx:24
+    enum StartType ST_TEMPLATE
+sd/inc/sdenumdef.hxx:24
+    enum StartType ST_OPEN
+sd/source/ui/inc/RemoteServer.hxx:42
+    enum sd::ClientInfo::PROTOCOL NETWORK
+sd/source/ui/inc/RemoteServer.hxx:42
+    enum sd::ClientInfo::PROTOCOL BLUETOOTH
+sd/source/ui/slidesorter/inc/view/SlsInsertAnimator.hxx:45
+    enum sd::slidesorter::view::InsertAnimator::ResetMode RM_AbortAnimations
+sd/source/ui/slidesorter/inc/view/SlsInsertAnimator.hxx:45
+    enum sd::slidesorter::view::InsertAnimator::ResetMode RM_Normal
+sdext/source/pdfimport/inc/pdfiprocessor.hxx:74
+    enum pdfi::PDFIProcessor::DocumentTextDirecion TbLr
+sdext/source/pdfimport/inc/pdfiprocessor.hxx:74
+    enum pdfi::PDFIProcessor::DocumentTextDirecion LrTb
+sdext/source/pdfimport/inc/pdfiprocessor.hxx:74
+    enum pdfi::PDFIProcessor::DocumentTextDirecion RlTb
+sdext/source/presenter/PresenterPaneBorderPainter.cxx:93
+    enum sdext::presenter::(anonymous namespace)::RendererPaneStyle::Side Left
+sdext/source/presenter/PresenterPaneBorderPainter.cxx:93
+    enum sdext::presenter::(anonymous namespace)::RendererPaneStyle::Side Top
+sdext/source/presenter/PresenterPaneBorderPainter.cxx:93
+    enum sdext::presenter::(anonymous namespace)::RendererPaneStyle::Side Right
+sdext/source/presenter/PresenterPaneBorderPainter.cxx:93
+    enum sdext::presenter::(anonymous namespace)::RendererPaneStyle::Side Bottom
+sfx2/source/dialog/securitypage.cxx:48
+    enum (anonymous namespace)::RedlineFunc RF_ON
+sfx2/source/dialog/securitypage.cxx:48
+    enum (anonymous namespace)::RedlineFunc RF_PROTECT
+soltools/cpp/_lex.c:61
+    int SLASH1
+soltools/cpp/cpp.h:49
+    int IDENT
+starmath/inc/token.hxx:74
+    enum SmTokenType TMATFORM
+starmath/inc/token.hxx:87
+    enum SmTokenType TPOINT
+starmath/inc/token.hxx:94
+    enum SmTokenType TTOP
+starmath/inc/token.hxx:96
+    enum SmTokenType TNDIBVIDES
+svx/inc/sxmkitm.hxx:25
+    enum SdrMeasureKind SDRMEASURE_RADIUS
+sw/inc/docary.hxx:74
+    enum SwVectorModifyBase<class SwNumRule *>::DestructorPolicy KeepElements
+sw/inc/docary.hxx:74
+    enum SwVectorModifyBase<class SwSectionFormat *>::DestructorPolicy KeepElements
+sw/inc/docary.hxx:74
+    enum SwVectorModifyBase<class SwTOXType *>::DestructorPolicy KeepElements
+sw/inc/docary.hxx:74
+    enum SwVectorModifyBase<class SwFieldType *>::DestructorPolicy KeepElements
+sw/inc/docary.hxx:74
+    enum SwVectorModifyBase<class SwCharFormat *>::DestructorPolicy KeepElements
+sw/inc/docary.hxx:74
+    enum SwVectorModifyBase::DestructorPolicy KeepElements
+sw/inc/docary.hxx:75
+    enum SwVectorModifyBase::DestructorPolicy FreeElements
 sw/inc/poolfmt.hxx:96
     enum RES_POOLFMT RES_POOL_CHRFMT
 sw/inc/poolfmt.hxx:97
@@ -184,18 +472,48 @@ sw/inc/poolfmt.hxx:233
     enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_SIMPLE_GRID_ROWS
 sw/inc/poolfmt.hxx:234
     enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_SIMPLE_LIST_SHADED
-sw/source/ui/fldui/fldref.cxx:756
+sw/inc/tblafmt.hxx:286
+    enum SwTableAutoFormat::UpdateFlags UPDATE_ALL
+sw/source/core/inc/txtfly.hxx:42
+    enum PAGESIDE RIGHT_SIDE
+sw/source/core/inc/txtfly.hxx:42
+    enum PAGESIDE LEFT_SIDE
+sw/source/core/inc/txtfly.hxx:42
+    enum PAGESIDE DONTKNOW_SIDE
+sw/source/filter/html/swhtml.hxx:408
+    enum SwHTMLParser::JumpToMarks JUMPTO_FRAME
+sw/source/filter/ww8/ww8scan.hxx:388
+    enum ePLCFT SEP
+sw/source/filter/ww8/ww8struc.hxx:944
+    enum WW8_FSPA::FSPAOrient RelText
+sw/source/filter/ww8/ww8struc.hxx:944
+    enum WW8_FSPA::FSPAOrient RelPgMargin
+sw/source/ui/fldui/fldref.cxx:762
     enum FMT_REF_IDX FMT_REF_PAGE_IDX
-sw/source/ui/fldui/fldref.cxx:757
+sw/source/ui/fldui/fldref.cxx:763
     enum FMT_REF_IDX FMT_REF_CHAPTER_IDX
-sw/source/ui/fldui/fldref.cxx:758
+sw/source/ui/fldui/fldref.cxx:764
     enum FMT_REF_IDX FMT_REF_TEXT_IDX
-sw/source/ui/fldui/fldref.cxx:759
+sw/source/ui/fldui/fldref.cxx:765
     enum FMT_REF_IDX FMT_REF_UPDOWN_IDX
-sw/source/ui/fldui/fldref.cxx:761
+sw/source/ui/fldui/fldref.cxx:767
     enum FMT_REF_IDX FMT_REF_ONLYNUMBER_IDX
-sw/source/ui/fldui/fldref.cxx:762
+sw/source/ui/fldui/fldref.cxx:768
     enum FMT_REF_IDX FMT_REF_ONLYCAPTION_IDX
+sw/source/uibase/docvw/edtwin.cxx:1570
+    enum SwKeyState ColTopBig
+sw/source/uibase/docvw/edtwin.cxx:1571
+    enum SwKeyState ColTopSmall
+sw/source/uibase/inc/tautofmt.hxx:36
+    enum AutoFormatLine BOTTOM_LINE
+sw/source/uibase/inc/tautofmt.hxx:36
+    enum AutoFormatLine LEFT_LINE
+sw/source/uibase/inc/tautofmt.hxx:36
+    enum AutoFormatLine RIGHT_LINE
+sw/source/uibase/inc/tautofmt.hxx:36
+    enum AutoFormatLine TOP_LINE
+sw/source/uibase/inc/wrtsh.hxx:365
+    enum SwWrtShell::FieldDialogPressedButton BTN_EDIT
 sw/source/uibase/utlui/content.cxx:824
     enum STR_CONTEXT_IDX IDX_STR_LINK_REGION
 sw/source/uibase/utlui/content.cxx:825
@@ -208,16 +526,42 @@ sw/source/uibase/utlui/glbltree.cxx:147
     enum GLOBAL_CONTEXT_IDX IDX_STR_UPDATE_LINK
 sw/source/uibase/utlui/glbltree.cxx:148
     enum GLOBAL_CONTEXT_IDX IDX_STR_UPDATE_ALL
+toolkit/source/controls/grid/defaultgriddatamodel.cxx:45
+    enum (anonymous namespace)::broadcast_type row_added
+toolkit/source/controls/grid/defaultgriddatamodel.cxx:45
+    enum (anonymous namespace)::broadcast_type data_changed
+toolkit/source/controls/grid/defaultgriddatamodel.cxx:45
+    enum (anonymous namespace)::broadcast_type row_removed
+tools/source/fsys/urlobj.cxx:305
+    enum INetURLObject::PrefixInfo::Kind ALIAS
+ucb/source/ucp/webdav-neon/DAVTypes.hxx:195
+    enum webdav_ucp::Depth DAVINFINITY
+ucbhelper/source/client/proxydecider.cxx:119
+    enum ucbhelper::proxydecider_impl::InternetProxyDecider_Impl::ProxyType Manual
+vcl/inc/regband.hxx:45
+    enum LineType LINE_HORIZONTAL
 vcl/inc/salptype.hxx:44
     enum SalPrinterError General
 vcl/inc/unx/saldisp.hxx:65
     srv_vendor_t vendor_none
+vcl/inc/unx/saldisp.hxx:77
+    enum SalRGB RGBA
+vcl/inc/unx/saldisp.hxx:77
+    enum SalRGB RBGA
+vcl/inc/unx/saldisp.hxx:78
+    enum SalRGB GBRA
+vcl/inc/unx/saldisp.hxx:78
+    enum SalRGB GRBA
+vcl/inc/unx/saldisp.hxx:79
+    enum SalRGB BRGA
+vcl/inc/unx/saldisp.hxx:79
+    enum SalRGB BGRA
 vcl/source/gdi/CommonSalLayout.cxx:129
     enum (anonymous namespace)::VerticalOrientation Rotated
 vcl/unx/gtk3/gtk3gtkinst.cxx:2524
-    enum (anonymous at /media/noel/disk2/libo6/vcl/unx/gtk3/gtk3gtkinst.cxx:2522:1) PROP_0
+    enum (anonymous at /home/noel/libo2/vcl/unx/gtk3/gtk3gtkinst.cxx:2522:1) PROP_0
 vcl/unx/gtk3/gtk3gtkinst.cxx:2529
-    enum (anonymous at /media/noel/disk2/libo6/vcl/unx/gtk3/gtk3gtkinst.cxx:2522:1) PROP_SHADOW_TYPE
+    enum (anonymous at /home/noel/libo2/vcl/unx/gtk3/gtk3gtkinst.cxx:2522:1) PROP_SHADOW_TYPE
 writerfilter/source/ooxml/OOXMLFactory.hxx:36
     enum writerfilter::ooxml::ResourceType NoResource
 writerfilter/source/ooxml/OOXMLFactory.hxx:37
diff --git a/compilerplugins/clang/unusedenumconstants.writeonly.results b/compilerplugins/clang/unusedenumconstants.writeonly.results
index 1e0875d07641..77ba253369ff 100644
--- a/compilerplugins/clang/unusedenumconstants.writeonly.results
+++ b/compilerplugins/clang/unusedenumconstants.writeonly.results
@@ -2,20 +2,20 @@ basctl/source/basicide/baside3.cxx:891
     enum NameClashMode NO_CLASH
 basctl/source/basicide/doceventnotifier.cxx:59
     enum basctl::ListenerAction RemoveListener
-basctl/source/basicide/macrodlg.hxx:34
+basctl/source/basicide/macrodlg.hxx:32
     enum basctl::MacroExitCode Macro_Close
-basctl/source/basicide/macrodlg.hxx:36
+basctl/source/basicide/macrodlg.hxx:34
     enum basctl::MacroExitCode Macro_New
-basctl/source/basicide/macrodlg.hxx:37
+basctl/source/basicide/macrodlg.hxx:35
     enum basctl::MacroExitCode Macro_Edit
-basctl/source/inc/bastype2.hxx:44
+basctl/source/inc/bastype2.hxx:45
     enum BrowseMode All
 basctl/source/inc/dlged.hxx:100
     enum basctl::DlgEditor::Mode SELECT
 basctl/source/inc/dlgeddef.hxx:30
-    enum basctl::(anonymous at /media/noel/disk2/libo6/basctl/source/inc/dlgeddef.hxx:28:1) OBJ_DLG_CONTROL
+    enum basctl::(anonymous at /home/noel/libo2/basctl/source/inc/dlgeddef.hxx:28:1) OBJ_DLG_CONTROL
 basctl/source/inc/dlgeddef.hxx:31
-    enum basctl::(anonymous at /media/noel/disk2/libo6/basctl/source/inc/dlgeddef.hxx:28:1) OBJ_DLG_DIALOG
+    enum basctl::(anonymous at /home/noel/libo2/basctl/source/inc/dlgeddef.hxx:28:1) OBJ_DLG_DIALOG
 basctl/source/inc/layout.hxx:81
     enum basctl::Layout::SplittedSide::Side Bottom
 basctl/source/inc/sbxitem.hxx:31
@@ -29,9 +29,9 @@ basegfx/source/range/b2drangeclipper.cxx:153
 basegfx/source/range/b2drangeclipper.cxx:159
     enum basegfx::(anonymous namespace)::SweepLineEvent::EdgeDirection PROCEED_UP
 basegfx/source/range/b2drangeclipper.cxx:794
-    enum basegfx::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/basegfx/source/range/b2drangeclipper.cxx:794:9) PerformErase
+    enum basegfx::(anonymous namespace)::(anonymous at /home/noel/libo2/basegfx/source/range/b2drangeclipper.cxx:794:9) NoErase
 basegfx/source/range/b2drangeclipper.cxx:794
-    enum basegfx::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/basegfx/source/range/b2drangeclipper.cxx:794:9) NoErase
+    enum basegfx::(anonymous namespace)::(anonymous at /home/noel/libo2/basegfx/source/range/b2drangeclipper.cxx:794:9) PerformErase
 basic/source/inc/expr.hxx:62
     enum SbiExprMode EXPRMODE_STANDARD
 basic/source/inc/expr.hxx:79
@@ -48,18 +48,10 @@ basic/source/inc/image.hxx:37
     enum SbiImageFlags CLASSMODULE
 basic/source/inc/iosys.hxx:39
     enum SbiStreamFlags Output
-basic/source/inc/iosys.hxx:41
-    enum SbiStreamFlags Append
 basic/source/inc/namecont.hxx:229
     enum basic::SfxLibraryContainer::InitMode LIBRARY_INIT_FILE
 basic/source/inc/namecont.hxx:231
     enum basic::SfxLibraryContainer::InitMode OLD_BASIC_STORAGE
-basic/source/inc/runtime.hxx:88
-    enum SbAttributes READONLY
-basic/source/inc/runtime.hxx:89
-    enum SbAttributes HIDDEN
-basic/source/inc/runtime.hxx:90
-    enum SbAttributes DIRECTORY
 basic/source/runtime/methods.cxx:4365
     enum BasicResponse Ok
 basic/source/runtime/methods.cxx:4366
@@ -75,294 +67,294 @@ basic/source/runtime/methods.cxx:4370
 basic/source/runtime/methods.cxx:4371
     enum BasicResponse No
 binaryurp/source/cache.hxx:36
-    enum binaryurp::cache::(anonymous at /media/noel/disk2/libo6/binaryurp/qa/../source/cache.hxx:36:1) size
+    enum binaryurp::cache::(anonymous at /home/noel/libo2/binaryurp/qa/../source/cache.hxx:36:1) size
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:67
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAX
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAX
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:68
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MIN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MIN
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:69
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPMAIN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPMAIN
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:70
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:71
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP_COUNT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP_COUNT
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:72
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MAX
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MAX
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:73
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MIN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MIN
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:74
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPMAIN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPMAIN
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:75
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPHELP
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPHELP
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:76
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TYPE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TYPE
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:77
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TIME_INCREMENT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TIME_INCREMENT
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:78
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_EXPLICIT_TIME_INCREMENT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/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 /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LOGARITHMIC
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LOGARITHMIC
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:80
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_REVERSEDIRECTION
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_REVERSEDIRECTION
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:81
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_VISIBLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_VISIBLE
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:82
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_POSITION
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_POSITION
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:83
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_VALUE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_VALUE
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:84
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ORIGIN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ORIGIN
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:85
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_ORIGIN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_ORIGIN
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:86
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARKS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARKS
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:87
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_HELPMARKS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_HELPMARKS
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:88
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARK_POSITION
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARK_POSITION
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:89
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_LABELS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_LABELS
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:90
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_NUMBERFORMAT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_NUMBERFORMAT
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:91
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LINK_NUMBERFORMAT_TO_SOURCE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/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 /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LABEL_POSITION
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LABEL_POSITION
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:93
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXT_ROTATION
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXT_ROTATION
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:94
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ARRANGE_ORDER
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ARRANGE_ORDER
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:95
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXTBREAK
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXTBREAK
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:96
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CAN_OVERLAP
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CAN_OVERLAP
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:97
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STACKEDTEXT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STACKEDTEXT
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:98
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_OVERLAP
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_OVERLAP
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:99
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_GAP_WIDTH
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_GAP_WIDTH
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:100
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_UNITS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_UNITS
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:101
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_BUILTINUNIT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_BUILTINUNIT
 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:102
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TRY_STAGGERING_FIRST
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TRY_STAGGERING_FIRST
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:140
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_MAIN_TITLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_MAIN_TITLE
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:141
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_SUB_TITLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_SUB_TITLE
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:142
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_LEGEND
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_LEGEND
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:143
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_LABELS_IN_FIRST_ROW
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_LABELS_IN_FIRST_ROW
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:144
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_LABELS_IN_FIRST_COLUMN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_LABELS_IN_FIRST_COLUMN
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:145
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ADDIN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ADDIN
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:146
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_BASEDIAGRAM
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_BASEDIAGRAM
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:147
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ADDITIONAL_SHAPES
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ADDITIONAL_SHAPES
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:148
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_UPDATE_ADDIN
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_UPDATE_ADDIN
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:149
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_NULL_DATE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_NULL_DATE
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:150
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ENABLE_COMPLEX_CHARTTYPES
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ENABLE_COMPLEX_CHARTTYPES
 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:151
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ENABLE_DATATABLE_DIALOG
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ENABLE_DATATABLE_DIALOG
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:75
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_SOLIDTYPE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_SOLIDTYPE
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:76
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_SEGMENT_OFFSET
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_SEGMENT_OFFSET
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:77
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_PERCENT_DIAGONAL
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_PERCENT_DIAGONAL
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:78
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_SEPARATOR
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_SEPARATOR
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:79
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_NUMBERFORMAT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_NUMBERFORMAT
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:80
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_LINK_NUMBERFORMAT_TO_SOURCE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_LINK_NUMBERFORMAT_TO_SOURCE
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:81
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_PERCENTAGE_NUMBERFORMAT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_PERCENTAGE_NUMBERFORMAT
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:82
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_TEXT_WORD_WRAP
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_TEXT_WORD_WRAP
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:83
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_PLACEMENT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_PLACEMENT
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:85
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_ATTACHED_AXIS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_ATTACHED_AXIS
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:86
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_TEXT_ROTATION
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_TEXT_ROTATION
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:87
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_STYLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_STYLE
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:88
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_WIDTH
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_WIDTH
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:89
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_COLOR
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_COLOR
 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:90
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_TRANS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_TRANS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:88
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_ATTRIBUTED_DATA_POINTS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_ATTRIBUTED_DATA_POINTS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:89
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_PERCENT_STACKED
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_PERCENT_STACKED
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:90
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_STACKED
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_STACKED
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:91
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_THREE_D
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_THREE_D
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:92
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_SOLIDTYPE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_SOLIDTYPE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:93
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DEEP
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DEEP
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:94
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_VERTICAL
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_VERTICAL
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:95
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_NUMBER_OF_LINES
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_NUMBER_OF_LINES
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:96
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_STACKED_BARS_CONNECTED
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_STACKED_BARS_CONNECTED
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:97
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATAROW_SOURCE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATAROW_SOURCE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:99
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_GROUP_BARS_PER_AXIS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_GROUP_BARS_PER_AXIS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:100
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_INCLUDE_HIDDEN_CELLS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_INCLUDE_HIDDEN_CELLS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:102
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_SORT_BY_X_VALUES
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_SORT_BY_X_VALUES
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:104
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_STARTING_ANGLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_STARTING_ANGLE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:106
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_RIGHT_ANGLED_AXES
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_RIGHT_ANGLED_AXES
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:107
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_PERSPECTIVE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_PERSPECTIVE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:108
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_ROTATION_HORIZONTAL
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_ROTATION_HORIZONTAL
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:109
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_ROTATION_VERTICAL
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_ROTATION_VERTICAL
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:111
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_MISSING_VALUE_TREATMENT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_MISSING_VALUE_TREATMENT
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:113
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:114
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS_DESCR
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS_DESCR
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:115
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS_TITLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS_TITLE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:116
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS_GRID
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS_GRID
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:117
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS_HELP_GRID
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_X_AXIS_HELP_GRID
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:119
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:120
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS_DESCR
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS_DESCR
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:121
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS_TITLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS_TITLE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:122
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS_GRID
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS_GRID
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:123
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS_HELP_GRID
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Y_AXIS_HELP_GRID
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:125
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:126
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS_DESCR
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS_DESCR
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:127
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS_TITLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS_TITLE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:128
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS_GRID
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS_GRID
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:129
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS_HELP_GRID
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_Z_AXIS_HELP_GRID
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:131
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:132
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS_DESCR
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS_DESCR
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:134
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:135
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS_DESCR
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS_DESCR
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:137
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS_TITLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS_TITLE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:138
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS_TITLE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS_TITLE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:140
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_AUTOMATIC_SIZE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_AUTOMATIC_SIZE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:141
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATATABLEHBORDER
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATATABLEHBORDER
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:142
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATATABLEVBORDER
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATATABLEVBORDER
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:143
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATATABLEOUTLINE
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATATABLEOUTLINE
 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:144
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_EXTERNALDATA
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_EXTERNALDATA
 chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:208
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:206:1) PROP_LEGEND_ALIGNMENT
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:206:1) PROP_LEGEND_ALIGNMENT
 chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:209
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:206:1) PROP_LEGEND_EXPANSION
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:206:1) PROP_LEGEND_EXPANSION
 chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:122
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:120:1) PROP_TITLE_STRING
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:120:1) PROP_TITLE_STRING
 chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:123
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:120:1) PROP_TITLE_TEXT_ROTATION
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:120:1) PROP_TITLE_TEXT_ROTATION
 chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:124
-    enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:120:1) PROP_TITLE_TEXT_STACKED
+    enum (anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:120:1) PROP_TITLE_TEXT_STACKED
 chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx:102
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx:100:1) PROP_CHART_AUTOMATIC_POSITION
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx:100:1) PROP_CHART_AUTOMATIC_POSITION
 chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx:54
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx:51:1) PROP_CHART_DATAPOINT_DATA_CAPTION
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx:51:1) PROP_CHART_DATAPOINT_DATA_CAPTION
 chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx:114
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx:112:1) PROP_CHART_SCALE_TEXT
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx:112:1) PROP_CHART_SCALE_TEXT
 chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:175
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:172:1) PROP_CHART_SPLINE_TYPE
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:172:1) PROP_CHART_SPLINE_TYPE
 chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:176
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:172:1) PROP_CHART_SPLINE_ORDER
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:172:1) PROP_CHART_SPLINE_ORDER
 chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:177
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:172:1) PROP_CHART_SPLINE_RESOLUTION
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:172:1) PROP_CHART_SPLINE_RESOLUTION
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:900
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_CONST_ERROR_LOW
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_CONST_ERROR_LOW
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:901
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_CONST_ERROR_HIGH
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_CONST_ERROR_HIGH
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:902
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_MEAN_VALUE
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_MEAN_VALUE
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:903
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_CATEGORY
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_CATEGORY
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:904
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_BAR_STYLE
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_BAR_STYLE
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:905
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_PERCENT_ERROR
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_PERCENT_ERROR
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:906
-    enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_MARGIN
+    enum chart::wrapper::(anonymous namespace)::(anonymous at /home/noel/libo2/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_MARGIN
 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:907

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list