summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compilerplugins/clang/test/unusedenumconstants.cxx92
-rw-r--r--compilerplugins/clang/unusedenumconstants.cxx133
-rw-r--r--compilerplugins/clang/unusedenumconstants.readonly.results1494
-rw-r--r--compilerplugins/clang/unusedenumconstants.untouched.results246
-rw-r--r--compilerplugins/clang/unusedenumconstants.writeonly.results16706
-rw-r--r--solenv/CompilerTest_compilerplugins_clang.mk1
6 files changed, 8178 insertions, 10494 deletions
diff --git a/compilerplugins/clang/test/unusedenumconstants.cxx b/compilerplugins/clang/test/unusedenumconstants.cxx
new file mode 100644
index 000000000000..3de1a65537e0
--- /dev/null
+++ b/compilerplugins/clang/test/unusedenumconstants.cxx
@@ -0,0 +1,92 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include <o3tl/typed_flags_set.hxx>
+
+namespace test1
+{
+void test1()
+{
+ enum NameClashMode
+ {
+ NONE,
+ NO_CLASH // expected-error {{write NO_CLASH [loplugin:unusedenumconstants]}}
+ };
+ NameClashMode eNameClashMode = NO_CLASH;
+ (void)eNameClashMode;
+}
+};
+
+enum class BrowseMode
+{
+ Modules = 0x01, // expected-error {{read Modules [loplugin:unusedenumconstants]}}
+ Top = 0x02, // expected-error {{write Top [loplugin:unusedenumconstants]}}
+};
+namespace o3tl
+{
+template <> struct typed_flags<BrowseMode> : is_typed_flags<BrowseMode, 0x3>
+{
+};
+}
+BrowseMode g_flags;
+int test2(BrowseMode nMode)
+{
+ if (nMode & BrowseMode::Modules)
+ return 1;
+ g_flags |= BrowseMode::Top;
+ return 0;
+}
+
+enum class Enum3
+{
+ One = 0x01, // expected-error {{write One [loplugin:unusedenumconstants]}}
+ Two = 0x02 // expected-error {{write Two [loplugin:unusedenumconstants]}}
+};
+namespace o3tl
+{
+template <> struct typed_flags<Enum3> : is_typed_flags<Enum3, 0x3>
+{
+};
+}
+void test3_foo(Enum3);
+void test3() { test3_foo(Enum3::One | Enum3::Two); }
+
+namespace test4
+{
+enum Enum4
+{
+ ONE, // expected-error {{write ONE [loplugin:unusedenumconstants]}}
+ TWO
+};
+struct Test4Base
+{
+ Test4Base(Enum4) {}
+};
+struct Test4 : public Test4Base
+{
+ Test4()
+ : Test4Base(Enum4::ONE)
+ {
+ }
+};
+};
+
+// check that conditional operator walks up the tree
+namespace test5
+{
+enum Enum
+{
+ ONE, // expected-error {{write ONE [loplugin:unusedenumconstants]}}
+ TWO // expected-error {{write TWO [loplugin:unusedenumconstants]}}
+};
+
+Enum foo(int x) { return x == 1 ? Enum::ONE : Enum::TWO; }
+};
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
diff --git a/compilerplugins/clang/unusedenumconstants.cxx b/compilerplugins/clang/unusedenumconstants.cxx
index b106d308fdb5..74e9eb216da7 100644
--- a/compilerplugins/clang/unusedenumconstants.cxx
+++ b/compilerplugins/clang/unusedenumconstants.cxx
@@ -44,6 +44,7 @@ struct MyFieldInfo
std::string parentClass;
std::string fieldName;
std::string sourceLocation;
+ SourceLocation loc;
};
bool operator < (const MyFieldInfo &lhs, const MyFieldInfo &rhs)
{
@@ -68,19 +69,31 @@ public:
{
TraverseDecl(compiler.getASTContext().getTranslationUnitDecl());
- // dump all our output in one write call - this is to try and limit IO "crosstalk" between multiple processes
- // writing to the same logfile
- std::string output;
- for (const MyFieldInfo & s : definitionSet)
- output += "definition:\t" + s.parentClass + "\t" + s.fieldName + "\t" + s.sourceLocation + "\n";
- for (const MyFieldInfo & s : writeSet)
- output += "write:\t" + s.parentClass + "\t" + s.fieldName + "\n";
- for (const MyFieldInfo & s : readSet)
- output += "read:\t" + s.parentClass + "\t" + s.fieldName + "\n";
- std::ofstream myfile;
- myfile.open( WORKDIR "/loplugin.unusedenumconstants.log", std::ios::app | std::ios::out);
- myfile << output;
- myfile.close();
+ if (!isUnitTestMode())
+ {
+ // dump all our output in one write call - this is to try and limit IO "crosstalk" between multiple processes
+ // writing to the same logfile
+ std::string output;
+ for (const MyFieldInfo & s : definitionSet)
+ output += "definition:\t" + s.parentClass + "\t" + s.fieldName + "\t" + s.sourceLocation + "\n";
+ for (const MyFieldInfo & s : writeSet)
+ output += "write:\t" + s.parentClass + "\t" + s.fieldName + "\n";
+ for (const MyFieldInfo & s : readSet)
+ output += "read:\t" + s.parentClass + "\t" + s.fieldName + "\n";
+ std::ofstream myfile;
+ myfile.open( WORKDIR "/loplugin.unusedenumconstants.log", std::ios::app | std::ios::out);
+ myfile << output;
+ myfile.close();
+ }
+ else
+ {
+ for (const MyFieldInfo& s : writeSet)
+ report(DiagnosticsEngine::Warning, "write %0", s.loc)
+ << s.fieldName;
+ for (const MyFieldInfo& s : readSet)
+ report(DiagnosticsEngine::Warning, "read %0", s.loc)
+ << s.fieldName;
+ }
}
bool shouldVisitTemplateInstantiations () const { return true; }
@@ -106,6 +119,7 @@ MyFieldInfo UnusedEnumConstants::niceName(const EnumConstantDecl* enumConstantDe
SourceLocation expansionLoc = compiler.getSourceManager().getExpansionLoc( enumConstantDecl->getLocation() );
StringRef name = compiler.getSourceManager().getFilename(expansionLoc);
+ aInfo.loc = expansionLoc;
aInfo.sourceLocation = std::string(name.substr(strlen(SRCDIR)+1)) + ":" + std::to_string(compiler.getSourceManager().getSpellingLineNumber(expansionLoc));
loplugin::normalizeDotDotInFilePath(aInfo.sourceLocation);
@@ -143,7 +157,10 @@ bool UnusedEnumConstants::VisitDeclRefExpr( const DeclRefExpr* declRefExpr )
}
const Stmt * parent = declRefExpr;
-try_again:
+ const Stmt * child = nullptr;
+
+walk_up:
+ child = parent;
parent = getParentStmt(parent);
bool bWrite = false;
bool bRead = false;
@@ -153,54 +170,90 @@ try_again:
// Could probably do better here.
// Sometimes this is a constructor-initialiser-expression, so just make a pessimistic assumption.
bWrite = true;
- } else if (isa<CallExpr>(parent) || isa<InitListExpr>(parent) || isa<ArraySubscriptExpr>(parent)
- || isa<ReturnStmt>(parent) || isa<DeclStmt>(parent)
- || isa<CXXConstructExpr>(parent)
- || isa<CXXThrowExpr>(parent))
+ }
+ else if (const CXXOperatorCallExpr * operatorCall = dyn_cast<CXXOperatorCallExpr>(parent))
{
+ auto oo = operatorCall->getOperator();
+ // if assignment op
+ if (oo == OO_Equal || oo == OO_StarEqual || oo == OO_SlashEqual || oo == OO_PercentEqual
+ || oo == OO_PlusEqual || oo == OO_MinusEqual || oo == OO_LessLessEqual
+ || oo == OO_AmpEqual || oo == OO_CaretEqual || oo == OO_PipeEqual)
+ bWrite = true;
+ // else if comparison op
+ else if (oo == OO_AmpAmp || oo == OO_PipePipe || oo == OO_Subscript
+ || oo == OO_Less || oo == OO_Greater || oo == OO_LessEqual || oo == OO_GreaterEqual || oo == OO_EqualEqual || oo == OO_ExclaimEqual)
+ bRead = true;
+ else
+ goto 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;
- } else if (isa<CaseStmt>(parent) || isa<SwitchStmt>(parent))
+ }
+ else if (isa<CallExpr>(parent) || isa<InitListExpr>(parent) || isa<ArraySubscriptExpr>(parent)
+ || isa<ReturnStmt>(parent) || isa<DeclStmt>(parent)
+ || isa<CXXConstructExpr>(parent)
+ || isa<CXXThrowExpr>(parent))
+ {
+ bWrite = true;
+ }
+ else if (isa<CaseStmt>(parent) || isa<SwitchStmt>(parent) || isa<IfStmt>(parent)
+ || isa<WhileStmt>(parent) || isa<DoStmt>(parent) || isa<ForStmt>(parent) || isa<DefaultStmt>(parent))
{
bRead = true;
- } else if (const BinaryOperator * binaryOp = dyn_cast<BinaryOperator>(parent))
+ }
+ else if (const BinaryOperator * binaryOp = dyn_cast<BinaryOperator>(parent))
{
if (BinaryOperator::isAssignmentOp(binaryOp->getOpcode())) {
bWrite = true;
- } else {
+ } else if (BinaryOperator::isComparisonOp(binaryOp->getOpcode())) {
bRead = true;
- }
- } else if (const CXXOperatorCallExpr * operatorCall = dyn_cast<CXXOperatorCallExpr>(parent))
- {
- auto oo = operatorCall->getOperator();
- if (oo == OO_Equal
- || (oo >= OO_PlusEqual && oo <= OO_GreaterGreaterEqual)) {
- bWrite = true;
} else {
- bRead = true;
+ goto walk_up;
}
- } else if (isa<CastExpr>(parent) || isa<UnaryOperator>(parent)
- || isa<ConditionalOperator>(parent) || isa<ParenExpr>(parent)
+ }
+ else if (isa<ConditionalOperator>(parent))
+ {
+ goto walk_up;
+ }
+ else if (isa<CastExpr>(parent) || isa<UnaryOperator>(parent)
+ || isa<ParenExpr>(parent)
|| isa<MaterializeTemporaryExpr>(parent)
- || isa<ExprWithCleanups>(parent))
+ || isa<ExprWithCleanups>(parent)
+#if CLANG_VERSION >= 80000
+ || isa<ConstantExpr>(parent)
+#endif
+ || isa<CXXBindTemporaryExpr>(parent))
{
- goto try_again;
- } else if (isa<CXXDefaultArgExpr>(parent))
+ goto walk_up;
+ }
+ else if (isa<CXXDefaultArgExpr>(parent))
{
// TODO this could be improved
bWrite = true;
- } else if (isa<DeclRefExpr>(parent))
+ }
+ else if (isa<DeclRefExpr>(parent))
{
// slightly weird case I saw in basegfx where the enum is being used as a template param
bWrite = true;
- } else if (isa<MemberExpr>(parent))
+ }
+ else if (isa<MemberExpr>(parent))
{
- // slightly weird case I saw in sc where the enum is being used as a template param
- bWrite = true;
- } else if (isa<UnresolvedLookupExpr>(parent))
+ goto walk_up;
+ }
+ else if (isa<UnresolvedLookupExpr>(parent)
+ || isa<CompoundStmt>(parent))
{
bRead = true;
bWrite = true;
- } else {
+ }
+ else
+ {
bDump = true;
}
diff --git a/compilerplugins/clang/unusedenumconstants.readonly.results b/compilerplugins/clang/unusedenumconstants.readonly.results
index 88cdf8789e37..be07890fdf83 100644
--- a/compilerplugins/clang/unusedenumconstants.readonly.results
+++ b/compilerplugins/clang/unusedenumconstants.readonly.results
@@ -4,59 +4,83 @@ bridges/source/cpp_uno/gcc3_linux_x86-64/abi.cxx:78
enum x86_64_reg_class X86_64_X87_CLASS
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:120
- enum chart::CharacterProperties::(anonymous at /home/noel/libo3/chart2/source/inc/CharacterProperties.hxx:41:5) FAST_PROPERTY_ID_END_CHAR_PROP
-chart2/source/inc/FastPropertyIdRanges.hxx:27
- enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START
-chart2/source/inc/TitleHelper.hxx:47
+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
+chart2/source/inc/TitleHelper.hxx:48
enum chart::TitleHelper::eTitleType NORMAL_TITLE_END
-configmgr/source/access.hxx:454
- enum configmgr::Access::(anonymous at /home/noel/libo3/configmgr/source/access.hxx:453:5) IS_EXTENSIBLE
-configmgr/source/access.hxx:454
- enum configmgr::Access::(anonymous at /home/noel/libo3/configmgr/source/access.hxx:453:5) IS_SET
+chart2/source/view/inc/ShapeFactory.hxx:50
+ enum chart::SymbolEnum Symbol_Square
+chart2/source/view/inc/ShapeFactory.hxx:51
+ enum chart::SymbolEnum Symbol_Diamond
+chart2/source/view/inc/ShapeFactory.hxx:52
+ enum chart::SymbolEnum Symbol_DownArrow
+chart2/source/view/inc/ShapeFactory.hxx:53
+ enum chart::SymbolEnum Symbol_UpArrow
+chart2/source/view/inc/ShapeFactory.hxx:54
+ enum chart::SymbolEnum Symbol_RightArrow
+chart2/source/view/inc/ShapeFactory.hxx:55
+ enum chart::SymbolEnum Symbol_LeftArrow
+chart2/source/view/inc/ShapeFactory.hxx:56
+ enum chart::SymbolEnum Symbol_Bowtie
+chart2/source/view/inc/ShapeFactory.hxx:57
+ enum chart::SymbolEnum Symbol_Sandglass
+chart2/source/view/inc/ShapeFactory.hxx:58
+ enum chart::SymbolEnum Symbol_Circle
+chart2/source/view/inc/ShapeFactory.hxx:59
+ enum chart::SymbolEnum Symbol_Star
+chart2/source/view/inc/ShapeFactory.hxx:60
+ enum chart::SymbolEnum Symbol_X
+chart2/source/view/inc/ShapeFactory.hxx:61
+ enum chart::SymbolEnum Symbol_Plus
+chart2/source/view/inc/ShapeFactory.hxx:62
+ enum chart::SymbolEnum Symbol_Asterisk
+chart2/source/view/inc/ShapeFactory.hxx:63
+ enum chart::SymbolEnum Symbol_HorizontalBar
+chart2/source/view/inc/ShapeFactory.hxx:64
+ enum chart::SymbolEnum Symbol_VerticalBar
configmgr/source/access.hxx:455
- enum configmgr::Access::(anonymous at /home/noel/libo3/configmgr/source/access.hxx:453:5) IS_GROUP_MEMBER
+ enum configmgr::Access::(anonymous at /media/noel/disk2/libo6/configmgr/source/access.hxx:453:5) IS_GROUP_MEMBER
configmgr/source/access.hxx:455
- enum configmgr::Access::(anonymous at /home/noel/libo3/configmgr/source/access.hxx:453:5) IS_SET_MEMBER
-configmgr/source/components.hxx:154
- enum configmgr::Components::ModificationTarget Dconf
+ enum configmgr::Access::(anonymous at /media/noel/disk2/libo6/configmgr/source/access.hxx:453:5) IS_SET_MEMBER
configmgr/source/parsemanager.hxx:47
- enum configmgr::ParseManager::(anonymous at /home/noel/libo3/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_XS
+ enum configmgr::ParseManager::(anonymous at /media/noel/disk2/libo6/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_XS
configmgr/source/parsemanager.hxx:47
- enum configmgr::ParseManager::(anonymous at /home/noel/libo3/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_OOR
+ enum configmgr::ParseManager::(anonymous at /media/noel/disk2/libo6/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_XSI
configmgr/source/parsemanager.hxx:47
- enum configmgr::ParseManager::(anonymous at /home/noel/libo3/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_XSI
-connectivity/source/drivers/evoab2/NConnection.hxx:42
+ enum configmgr::ParseManager::(anonymous at /media/noel/disk2/libo6/configmgr/source/parsemanager.hxx:47:5) NAMESPACE_OOR
+connectivity/source/drivers/evoab2/NConnection.hxx:41
connectivity::evoab::SDBCAddress::sdbc_address_type Unknown
-cppcanvas/source/mtfrenderer/emfppen.cxx:52
- enum cppcanvas::internal::EmfPlusPenData PenDataTransform
cppcanvas/source/mtfrenderer/emfppen.cxx:53
- enum cppcanvas::internal::EmfPlusPenData PenDataStartCap
+ enum cppcanvas::internal::EmfPlusPenData PenDataTransform
cppcanvas/source/mtfrenderer/emfppen.cxx:54
- enum cppcanvas::internal::EmfPlusPenData PenDataEndCap
+ enum cppcanvas::internal::EmfPlusPenData PenDataStartCap
cppcanvas/source/mtfrenderer/emfppen.cxx:55
- enum cppcanvas::internal::EmfPlusPenData PenDataJoin
+ enum cppcanvas::internal::EmfPlusPenData PenDataEndCap
cppcanvas/source/mtfrenderer/emfppen.cxx:56
- enum cppcanvas::internal::EmfPlusPenData PenDataMiterLimit
+ enum cppcanvas::internal::EmfPlusPenData PenDataJoin
cppcanvas/source/mtfrenderer/emfppen.cxx:57
- enum cppcanvas::internal::EmfPlusPenData PenDataLineStyle
+ enum cppcanvas::internal::EmfPlusPenData PenDataMiterLimit
cppcanvas/source/mtfrenderer/emfppen.cxx:58
- enum cppcanvas::internal::EmfPlusPenData PenDataDashedLineCap
+ enum cppcanvas::internal::EmfPlusPenData PenDataLineStyle
cppcanvas/source/mtfrenderer/emfppen.cxx:59
- enum cppcanvas::internal::EmfPlusPenData PenDataDashedLineOffset
+ enum cppcanvas::internal::EmfPlusPenData PenDataDashedLineCap
cppcanvas/source/mtfrenderer/emfppen.cxx:60
- enum cppcanvas::internal::EmfPlusPenData PenDataDashedLine
+ enum cppcanvas::internal::EmfPlusPenData PenDataDashedLineOffset
cppcanvas/source/mtfrenderer/emfppen.cxx:61
- enum cppcanvas::internal::EmfPlusPenData PenDataNonCenter
+ enum cppcanvas::internal::EmfPlusPenData PenDataDashedLine
cppcanvas/source/mtfrenderer/emfppen.cxx:62
- enum cppcanvas::internal::EmfPlusPenData PenDataCompoundLine
+ enum cppcanvas::internal::EmfPlusPenData PenDataNonCenter
cppcanvas/source/mtfrenderer/emfppen.cxx:63
- enum cppcanvas::internal::EmfPlusPenData PenDataCustomStartCap
+ enum cppcanvas::internal::EmfPlusPenData PenDataCompoundLine
cppcanvas/source/mtfrenderer/emfppen.cxx:64
+ enum cppcanvas::internal::EmfPlusPenData PenDataCustomStartCap
+cppcanvas/source/mtfrenderer/emfppen.cxx:65
enum cppcanvas::internal::EmfPlusPenData PenDataCustomEndCap
-cui/source/options/optgenrl.cxx:63
+cui/source/options/optgenrl.cxx:62
enum (anonymous namespace)::RowType nRowCount
-dbaccess/source/filter/xml/xmlEnums.hxx:141
+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
drawinglayer/source/tools/emfpbrush.hxx:37
enum emfplushelper::EmfPlusHatchStyle HatchStyle05Percent
@@ -92,12 +116,26 @@ drawinglayer/source/tools/emfpbrush.hxx:91
enum emfplushelper::EmfPlusBrushType BrushTypePathGradient
drawinglayer/source/tools/emfpbrush.hxx:92
enum emfplushelper::EmfPlusBrushType BrushTypeLinearGradient
-drawinglayer/source/tools/emfphelperdata.cxx:102
- emfplushelper::ImageDataType ImageDataTypeBitmap
-drawinglayer/source/tools/emfphelperdata.cxx:103
- emfplushelper::ImageDataType ImageDataTypeMetafile
+drawinglayer/source/tools/emfphelperdata.cxx:108
+ emfplushelper::StringAlignment StringAlignmentNear
+drawinglayer/source/tools/emfphelperdata.cxx:109
+ emfplushelper::StringAlignment StringAlignmentCenter
+drawinglayer/source/tools/emfphelperdata.cxx:110
+ emfplushelper::StringAlignment StringAlignmentFar
+drawinglayer/source/tools/emfphelperdata.hxx:110
+ enum emfplushelper::UnitType UnitTypeWorld
+drawinglayer/source/tools/emfphelperdata.hxx:111
+ enum emfplushelper::UnitType UnitTypeDisplay
drawinglayer/source/tools/emfphelperdata.hxx:112
enum emfplushelper::UnitType UnitTypePixel
+drawinglayer/source/tools/emfphelperdata.hxx:113
+ enum emfplushelper::UnitType UnitTypePoint
+drawinglayer/source/tools/emfphelperdata.hxx:114
+ enum emfplushelper::UnitType UnitTypeInch
+drawinglayer/source/tools/emfphelperdata.hxx:115
+ enum emfplushelper::UnitType UnitTypeDocument
+drawinglayer/source/tools/emfphelperdata.hxx:116
+ enum emfplushelper::UnitType UnitTypeMillimeter
drawinglayer/source/tools/emfphelperdata.hxx:121
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeReplace
drawinglayer/source/tools/emfphelperdata.hxx:122
@@ -110,31 +148,35 @@ drawinglayer/source/tools/emfphelperdata.hxx:125
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeExclude
drawinglayer/source/tools/emfphelperdata.hxx:126
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeComplement
-drawinglayer/source/tools/emfppen.cxx:48
- enum emfplushelper::EmfPlusPenData PenDataTransform
+drawinglayer/source/tools/emfpimage.hxx:32
+ emfplushelper::ImageDataType ImageDataTypeBitmap
+drawinglayer/source/tools/emfpimage.hxx:33
+ emfplushelper::ImageDataType ImageDataTypeMetafile
drawinglayer/source/tools/emfppen.cxx:49
- enum emfplushelper::EmfPlusPenData PenDataStartCap
+ enum emfplushelper::EmfPlusPenData PenDataTransform
drawinglayer/source/tools/emfppen.cxx:50
- enum emfplushelper::EmfPlusPenData PenDataEndCap
+ enum emfplushelper::EmfPlusPenData PenDataStartCap
drawinglayer/source/tools/emfppen.cxx:51
- enum emfplushelper::EmfPlusPenData PenDataJoin
+ enum emfplushelper::EmfPlusPenData PenDataEndCap
drawinglayer/source/tools/emfppen.cxx:52
- enum emfplushelper::EmfPlusPenData PenDataMiterLimit
+ enum emfplushelper::EmfPlusPenData PenDataJoin
drawinglayer/source/tools/emfppen.cxx:53
- enum emfplushelper::EmfPlusPenData PenDataLineStyle
+ enum emfplushelper::EmfPlusPenData PenDataMiterLimit
drawinglayer/source/tools/emfppen.cxx:54
- enum emfplushelper::EmfPlusPenData PenDataDashedLineCap
+ enum emfplushelper::EmfPlusPenData PenDataLineStyle
drawinglayer/source/tools/emfppen.cxx:55
- enum emfplushelper::EmfPlusPenData PenDataDashedLineOffset
+ enum emfplushelper::EmfPlusPenData PenDataDashedLineCap
drawinglayer/source/tools/emfppen.cxx:56
- enum emfplushelper::EmfPlusPenData PenDataDashedLine
+ enum emfplushelper::EmfPlusPenData PenDataDashedLineOffset
drawinglayer/source/tools/emfppen.cxx:57
- enum emfplushelper::EmfPlusPenData PenDataNonCenter
+ enum emfplushelper::EmfPlusPenData PenDataDashedLine
drawinglayer/source/tools/emfppen.cxx:58
- enum emfplushelper::EmfPlusPenData PenDataCompoundLine
+ enum emfplushelper::EmfPlusPenData PenDataNonCenter
drawinglayer/source/tools/emfppen.cxx:59
- enum emfplushelper::EmfPlusPenData PenDataCustomStartCap
+ enum emfplushelper::EmfPlusPenData PenDataCompoundLine
drawinglayer/source/tools/emfppen.cxx:60
+ enum emfplushelper::EmfPlusPenData PenDataCustomStartCap
+drawinglayer/source/tools/emfppen.cxx:61
enum emfplushelper::EmfPlusPenData PenDataCustomEndCap
drawinglayer/source/tools/emfpregion.hxx:29
emfplushelper::RegionNodeDataType RegionNodeDataTypeAnd
@@ -162,10 +204,6 @@ emfio/inc/mtftools.hxx:50
enum emfio::BkMode Transparent
emfio/inc/mtftools.hxx:84
enum emfio::WMFRasterOp Nop
-extensions/source/update/check/updatehdl.hxx:49
- enum DialogControls THROBBER_CTRL
-extensions/source/update/check/updatehdl.hxx:50
- enum DialogControls PROGRESS_CTRL
extensions/source/update/check/updatehdl.hxx:59
enum UpdateState UPDATESTATE_AUTO_START
framework/inc/xml/imagesdocumenthandler.hxx:43
@@ -194,206 +232,782 @@ framework/inc/xml/imagesdocumenthandler.hxx:54
enum framework::OReadImagesDocumentHandler::Image_XML_Entry IMG_ATTRIBUTE_HIGHCONTRASTURL
framework/inc/xml/imagesdocumenthandler.hxx:55
enum framework::OReadImagesDocumentHandler::Image_XML_Entry IMG_ATTRIBUTE_HIGHCONTRASTMASKURL
-framework/inc/xml/statusbardocumenthandler.hxx:44
+framework/inc/xml/statusbardocumenthandler.hxx:46
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ELEMENT_STATUSBAR
-framework/inc/xml/statusbardocumenthandler.hxx:45
+framework/inc/xml/statusbardocumenthandler.hxx:47
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ELEMENT_STATUSBARITEM
-framework/inc/xml/statusbardocumenthandler.hxx:46
+framework/inc/xml/statusbardocumenthandler.hxx:48
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_URL
-framework/inc/xml/statusbardocumenthandler.hxx:47
+framework/inc/xml/statusbardocumenthandler.hxx:49
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_ALIGN
-framework/inc/xml/statusbardocumenthandler.hxx:48
+framework/inc/xml/statusbardocumenthandler.hxx:50
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_STYLE
-framework/inc/xml/statusbardocumenthandler.hxx:49
+framework/inc/xml/statusbardocumenthandler.hxx:51
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_AUTOSIZE
-framework/inc/xml/statusbardocumenthandler.hxx:50
+framework/inc/xml/statusbardocumenthandler.hxx:52
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_OWNERDRAW
-framework/inc/xml/statusbardocumenthandler.hxx:51
+framework/inc/xml/statusbardocumenthandler.hxx:53
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_WIDTH
-framework/inc/xml/statusbardocumenthandler.hxx:52
+framework/inc/xml/statusbardocumenthandler.hxx:54
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_OFFSET
-framework/inc/xml/statusbardocumenthandler.hxx:53
+framework/inc/xml/statusbardocumenthandler.hxx:55
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_HELPURL
-framework/inc/xml/toolboxdocumenthandler.hxx:43
+framework/inc/xml/statusbardocumenthandler.hxx:56
+ enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_MANDATORY
+framework/inc/xml/toolboxdocumenthandler.hxx:45
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBAR
-framework/inc/xml/toolboxdocumenthandler.hxx:44
+framework/inc/xml/toolboxdocumenthandler.hxx:46
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBARITEM
-framework/inc/xml/toolboxdocumenthandler.hxx:45
+framework/inc/xml/toolboxdocumenthandler.hxx:47
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBARSPACE
-framework/inc/xml/toolboxdocumenthandler.hxx:46
+framework/inc/xml/toolboxdocumenthandler.hxx:48
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBARBREAK
-framework/inc/xml/toolboxdocumenthandler.hxx:47
+framework/inc/xml/toolboxdocumenthandler.hxx:49
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBARSEPARATOR
-framework/inc/xml/toolboxdocumenthandler.hxx:48
+framework/inc/xml/toolboxdocumenthandler.hxx:50
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_TEXT
-framework/inc/xml/toolboxdocumenthandler.hxx:49
+framework/inc/xml/toolboxdocumenthandler.hxx:51
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_URL
-framework/inc/xml/toolboxdocumenthandler.hxx:50
+framework/inc/xml/toolboxdocumenthandler.hxx:52
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_VISIBLE
-framework/inc/xml/toolboxdocumenthandler.hxx:51
+framework/inc/xml/toolboxdocumenthandler.hxx:53
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_STYLE
-framework/inc/xml/toolboxdocumenthandler.hxx:52
+framework/inc/xml/toolboxdocumenthandler.hxx:54
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_UINAME
-include/connectivity/dbtools.hxx:823
+include/connectivity/dbtools.hxx:814
enum connectivity::dbase::DBFType dBaseIII
-include/connectivity/dbtools.hxx:824
+include/connectivity/dbtools.hxx:815
enum connectivity::dbase::DBFType dBaseIV
-include/connectivity/dbtools.hxx:825
+include/connectivity/dbtools.hxx:816
enum connectivity::dbase::DBFType dBaseV
-include/connectivity/dbtools.hxx:826
+include/connectivity/dbtools.hxx:817
enum connectivity::dbase::DBFType VisualFoxPro
-include/connectivity/dbtools.hxx:827
+include/connectivity/dbtools.hxx:818
enum connectivity::dbase::DBFType VisualFoxProAuto
-include/connectivity/dbtools.hxx:828
+include/connectivity/dbtools.hxx:819
enum connectivity::dbase::DBFType dBaseFS
-include/connectivity/dbtools.hxx:829
+include/connectivity/dbtools.hxx:820
enum connectivity::dbase::DBFType dBaseFSMemo
-include/connectivity/dbtools.hxx:830
+include/connectivity/dbtools.hxx:821
enum connectivity::dbase::DBFType dBaseIIIMemo
-include/connectivity/dbtools.hxx:832
+include/connectivity/dbtools.hxx:823
enum connectivity::dbase::DBFType dBaseIVMemoSQL
-include/connectivity/dbtools.hxx:833
+include/connectivity/dbtools.hxx:824
enum connectivity::dbase::DBFType FoxProMemo
-include/connectivity/sqlnode.hxx:235
- enum connectivity::OSQLParseNode::Rule rule_count
+include/connectivity/sqliterator.hxx:43
+ enum connectivity::TraversalParts TableNames
include/desktop/exithelper.h:31
int EXITHELPER_CRASH_WITH_RESTART
include/desktop/exithelper.h:33
int EXITHELPER_NORMAL_RESTART
-include/editeng/editdata.hxx:36
- enum EETextFormat EE_FORMAT_BIN
-include/editeng/flditem.hxx:88
+include/editeng/editeng.hxx:126
+ enum GetAttribsFlags STYLESHEET
+include/editeng/editeng.hxx:127
+ enum GetAttribsFlags PARAATTRIBS
+include/editeng/editstat.hxx:32
+ enum EEControlBits USEPARAATTRIBS
+include/editeng/flditem.hxx:94
enum SvxDateFormat System
-include/editeng/flditem.hxx:90
+include/editeng/flditem.hxx:96
enum SvxDateFormat StdBig
-include/editeng/flditem.hxx:250
+include/editeng/flditem.hxx:263
enum SvxTimeFormat System
-include/editeng/flditem.hxx:258
+include/editeng/flditem.hxx:271
enum SvxTimeFormat HH12_MM_AMPM
-include/editeng/flditem.hxx:259
+include/editeng/flditem.hxx:272
enum SvxTimeFormat HH12_MM_SS_AMPM
-include/editeng/flditem.hxx:260
+include/editeng/flditem.hxx:273
enum SvxTimeFormat HH12_MM_SS_00_AMPM
-include/editeng/flditem.hxx:345
+include/editeng/flditem.hxx:360
enum SvxAuthorFormat LastName
-include/editeng/flditem.hxx:346
+include/editeng/flditem.hxx:361
enum SvxAuthorFormat FirstName
-include/i18nutil/casefolding.hxx:37
- enum MappingType SimpleFolding
+include/framework/framelistanalyzer.hxx:36
+ enum FrameAnalyzerFlags Model
+include/framework/framelistanalyzer.hxx:41
+ enum FrameAnalyzerFlags Zombie
+include/i18nutil/casefolding.hxx:40
+ enum MappingType NotValue
include/LibreOfficeKit/LibreOfficeKitEnums.h:31
LibreOfficeKitPartMode LOK_PARTMODE_SLIDES
include/LibreOfficeKit/LibreOfficeKitEnums.h:32
LibreOfficeKitPartMode LOK_PARTMODE_NOTES
-include/LibreOfficeKit/LibreOfficeKitEnums.h:82
- LibreOfficeKitOptionalFeatures LOK_FEATURE_NO_TILED_ANNOTATIONS
+include/LibreOfficeKit/LibreOfficeKitEnums.h:38
+ LibreOfficeKitTileMode LOK_TILEMODE_RGBA
+include/LibreOfficeKit/LibreOfficeKitEnums.h:87
+ LibreOfficeKitOptionalFeatures LOK_FEATURE_RANGE_HEADERS
+include/LibreOfficeKit/LibreOfficeKitEnums.h:626
+ LibreOfficeKitExtTextInputType LOK_EXT_TEXTINPUT
+include/LibreOfficeKit/LibreOfficeKitEnums.h:630
+ LibreOfficeKitExtTextInputType LOK_EXT_TEXTINPUT_END
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
+include/oox/ppt/animationspersist.hxx:38
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_FROM
+include/oox/ppt/animationspersist.hxx:38
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/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_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
+include/oox/ppt/animationspersist.hxx:39
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_DECELERATE
+include/oox/ppt/animationspersist.hxx:39
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/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_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
+include/oox/ppt/animationspersist.hxx:39
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_FILL
+include/oox/ppt/animationspersist.hxx:40
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_REPEATDURATION
+include/oox/ppt/animationspersist.hxx:40
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/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
+include/oox/ppt/animationspersist.hxx:41
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/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_DIRECTION
+include/oox/ppt/animationspersist.hxx:41
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/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_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
+include/oox/ppt/animationspersist.hxx:43
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_ITERATEINTERVAL
+include/oox/ppt/animationspersist.hxx:43
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_ITERATETYPE
+include/oox/ppt/animationspersist.hxx:44
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/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_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
+include/oox/ppt/animationspersist.hxx:44
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/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
+include/oox/ppt/animationspersist.hxx:45
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/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_FORMULA
+include/oox/ppt/animationspersist.hxx:45
+ enum oox::ppt::(anonymous at /media/noel/disk2/libo6/include/oox/ppt/animationspersist.hxx:36:5) NP_DISPLAY
+include/sfx2/objsh.hxx:120
+ enum SfxObjectShellFlags DONTCLOSE
+include/sfx2/objsh.hxx:121
+ enum SfxObjectShellFlags NODOCINFO
include/store/types.h:65
enum storeAccessMode ReadCreate
-include/svl/ctloptions.hxx:65
+include/svl/ctloptions.hxx:64
enum SvtCTLOptions::TextNumerals NUMERALS_HINDI
-include/svl/ctloptions.hxx:66
+include/svl/ctloptions.hxx:65
enum SvtCTLOptions::TextNumerals NUMERALS_SYSTEM
-include/svl/ctloptions.hxx:67
+include/svl/ctloptions.hxx:66
enum SvtCTLOptions::TextNumerals NUMERALS_CONTEXT
-include/svl/ctloptions.hxx:78
+include/svl/ctloptions.hxx:77
enum SvtCTLOptions::EOption E_CTLSEQUENCECHECKINGRESTRICTED
-include/svl/ctloptions.hxx:79
+include/svl/ctloptions.hxx:78
enum SvtCTLOptions::EOption E_CTLSEQUENCECHECKINGTYPEANDREPLACE
-include/svl/inettype.hxx:213
- enum INetContentType CONTENT_TYPE_LAST
-include/svl/languageoptions.hxx:59
- enum SvtLanguageOptions::EOption E_CJKFONT
include/svl/languageoptions.hxx:60
- enum SvtLanguageOptions::EOption E_VERTICALTEXT
+ enum SvtLanguageOptions::EOption E_CJKFONT
include/svl/languageoptions.hxx:61
- enum SvtLanguageOptions::EOption E_ASIANTYPOGRAPHY
+ enum SvtLanguageOptions::EOption E_VERTICALTEXT
include/svl/languageoptions.hxx:62
- enum SvtLanguageOptions::EOption E_JAPANESEFIND
+ enum SvtLanguageOptions::EOption E_ASIANTYPOGRAPHY
include/svl/languageoptions.hxx:63
- enum SvtLanguageOptions::EOption E_RUBY
+ enum SvtLanguageOptions::EOption E_JAPANESEFIND
include/svl/languageoptions.hxx:64
- enum SvtLanguageOptions::EOption E_CHANGECASEMAP
+ enum SvtLanguageOptions::EOption E_RUBY
include/svl/languageoptions.hxx:65
- enum SvtLanguageOptions::EOption E_DOUBLELINES
+ enum SvtLanguageOptions::EOption E_CHANGECASEMAP
include/svl/languageoptions.hxx:66
- enum SvtLanguageOptions::EOption E_EMPHASISMARKS
+ enum SvtLanguageOptions::EOption E_DOUBLELINES
include/svl/languageoptions.hxx:67
+ enum SvtLanguageOptions::EOption E_EMPHASISMARKS
+include/svl/languageoptions.hxx:68
enum SvtLanguageOptions::EOption E_VERTICALCALLOUT
-include/svl/languageoptions.hxx:71
- enum SvtLanguageOptions::EOption E_CTLSEQUENCECHECKING
include/svl/languageoptions.hxx:72
- enum SvtLanguageOptions::EOption E_CTLCURSORMOVEMENT
+ enum SvtLanguageOptions::EOption E_CTLSEQUENCECHECKING
include/svl/languageoptions.hxx:73
+ enum SvtLanguageOptions::EOption E_CTLCURSORMOVEMENT
+include/svl/languageoptions.hxx:74
enum SvtLanguageOptions::EOption E_CTLTEXTNUMERALS
-include/svl/poolitem.hxx:92
+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 LOCALHOST
+include/svl/poolitem.hxx:89
enum SfxItemState READONLY
+include/svl/srchdefs.hxx:40
+ enum SearchOptionFlags WILDCARD
include/svtools/apearcfg.hxx:30
enum SnapType ToMiddle
include/svtools/apearcfg.hxx:35
enum DragMode FullWindow
include/svtools/apearcfg.hxx:36
enum DragMode Frame
-include/svtools/grfmgr.hxx:33
- enum GraphicManagerDrawFlags SMOOTHSCALE
-include/svtools/imagemgr.hxx:28
- enum SvImageId START
+include/svtools/brwbox.hxx:69
+ enum BrowserMode NO_SCROLLBACK
+include/svtools/brwbox.hxx:80
+ enum BrowserMode OWN_DATACHANGED
+include/svtools/brwbox.hxx:86
+ enum BrowserMode SMART_HIDECURSOR
+include/svtools/headbar.hxx:186
+ enum HeaderBarItemBits RIGHT
+include/svtools/headbar.hxx:187
+ enum HeaderBarItemBits TOP
+include/svtools/headbar.hxx:189
+ enum HeaderBarItemBits BOTTOM
+include/svtools/headbar.hxx:191
+ enum HeaderBarItemBits RIGHTIMAGE
+include/svtools/ruler.hxx:506
+ enum RulerBorderStyle Snap
+include/svtools/ruler.hxx:507
+ enum RulerBorderStyle Margin
include/svtools/table/tablemodel.hxx:48
enum ColumnAttributeGroup ALL
-include/svx/cube3d.hxx:51
- enum CubeFaces Bottom
-include/svx/cube3d.hxx:52
- enum CubeFaces Back
-include/svx/cube3d.hxx:53
- enum CubeFaces Left
-include/svx/cube3d.hxx:54
- enum CubeFaces Top
-include/svx/cube3d.hxx:55
- enum CubeFaces Right
-include/svx/cube3d.hxx:56
- enum CubeFaces Front
-include/svx/langbox.hxx:33
+include/svx/EnhancedCustomShapeGeometry.hxx:46
+ enum SvxMSDffHandleFlags MIRRORED_X
+include/svx/EnhancedCustomShapeGeometry.hxx:47
+ enum SvxMSDffHandleFlags MIRRORED_Y
+include/svx/EnhancedCustomShapeGeometry.hxx:50
+ enum SvxMSDffHandleFlags MAP
+include/svx/flagsdef.hxx:111
+ enum TabulatorDisableFlags TypeRight
+include/svx/flagsdef.hxx:112
+ enum TabulatorDisableFlags TypeCenter
+include/svx/flagsdef.hxx:113
+ enum TabulatorDisableFlags TypeDecimal
+include/svx/flagsdef.hxx:117
+ enum TabulatorDisableFlags FillPoint
+include/svx/flagsdef.hxx:118
+ enum TabulatorDisableFlags FillDashLine
+include/svx/flagsdef.hxx:119
+ enum TabulatorDisableFlags FillSolidLine
+include/svx/flagsdef.hxx:120
+ enum TabulatorDisableFlags FillSpecial
+include/svx/langbox.hxx:34
enum SvxLanguageListFlags EMPTY
+include/svx/langbox.hxx:40
+ enum SvxLanguageListFlags SPELL_AVAIL
+include/svx/langbox.hxx:41
+ enum SvxLanguageListFlags HYPH_AVAIL
+include/svx/langbox.hxx:42
+ enum SvxLanguageListFlags THES_AVAIL
+include/svx/langbox.hxx:45
+ enum SvxLanguageListFlags HYPH_USED
+include/svx/langbox.hxx:46
+ enum SvxLanguageListFlags THES_USED
+include/svx/ruler.hxx:60
+ enum SvxRulerDragFlags OBJECT_LEFT_INDENT_ONLY
include/svx/sdtakitm.hxx:31
enum SdrTextAniKind Blink
+include/svx/svdedtv.hxx:65
+ enum SdrInsertFlags NOBROADCAST
include/svx/svdhdl.hxx:108
enum BitmapMarkerKind RectPlus_7x7
-include/svx/svdobj.hxx:140
- enum SdrObjKind OBJ_MAXI
+include/svx/svdmrkv.hxx:42
+ enum SdrSearchOptions WITHTEXT
+include/svx/svdmrkv.hxx:43
+ enum SdrSearchOptions TESTTEXTAREA
include/svx/swframeposstrings.hxx:78
enum SvxSwFramePosString::StringId STR_MAX
include/svx/swframetypes.hxx:41
enum RndStdIds HEADERR
-include/tools/inetmsg.hxx:71
+include/svx/xoutbmp.hxx:36
+ enum XOutFlags ContourVert
+include/tools/inetmsg.hxx:70
enum InetMessageMime NUMHDR
-include/unotools/fontcfg.hxx:76
- enum ImplFontAttrs Comic
-include/unotools/fontdefs.hxx:77
+include/tools/poly.hxx:34
+ enum PolyOptimizeFlags OPEN
+include/unotools/fontcfg.hxx:51
+ enum ImplFontAttrs Default
+include/unotools/fontcfg.hxx:52
+ enum ImplFontAttrs Standard
+include/unotools/fontcfg.hxx:53
+ enum ImplFontAttrs Normal
+include/unotools/fontcfg.hxx:59
+ enum ImplFontAttrs Special
+include/unotools/fontcfg.hxx:68
+ enum ImplFontAttrs CTL
+include/unotools/fontcfg.hxx:69
+ enum ImplFontAttrs NoneLatin
+include/unotools/fontcfg.hxx:70
+ enum ImplFontAttrs Full
+include/unotools/fontcfg.hxx:83
+ enum ImplFontAttrs CJK_AllLang
+include/unotools/fontcfg.hxx:85
+ enum ImplFontAttrs AllSubscript
+include/unotools/fontcfg.hxx:86
+ enum ImplFontAttrs AllSerifStyle
+include/unotools/fontdefs.hxx:31
+ enum SubsFontFlags PS
+include/unotools/fontdefs.hxx:32
+ enum SubsFontFlags HTML
+include/unotools/fontdefs.hxx:70
enum DefaultFontType LATIN_DISPLAY
-include/unotools/fontdefs.hxx:78
+include/unotools/fontdefs.hxx:71
enum DefaultFontType LATIN_FIXED
-include/unotools/fontdefs.hxx:88
+include/unotools/fontdefs.hxx:81
enum DefaultFontType CTL_DISPLAY
-include/vcl/errinf.hxx:88
+include/vcl/bitmap.hxx:64
+ enum BmpDitherFlags Matrix
+include/vcl/bitmap.hxx:66
+ enum BmpDitherFlags Floyd16
+include/vcl/decoview.hxx:87
+ enum DrawButtonFlags NoFill
+include/vcl/errinf.hxx:84
+ enum DialogMask ButtonsYesNo
+include/vcl/errinf.hxx:87
enum DialogMask ButtonDefaultsCancel
-include/vcl/errinf.hxx:89
+include/vcl/errinf.hxx:88
enum DialogMask ButtonDefaultsYes
-include/vcl/errinf.hxx:90
+include/vcl/errinf.hxx:89
enum DialogMask ButtonDefaultsNo
-include/vcl/field.hxx:355
- enum TimeFormatter::TimeFormat Hour12
+include/vcl/event.hxx:181
+ enum HelpEventMode EXTENDED
+include/vcl/fontcapabilities.hxx:30
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum IPA_EXTENSIONS
+include/vcl/fontcapabilities.hxx:31
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SPACING_MODIFIER_LETTERS
+include/vcl/fontcapabilities.hxx:32
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum COMBINING_DIACRITICAL_MARKS
+include/vcl/fontcapabilities.hxx:34
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum COPTIC
+include/vcl/fontcapabilities.hxx:36
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ARMENIAN
+include/vcl/fontcapabilities.hxx:37
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum HEBREW
+include/vcl/fontcapabilities.hxx:38
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum VAI
+include/vcl/fontcapabilities.hxx:39
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ARABIC
+include/vcl/fontcapabilities.hxx:42
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum BENGALI
+include/vcl/fontcapabilities.hxx:43
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum GURMUKHI
+include/vcl/fontcapabilities.hxx:44
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum GUJARATI
+include/vcl/fontcapabilities.hxx:45
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ODIA
+include/vcl/fontcapabilities.hxx:46
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum TAMIL
+include/vcl/fontcapabilities.hxx:47
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum TELUGU
+include/vcl/fontcapabilities.hxx:48
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum KANNADA
+include/vcl/fontcapabilities.hxx:49
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum MALAYALAM
+include/vcl/fontcapabilities.hxx:51
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum LAO
+include/vcl/fontcapabilities.hxx:52
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum GEORGIAN
+include/vcl/fontcapabilities.hxx:53
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum BALINESE
+include/vcl/fontcapabilities.hxx:54
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum HANGUL_JAMO
+include/vcl/fontcapabilities.hxx:57
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum GENERAL_PUNCTUATION
+include/vcl/fontcapabilities.hxx:58
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SUPERSCRIPTS_AND_SUBSCRIPTS
+include/vcl/fontcapabilities.hxx:59
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CURRENCY_SYMBOLS
+include/vcl/fontcapabilities.hxx:60
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum COMBINING_DIACRITICAL_MARKS_FOR_SYMBOLS
+include/vcl/fontcapabilities.hxx:61
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum LETTERLIKE_SYMBOLS
+include/vcl/fontcapabilities.hxx:62
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum NUMBER_FORMS
+include/vcl/fontcapabilities.hxx:63
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ARROWS
+include/vcl/fontcapabilities.hxx:64
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum MATHEMATICAL_OPERATORS
+include/vcl/fontcapabilities.hxx:65
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum MISCELLANEOUS_TECHNICAL
+include/vcl/fontcapabilities.hxx:66
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CONTROL_PICTURES
+include/vcl/fontcapabilities.hxx:67
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum OPTICAL_CHARACTER_RECOGNITION
+include/vcl/fontcapabilities.hxx:68
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ENCLOSED_ALPHANUMERICS
+include/vcl/fontcapabilities.hxx:69
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum BOX_DRAWING
+include/vcl/fontcapabilities.hxx:70
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum BLOCK_ELEMENTS
+include/vcl/fontcapabilities.hxx:71
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum GEOMETRIC_SHAPES
+include/vcl/fontcapabilities.hxx:72
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum MISCELLANEOUS_SYMBOLS
+include/vcl/fontcapabilities.hxx:73
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum DINGBATS
+include/vcl/fontcapabilities.hxx:74
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CJK_SYMBOLS_AND_PUNCTUATION
+include/vcl/fontcapabilities.hxx:75
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum HIRAGANA
+include/vcl/fontcapabilities.hxx:76
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum KATAKANA
+include/vcl/fontcapabilities.hxx:77
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum BOPOMOFO
+include/vcl/fontcapabilities.hxx:78
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum HANGUL_COMPATIBILITY_JAMO
+include/vcl/fontcapabilities.hxx:80
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ENCLOSED_CJK_LETTERS_AND_MONTHS
+include/vcl/fontcapabilities.hxx:81
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CJK_COMPATIBILITY
+include/vcl/fontcapabilities.hxx:82
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum HANGUL_SYLLABLES
+include/vcl/fontcapabilities.hxx:83
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum NONPLANE_0
+include/vcl/fontcapabilities.hxx:84
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum PHOENICIAN
+include/vcl/fontcapabilities.hxx:85
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CJK_UNIFIED_IDEOGRAPHS
+include/vcl/fontcapabilities.hxx:86
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum PRIVATE_USE_AREA_PLANE_0
+include/vcl/fontcapabilities.hxx:87
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CJK_STROKES
+include/vcl/fontcapabilities.hxx:88
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ALPHABETIC_PRESENTATION_FORMS
+include/vcl/fontcapabilities.hxx:90
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum COMBINING_HALF_MARKS
+include/vcl/fontcapabilities.hxx:91
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum VERTICAL_FORMS
+include/vcl/fontcapabilities.hxx:92
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SMALL_FORM_VARIANTS
+include/vcl/fontcapabilities.hxx:94
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum HALFWIDTH_AND_FULLWIDTH_FORMS
+include/vcl/fontcapabilities.hxx:95
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SPECIALS
+include/vcl/fontcapabilities.hxx:96
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum TIBETAN
+include/vcl/fontcapabilities.hxx:97
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SYRIAC
+include/vcl/fontcapabilities.hxx:98
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum THAANA
+include/vcl/fontcapabilities.hxx:99
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SINHALA
+include/vcl/fontcapabilities.hxx:100
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum MYANMAR
+include/vcl/fontcapabilities.hxx:101
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ETHIOPIC
+include/vcl/fontcapabilities.hxx:102
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CHEROKEE
+include/vcl/fontcapabilities.hxx:103
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum UNIFIED_CANADIAN_ABORIGINAL_SYLLABICS
+include/vcl/fontcapabilities.hxx:104
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum OGHAM
+include/vcl/fontcapabilities.hxx:105
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum RUNIC
+include/vcl/fontcapabilities.hxx:106
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum KHMER
+include/vcl/fontcapabilities.hxx:107
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum MONGOLIAN
+include/vcl/fontcapabilities.hxx:108
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum BRAILLE_PATTERNS
+include/vcl/fontcapabilities.hxx:109
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum YI_SYLLABLES
+include/vcl/fontcapabilities.hxx:110
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum TAGALOG
+include/vcl/fontcapabilities.hxx:111
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum OLD_ITALIC
+include/vcl/fontcapabilities.hxx:112
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum GOTHIC
+include/vcl/fontcapabilities.hxx:114
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum BYZANTINE_MUSICAL_SYMBOLS
+include/vcl/fontcapabilities.hxx:115
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum MATHEMATICAL_ALPHANUMERIC_SYMBOLS
+include/vcl/fontcapabilities.hxx:116
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum PRIVATE_USE_PLANE_15
+include/vcl/fontcapabilities.hxx:117
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum VARIATION_SELECTORS
+include/vcl/fontcapabilities.hxx:118
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum TAGS
+include/vcl/fontcapabilities.hxx:119
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum LIMBU
+include/vcl/fontcapabilities.hxx:120
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum TAI_LE
+include/vcl/fontcapabilities.hxx:121
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum NEW_TAI_LUE
+include/vcl/fontcapabilities.hxx:122
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum BUGINESE
+include/vcl/fontcapabilities.hxx:123
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum GLAGOLITIC
+include/vcl/fontcapabilities.hxx:124
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum TIFINAGH
+include/vcl/fontcapabilities.hxx:125
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum YIJING_HEXAGRAM_SYMBOLS
+include/vcl/fontcapabilities.hxx:126
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SYLOTI_NAGRI
+include/vcl/fontcapabilities.hxx:127
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum LINEAR_B_SYLLABARY
+include/vcl/fontcapabilities.hxx:128
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ANCIENT_GREEK_NUMBERS
+include/vcl/fontcapabilities.hxx:129
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum UGARITIC
+include/vcl/fontcapabilities.hxx:130
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum OLD_PERSIAN
+include/vcl/fontcapabilities.hxx:131
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SHAVIAN
+include/vcl/fontcapabilities.hxx:132
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum OSMANYA
+include/vcl/fontcapabilities.hxx:133
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CYPRIOT_SYLLABARY
+include/vcl/fontcapabilities.hxx:134
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum KHAROSHTHI
+include/vcl/fontcapabilities.hxx:135
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum TAI_XUAN_JING_SYMBOLS
+include/vcl/fontcapabilities.hxx:136
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CUNEIFORM
+include/vcl/fontcapabilities.hxx:137
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum COUNTING_ROD_NUMERALS
+include/vcl/fontcapabilities.hxx:138
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SUNDANESE
+include/vcl/fontcapabilities.hxx:139
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum LEPCHA
+include/vcl/fontcapabilities.hxx:140
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum OL_CHIKI
+include/vcl/fontcapabilities.hxx:141
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum SAURASHTRA
+include/vcl/fontcapabilities.hxx:142
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum KAYAH_LI
+include/vcl/fontcapabilities.hxx:143
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum REJANG
+include/vcl/fontcapabilities.hxx:144
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CHAM
+include/vcl/fontcapabilities.hxx:145
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum ANCIENT_SYMBOLS
+include/vcl/fontcapabilities.hxx:146
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum PHAISTOS_DISC
+include/vcl/fontcapabilities.hxx:147
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum CARIAN
+include/vcl/fontcapabilities.hxx:148
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum DOMINO_TILES
+include/vcl/fontcapabilities.hxx:149
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum RESERVED1
+include/vcl/fontcapabilities.hxx:150
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum RESERVED2
+include/vcl/fontcapabilities.hxx:151
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum RESERVED3
+include/vcl/fontcapabilities.hxx:152
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum RESERVED4
+include/vcl/fontcapabilities.hxx:153
+ enum vcl::UnicodeCoverage::UnicodeCoverageEnum RESERVED5
+include/vcl/fontcapabilities.hxx:162
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1252
+include/vcl/fontcapabilities.hxx:163
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1250
+include/vcl/fontcapabilities.hxx:164
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1251
+include/vcl/fontcapabilities.hxx:165
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1253
+include/vcl/fontcapabilities.hxx:166
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1254
+include/vcl/fontcapabilities.hxx:167
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1255
+include/vcl/fontcapabilities.hxx:168
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1256
+include/vcl/fontcapabilities.hxx:169
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1257
+include/vcl/fontcapabilities.hxx:170
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP1258
+include/vcl/fontcapabilities.hxx:171
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP874
+include/vcl/fontcapabilities.hxx:177
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP869
+include/vcl/fontcapabilities.hxx:178
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP866
+include/vcl/fontcapabilities.hxx:179
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP865
+include/vcl/fontcapabilities.hxx:180
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP864
+include/vcl/fontcapabilities.hxx:181
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP863
+include/vcl/fontcapabilities.hxx:182
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP862
+include/vcl/fontcapabilities.hxx:183
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP861
+include/vcl/fontcapabilities.hxx:184
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP860
+include/vcl/fontcapabilities.hxx:185
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP857
+include/vcl/fontcapabilities.hxx:186
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP855
+include/vcl/fontcapabilities.hxx:187
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP852
+include/vcl/fontcapabilities.hxx:188
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP775
+include/vcl/fontcapabilities.hxx:189
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP737
+include/vcl/fontcapabilities.hxx:190
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP780
+include/vcl/fontcapabilities.hxx:191
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP850
+include/vcl/fontcapabilities.hxx:192
+ enum vcl::CodePageCoverage::CodePageCoverageEnum CP437
+include/vcl/GraphicObject.hxx:36
+ enum GraphicManagerDrawFlags USE_DRAWMODE_SETTINGS
+include/vcl/GraphicObject.hxx:55
+ enum GraphicAdjustmentFlags DRAWMODE
+include/vcl/GraphicObject.hxx:56
+ enum GraphicAdjustmentFlags COLORS
+include/vcl/GraphicObject.hxx:57
+ enum GraphicAdjustmentFlags MIRROR
+include/vcl/GraphicObject.hxx:58
+ enum GraphicAdjustmentFlags ROTATE
+include/vcl/GraphicObject.hxx:59
+ enum GraphicAdjustmentFlags TRANSPARENCY
+include/vcl/graphictools.hxx:229
+ enum SvtGraphicFill::FillType fillSolid
+include/vcl/help.hxx:42
+ enum QuickHelpFlags NoAutoPos
+include/vcl/help.hxx:45
+ enum QuickHelpFlags NoDelay
include/vcl/keycod.hxx:32
enum KeyFuncType REDO
include/vcl/keycod.hxx:32
enum KeyFuncType REPEAT
-include/vcl/keycod.hxx:33
- enum KeyFuncType FRONT
-include/vcl/pdfwriter.hxx:107
- enum vcl::PDFWriter::PDFVersion PDF_1_2
-include/vcl/pdfwriter.hxx:107
+include/vcl/menu.hxx:74
+ enum PopupMenuFlags ExecuteUp
+include/vcl/menu.hxx:75
+ enum PopupMenuFlags ExecuteLeft
+include/vcl/menu.hxx:83
+ enum PopupMenuFlags NoHorzPlacement
+include/vcl/outdev.hxx:142
+ enum SalLayoutFlags EnableLigatures
+include/vcl/outdev.hxx:143
+ enum SalLayoutFlags SubstituteDigits
+include/vcl/outdev.hxx:175
+ enum DrawTextFlags NewsEllipsis
+include/vcl/outdev.hxx:190
+ enum DrawImageFlags Highlight
+include/vcl/outdev.hxx:191
+ enum DrawImageFlags Deactive
+include/vcl/outdev.hxx:228
+ enum DrawModeFlags NoBitmap
+include/vcl/outdev.hxx:229
+ enum DrawModeFlags NoGradient
+include/vcl/outdev.hxx:230
+ enum DrawModeFlags GhostedLine
+include/vcl/outdev.hxx:232
+ enum DrawModeFlags GhostedText
+include/vcl/pdfwriter.hxx:110
enum vcl::PDFWriter::PDFVersion PDF_1_3
-include/vcl/pdfwriter.hxx:107
- enum vcl::PDFWriter::PDFVersion PDF_1_5
+include/vcl/pdfwriter.hxx:110
+ enum vcl::PDFWriter::PDFVersion PDF_1_2
+include/vcl/pdfwriter.hxx:122
+ enum vcl::PDFWriter::StructElement Article
+include/vcl/pdfwriter.hxx:122
+ enum vcl::PDFWriter::StructElement Part
+include/vcl/pdfwriter.hxx:126
+ enum vcl::PDFWriter::StructElement H6
+include/vcl/pdfwriter.hxx:126
+ enum vcl::PDFWriter::StructElement H3
+include/vcl/pdfwriter.hxx:126
+ enum vcl::PDFWriter::StructElement H2
+include/vcl/pdfwriter.hxx:126
+ enum vcl::PDFWriter::StructElement H4
+include/vcl/pdfwriter.hxx:126
+ enum vcl::PDFWriter::StructElement H5
+include/vcl/pdfwriter.hxx:127
+ enum vcl::PDFWriter::StructElement LILabel
+include/vcl/pdfwriter.hxx:131
+ enum vcl::PDFWriter::StructElement Reference
+include/vcl/pdfwriter.hxx:140
+ enum vcl::PDFWriter::StructAttribute InlineAlign
+include/vcl/pdfwriter.hxx:140
+ enum vcl::PDFWriter::StructAttribute BlockAlign
+include/vcl/pdfwriter.hxx:141
+ enum vcl::PDFWriter::StructAttribute ListNumbering
+include/vcl/pdfwriter.hxx:141
+ enum vcl::PDFWriter::StructAttribute LineHeight
+include/vcl/pdfwriter.hxx:163
+ enum vcl::PDFWriter::StructAttributeValue Before
+include/vcl/pdfwriter.hxx:163
+ enum vcl::PDFWriter::StructAttributeValue After
+include/vcl/pdfwriter.hxx:163
+ enum vcl::PDFWriter::StructAttributeValue Start
+include/vcl/pdfwriter.hxx:169
+ enum vcl::PDFWriter::StructAttributeValue Auto
+include/vcl/pdfwriter.hxx:171
+ enum vcl::PDFWriter::StructAttributeValue Middle
+include/vcl/pdfwriter.hxx:173
+ enum vcl::PDFWriter::StructAttributeValue Normal
+include/vcl/pdfwriter.hxx:177
+ enum vcl::PDFWriter::StructAttributeValue LowerAlpha
+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
+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
+include/vcl/prntypes.hxx:39
+ enum PrintQueueFlags Paused
+include/vcl/prntypes.hxx:40
+ enum PrintQueueFlags PendingDeletion
+include/vcl/prntypes.hxx:41
+ enum PrintQueueFlags Busy
+include/vcl/prntypes.hxx:42
+ enum PrintQueueFlags Initializing
+include/vcl/prntypes.hxx:43
+ enum PrintQueueFlags Waiting
+include/vcl/prntypes.hxx:44
+ enum PrintQueueFlags WarmingUp
+include/vcl/prntypes.hxx:45
+ enum PrintQueueFlags Processing
+include/vcl/prntypes.hxx:46
+ enum PrintQueueFlags Printing
+include/vcl/prntypes.hxx:47
+ enum PrintQueueFlags Offline
+include/vcl/prntypes.hxx:48
+ enum PrintQueueFlags Error
+include/vcl/prntypes.hxx:49
+ enum PrintQueueFlags StatusUnknown
+include/vcl/prntypes.hxx:50
+ enum PrintQueueFlags PaperJam
+include/vcl/prntypes.hxx:51
+ enum PrintQueueFlags PaperOut
+include/vcl/prntypes.hxx:52
+ enum PrintQueueFlags ManualFeed
+include/vcl/prntypes.hxx:53
+ enum PrintQueueFlags PaperProblem
+include/vcl/prntypes.hxx:54
+ enum PrintQueueFlags IOActive
+include/vcl/prntypes.hxx:55
+ enum PrintQueueFlags OutputBinFull
+include/vcl/prntypes.hxx:56
+ enum PrintQueueFlags TonerLow
+include/vcl/prntypes.hxx:57
+ enum PrintQueueFlags NoToner
+include/vcl/prntypes.hxx:58
+ enum PrintQueueFlags PagePunt
+include/vcl/prntypes.hxx:59
+ enum PrintQueueFlags UserIntervention
+include/vcl/prntypes.hxx:60
+ enum PrintQueueFlags OutOfMemory
+include/vcl/prntypes.hxx:61
+ enum PrintQueueFlags DoorOpen
+include/vcl/prntypes.hxx:62
+ enum PrintQueueFlags PowerSave
include/vcl/ptrstyle.hxx:56
enum PointerStyle Pen
include/vcl/ptrstyle.hxx:67
@@ -416,9 +1030,15 @@ include/vcl/ptrstyle.hxx:78
enum PointerStyle CopyFiles
include/vcl/ptrstyle.hxx:92
enum PointerStyle Chart
-include/vcl/throbber.hxx:37
- enum Throbber::ImageSet Auto
-include/vcl/vclenum.hxx:123
+include/vcl/salctype.hxx:41
+ enum ConvertDataFormat PDF
+include/vcl/splitwin.hxx:37
+ enum SplitWindowItemFlags Invisible
+include/vcl/vclenum.hxx:37
+ enum MenuItemBits POPUPSELECT
+include/vcl/vclenum.hxx:143
+ enum TimeFormat Hour12
+include/vcl/vclenum.hxx:148
enum ExtTimeFieldFormat Short24H
include/vcl/wall.hxx:36
enum WallpaperStyle Center
@@ -434,35 +1054,89 @@ include/vcl/wall.hxx:43
enum WallpaperStyle BottomLeft
include/vcl/wall.hxx:44
enum WallpaperStyle Bottom
-include/xmloff/autolayout.hxx:26
- enum AutoLayout AUTOLAYOUT_START
+include/vcl/window.hxx:121
+ enum TrackingEventFlags DontCallHdl
+include/vcl/window.hxx:172
+ enum ShowFlags NoParentUpdate
+include/vcl/window.hxx:298
+ enum StartTrackingFlags KeyInput
+include/vcl/window.hxx:300
+ enum StartTrackingFlags NoKeyCancel
+include/vcl/window.hxx:303
+ enum StartTrackingFlags MouseButtonDown
+include/vcl/window.hxx:304
+ enum StartTrackingFlags FocusCancel
+include/vcl/window.hxx:376
+ enum DrawFlags NoMnemonic
+include/vcl/wrkwin.hxx:37
+ enum PresentationFlags NoFullScreen
+include/vcl/wrkwin.hxx:38
+ enum PresentationFlags NoAutoShow
+include/xmloff/shapeexport.hxx:53
+ enum XMLShapeExportFlags WIDTH
+include/xmloff/shapeexport.hxx:54
+ enum XMLShapeExportFlags HEIGHT
+include/xmloff/xmlexppr.hxx:35
+ enum SvXmlExportFlags DEFAULTS
+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
oox/source/dump/dffdumper.cxx:157
enum oox::dump::(anonymous namespace)::PropType PROPTYPE_COLORARRAY
oox/source/dump/dffdumper.cxx:157
enum oox::dump::(anonymous namespace)::PropType PROPTYPE_STRING
oox/source/dump/dffdumper.cxx:157
enum oox::dump::(anonymous namespace)::PropType PROPTYPE_BLIP
-sal/rtl/alloc_impl.hxx:233
- enum AllocMode CUSTOM
-sc/inc/dociter.hxx:255
+reportdesign/inc/conditionalexpression.hxx:78
+ enum rptui::ComparisonOperation eNotBetween
+reportdesign/inc/conditionalexpression.hxx:79
+ enum rptui::ComparisonOperation eEqualTo
+reportdesign/inc/conditionalexpression.hxx:80
+ enum rptui::ComparisonOperation eNotEqualTo
+reportdesign/inc/conditionalexpression.hxx:81
+ enum rptui::ComparisonOperation eGreaterThan
+reportdesign/inc/conditionalexpression.hxx:82
+ enum rptui::ComparisonOperation eLessThan
+reportdesign/inc/conditionalexpression.hxx:83
+ enum rptui::ComparisonOperation eGreaterOrEqual
+reportdesign/inc/conditionalexpression.hxx:84
+ enum rptui::ComparisonOperation eLessOrEqual
+sc/inc/dociter.hxx:257
enum ScQueryCellIterator::StopOnMismatchBits nStopOnMismatchExecuted
-sc/inc/dociter.hxx:263
+sc/inc/dociter.hxx:265
enum ScQueryCellIterator::TestEqualConditionBits nTestEqualConditionFulfilled
-sc/inc/token.hxx:219
+sc/inc/token.hxx:213
enum ScTableRefToken::Item HEADERS_DATA
-sc/inc/token.hxx:220
+sc/inc/token.hxx:214
enum ScTableRefToken::Item DATA_TOTALS
+sc/inc/types.hxx:56
+ enum ScFormulaVectorState FormulaVectorDisabledNotInSoftwareSubset
sc/inc/types.hxx:123
enum sc::ListenerGroupType Single
-sc/source/filter/lotus/lotread.cxx:36
+sc/source/filter/inc/unitconverter.hxx:43
+ enum oox::xls::Unit UNIT_REFDEVX
+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/ui/inc/undobase.hxx:140
+sc/source/ui/inc/undobase.hxx:135
enum ScMoveUndoMode SC_UNDO_REFFIRST
-sc/source/ui/inc/viewdata.hxx:67
- enum ScMarkType SC_MARK_FILTERED
-sc/source/ui/unoobj/condformatuno.cxx:273
- enum (anonymous namespace)::DateProperties Date_StyleName
+sc/source/ui/inc/viewdata.hxx:43
+ enum ScSplitMode SC_SPLIT_MODE_MAX_ENUM
+sc/source/ui/inc/viewdata.hxx:45
+ enum ScSplitPos SC_SPLIT_POS_MAX_ENUM
+sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:106
+ enum (anonymous namespace)::ScRegType LOGARITHMIC
+sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:107
+ enum (anonymous namespace)::ScRegType POWER
sc/source/ui/unoobj/condformatuno.cxx:274
+ enum (anonymous namespace)::DateProperties Date_StyleName
+sc/source/ui/unoobj/condformatuno.cxx:275
enum (anonymous namespace)::DateProperties DateType
sc/source/ui/vba/vbasheetobject.hxx:140
enum ScVbaControlObjectBase::ListenerType LISTENER_MOUSE
@@ -472,9 +1146,9 @@ sc/source/ui/vba/vbasheetobject.hxx:142
enum ScVbaControlObjectBase::ListenerType LISTENER_VALUE
sc/source/ui/vba/vbasheetobject.hxx:143
enum ScVbaControlObjectBase::ListenerType LISTENER_CHANGE
-scaddins/source/analysis/analysishelper.hxx:480
+scaddins/source/analysis/analysishelper.hxx:478
enum sca::analysis::ComplListAppendHandl AH_EmptyAsErr
-scaddins/source/analysis/analysishelper.hxx:481
+scaddins/source/analysis/analysishelper.hxx:479
enum sca::analysis::ComplListAppendHandl AH_EmpyAs0
scaddins/source/datefunc/datefunc.hxx:41
enum ScaCategory Finance
@@ -484,297 +1158,197 @@ scaddins/source/datefunc/datefunc.hxx:43
enum ScaCategory Math
scaddins/source/datefunc/datefunc.hxx:44
enum ScaCategory Tech
-scaddins/source/pricing/pricing.hxx:49
- enum sca::pricing::ScaCategory DateTime
scaddins/source/pricing/pricing.hxx:50
+ enum sca::pricing::ScaCategory DateTime
+scaddins/source/pricing/pricing.hxx:51
enum sca::pricing::ScaCategory Text
-scaddins/source/pricing/pricing.hxx:52
- enum sca::pricing::ScaCategory Inf
scaddins/source/pricing/pricing.hxx:53
- enum sca::pricing::ScaCategory Math
+ enum sca::pricing::ScaCategory Inf
scaddins/source/pricing/pricing.hxx:54
+ enum sca::pricing::ScaCategory Math
+scaddins/source/pricing/pricing.hxx:55
enum sca::pricing::ScaCategory Tech
sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx:40
enum sd::slidesorter::cache::RequestPriorityClass MAX_CLASS
-sd/source/ui/slidesorter/view/SlsPageObjectPainter.cxx:314
- enum State Focused
-sd/source/ui/slidesorter/view/SlsPageObjectPainter.cxx:314
- enum State Selected
-sd/source/ui/slidesorter/view/SlsPageObjectPainter.cxx:314
- enum State MouseOver
-sfx2/source/sidebar/SidebarController.cxx:76
- enum sfx2::sidebar::(anonymous namespace)::MenuId MID_FIRST_PANEL
-sfx2/source/sidebar/SidebarController.cxx:77
- enum sfx2::sidebar::(anonymous namespace)::MenuId MID_FIRST_HIDE
-slideshow/source/engine/shapes/viewshape.hxx:281
- enum slideshow::internal::ViewShape::(anonymous at /home/noel/libo3/slideshow/source/engine/shapes/viewshape.hxx:281:13) MAX_RENDER_CACHE_ENTRIES
+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
slideshow/source/engine/slideview.cxx:249
- enum slideshow::internal::(anonymous namespace)::LayerSpriteContainer::(anonymous at /home/noel/libo3/slideshow/source/engine/slideview.cxx:249:5) SPRITE_ULLAGE
+ enum slideshow::internal::(anonymous namespace)::LayerSpriteContainer::(anonymous at /media/noel/disk2/libo6/slideshow/source/engine/slideview.cxx:249:5) SPRITE_ULLAGE
slideshow/source/engine/slideview.cxx:729
- enum slideshow::internal::(anonymous namespace)::SlideView::(anonymous at /home/noel/libo3/slideshow/source/engine/slideview.cxx:729:5) LAYER_ULLAGE
+ enum slideshow::internal::(anonymous namespace)::SlideView::(anonymous at /media/noel/disk2/libo6/slideshow/source/engine/slideview.cxx:729:5) LAYER_ULLAGE
slideshow/source/inc/doctreenode.hxx:52
enum slideshow::internal::DocTreeNode::NodeType Invalid
-soltools/cpp/_lex.c:63
- int S_SELFB
-soltools/cpp/_lex.c:63
- int S_SELF
-soltools/cpp/_lex.c:64
- int S_NAME
soltools/cpp/cpp.h:42
int WS
-soltools/cpp/cpp.h:42
- int CCON
-soltools/cpp/cpp.h:43
- int LAND
-soltools/cpp/cpp.h:43
- int RSH
-soltools/cpp/cpp.h:43
- int PPLUS
-soltools/cpp/cpp.h:43
- int MMINUS
-soltools/cpp/cpp.h:43
- int EQ
-soltools/cpp/cpp.h:43
- int LEQ
-soltools/cpp/cpp.h:43
- int LSH
-soltools/cpp/cpp.h:43
- int LOR
-soltools/cpp/cpp.h:43
- int NEQ
-soltools/cpp/cpp.h:43
- int GEQ
-soltools/cpp/cpp.h:44
- int PLUS
-soltools/cpp/cpp.h:44
- int MINUS
-soltools/cpp/cpp.h:44
- int DOT
-soltools/cpp/cpp.h:44
- int STAR
-soltools/cpp/cpp.h:44
- int SKET
-soltools/cpp/cpp.h:44
- int AND
-soltools/cpp/cpp.h:44
- int SBRA
-soltools/cpp/cpp.h:44
- int ARROW
-soltools/cpp/cpp.h:45
- int PCT
-soltools/cpp/cpp.h:45
- int GT
-soltools/cpp/cpp.h:45
- int QUEST
-soltools/cpp/cpp.h:45
- int LT
-soltools/cpp/cpp.h:45
- int OR
-soltools/cpp/cpp.h:45
- int CIRC
-soltools/cpp/cpp.h:45
- int TILDE
-soltools/cpp/cpp.h:45
- int SLASH
-soltools/cpp/cpp.h:45
- int NOT
-soltools/cpp/cpp.h:46
- int COLON
-soltools/cpp/cpp.h:46
- int COMMA
-soltools/cpp/cpp.h:46
- int SEMIC
-soltools/cpp/cpp.h:46
- int SHARP
-soltools/cpp/cpp.h:46
- int CKET
-soltools/cpp/cpp.h:46
- int ASGN
-soltools/cpp/cpp.h:46
- int CBRA
-soltools/cpp/cpp.h:47
- int ASPCT
-soltools/cpp/cpp.h:47
- int ASSLASH
-soltools/cpp/cpp.h:47
- int ASMINUS
-soltools/cpp/cpp.h:47
- int ASCIRC
-soltools/cpp/cpp.h:47
- int ASLSH
-soltools/cpp/cpp.h:47
- int ASPLUS
-soltools/cpp/cpp.h:47
- int ASSTAR
-soltools/cpp/cpp.h:48
- int ASAND
-soltools/cpp/cpp.h:48
- int ASOR
-soltools/cpp/cpp.h:48
- int ASRSH
-soltools/cpp/cpp.h:48
- int ELLIPS
+starmath/inc/node.hxx:62
+ enum FontChangeMask HorAlign
svgio/inc/svgstyleattributes.hxx:62
enum svgio::svgreader::FontSize FontSize_notset
-svl/source/numbers/zformat.cxx:355
- enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM1
-svl/source/numbers/zformat.cxx:356
+svl/source/numbers/zformat.cxx:358
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM2
-svl/source/numbers/zformat.cxx:357
+svl/source/numbers/zformat.cxx:359
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM3
-svl/source/numbers/zformat.cxx:358
+svl/source/numbers/zformat.cxx:360
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM4
-svl/source/numbers/zformat.cxx:359
+svl/source/numbers/zformat.cxx:361
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM5
-svl/source/numbers/zformat.cxx:360
+svl/source/numbers/zformat.cxx:362
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM6
-svl/source/numbers/zformat.cxx:361
+svl/source/numbers/zformat.cxx:363
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM7
-svl/source/numbers/zformat.cxx:362
+svl/source/numbers/zformat.cxx:364
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM8
-svl/source/numbers/zformat.cxx:363
- enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM9
svl/source/numbers/zformat.cxx:365
- enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM0
-svl/source/numbers/zformat.cxx:366
+ enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM9
+svl/source/numbers/zformat.cxx:368
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM1
-svl/source/numbers/zformat.cxx:367
+svl/source/numbers/zformat.cxx:369
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM2
-svl/source/numbers/zformat.cxx:368
+svl/source/numbers/zformat.cxx:370
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM3
-svl/source/numbers/zformat.cxx:369
+svl/source/numbers/zformat.cxx:371
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM4
-svl/source/numbers/zformat.cxx:370
+svl/source/numbers/zformat.cxx:372
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM5
-svl/source/numbers/zformat.cxx:371
+svl/source/numbers/zformat.cxx:373
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM6
-svl/source/numbers/zformat.cxx:372
+svl/source/numbers/zformat.cxx:374
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM7
-svl/source/numbers/zformat.cxx:373
+svl/source/numbers/zformat.cxx:375
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM8
-svl/source/numbers/zformat.cxx:374
+svl/source/numbers/zformat.cxx:376
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM9
-svl/source/numbers/zformat.cxx:375
+svl/source/numbers/zformat.cxx:377
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM10
-svl/source/numbers/zformat.cxx:376
+svl/source/numbers/zformat.cxx:378
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM11
-svl/source/numbers/zformat.cxx:377
+svl/source/numbers/zformat.cxx:379
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM12
-svl/source/numbers/zformat.cxx:378
+svl/source/numbers/zformat.cxx:380
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM13
-svl/source/numbers/zformat.cxx:379
+svl/source/numbers/zformat.cxx:381
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM14
-svl/source/numbers/zformat.cxx:380
+svl/source/numbers/zformat.cxx:382
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM15
-svl/source/numbers/zformat.cxx:381
+svl/source/numbers/zformat.cxx:383
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM16
-svl/source/numbers/zformat.cxx:382
+svl/source/numbers/zformat.cxx:384
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM17
-svl/source/numbers/zformat.cxx:383
+svl/source/numbers/zformat.cxx:385
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM18
-svl/source/numbers/zformat.cxx:384
+svl/source/numbers/zformat.cxx:386
enum BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM19
-svtools/source/control/valueset.cxx:49
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/svtools/source/control/valueset.cxx:44:1) NAME_LINE_OFF_Y
-svtools/source/control/valueset.cxx:50
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/svtools/source/control/valueset.cxx:44:1) NAME_LINE_HEIGHT
-svtools/source/control/valueset.cxx:51
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/svtools/source/control/valueset.cxx:44:1) NAME_OFFSET
-svtools/source/control/valueset.cxx:52
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/svtools/source/control/valueset.cxx:44:1) SCRBAR_OFFSET
-sw/inc/docary.hxx:80
+svtools/source/contnr/fileview.cxx:109
+ enum FileViewFlags SHOW_ONLYTITLE
+svx/inc/galbrws2.hxx:53
+ enum GalleryItemFlags ThemeName
+svx/source/inc/docrecovery.hxx:85
+ enum EDocStates TryLoadBackup
+svx/source/inc/docrecovery.hxx:86
+ enum EDocStates TryLoadOriginal
+svx/source/inc/docrecovery.hxx:91
+ enum EDocStates Damaged
+svx/source/inc/docrecovery.hxx:93
+ enum EDocStates Incomplete
+svx/source/inc/docrecovery.hxx:95
+ enum EDocStates Succeeded
+sw/inc/dbmgr.hxx:485
+ enum sw::DBConnURIType MSJET
+sw/inc/dbmgr.hxx:486
+ enum sw::DBConnURIType MSACE
+sw/inc/docary.hxx:75
enum SwVectorModifyBase<class SwGrfFormatColl *>::DestructorPolicy FreeElements
-sw/inc/docary.hxx:80
- enum SwVectorModifyBase<class SwFrameFormat *>::DestructorPolicy FreeElements
-sw/inc/docary.hxx:80
+sw/inc/docary.hxx:75
enum SwVectorModifyBase<class SwTextFormatColl *>::DestructorPolicy FreeElements
-sw/inc/docufld.hxx:112
- enum SwExtUserSubType EU_FATHERSNAME
+sw/inc/docary.hxx:75
+ enum SwVectorModifyBase<class SwFrameFormat *>::DestructorPolicy FreeElements
sw/inc/docufld.hxx:113
+ enum SwExtUserSubType EU_FATHERSNAME
+sw/inc/docufld.hxx:114
enum SwExtUserSubType EU_APARTMENT
-sw/inc/poolfmt.hxx:117
+sw/inc/IDocumentRedlineAccess.hxx:57
+ enum RedlineFlags IgnoreDeleteRedlines
+sw/inc/poolfmt.hxx:116
enum RES_POOL_CHRFMT_TYPE RES_POOLCHR_LABEL
-sw/inc/poolfmt.hxx:118
+sw/inc/poolfmt.hxx:117
enum RES_POOL_CHRFMT_TYPE RES_POOLCHR_DROPCAPS
-sw/inc/poolfmt.hxx:125
+sw/inc/poolfmt.hxx:124
enum RES_POOL_CHRFMT_TYPE RES_POOLCHR_TOXJUMP
-sw/inc/poolfmt.hxx:132
+sw/inc/poolfmt.hxx:131
enum RES_POOL_CHRFMT_TYPE RES_POOLCHR_VERT_NUM
-sw/inc/poolfmt.hxx:160
+sw/inc/poolfmt.hxx:159
enum RES_POOL_FRMFMT_TYPE RES_POOLFRM_MARGINAL
-sw/inc/poolfmt.hxx:161
+sw/inc/poolfmt.hxx:160
enum RES_POOL_FRMFMT_TYPE RES_POOLFRM_WATERSIGN
-sw/inc/poolfmt.hxx:190
+sw/inc/poolfmt.hxx:189
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_NUM1
-sw/inc/poolfmt.hxx:191
+sw/inc/poolfmt.hxx:190
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_NUM2
-sw/inc/poolfmt.hxx:192
+sw/inc/poolfmt.hxx:191
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_NUM3
-sw/inc/poolfmt.hxx:193
+sw/inc/poolfmt.hxx:192
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_NUM4
-sw/inc/poolfmt.hxx:194
+sw/inc/poolfmt.hxx:193
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_NUM5
-sw/inc/poolfmt.hxx:195
+sw/inc/poolfmt.hxx:194
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_BUL1
-sw/inc/poolfmt.hxx:196
+sw/inc/poolfmt.hxx:195
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_BUL2
-sw/inc/poolfmt.hxx:197
+sw/inc/poolfmt.hxx:196
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_BUL3
-sw/inc/poolfmt.hxx:198
+sw/inc/poolfmt.hxx:197
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_BUL4
-sw/inc/poolfmt.hxx:199
+sw/inc/poolfmt.hxx:198
enum RES_POOL_NUMRULE_TYPE RES_POOLNUMRULE_BUL5
-sw/inc/poolfmt.hxx:209
- enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_3D
-sw/inc/poolfmt.hxx:256
+sw/inc/poolfmt.hxx:255
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_GREETING
-sw/inc/poolfmt.hxx:259
+sw/inc/poolfmt.hxx:258
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_MARGINAL
-sw/inc/poolfmt.hxx:272
+sw/inc/poolfmt.hxx:271
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_HEADLINE10
-sw/inc/poolfmt.hxx:282
+sw/inc/poolfmt.hxx:281
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL1S
-sw/inc/poolfmt.hxx:284
+sw/inc/poolfmt.hxx:283
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL1E
-sw/inc/poolfmt.hxx:286
+sw/inc/poolfmt.hxx:285
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL2S
-sw/inc/poolfmt.hxx:288
+sw/inc/poolfmt.hxx:287
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL2E
-sw/inc/poolfmt.hxx:290
+sw/inc/poolfmt.hxx:289
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL3S
-sw/inc/poolfmt.hxx:292
+sw/inc/poolfmt.hxx:291
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL3E
-sw/inc/poolfmt.hxx:294
+sw/inc/poolfmt.hxx:293
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL4S
-sw/inc/poolfmt.hxx:296
+sw/inc/poolfmt.hxx:295
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL4E
-sw/inc/poolfmt.hxx:298
+sw/inc/poolfmt.hxx:297
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL5S
-sw/inc/poolfmt.hxx:300
+sw/inc/poolfmt.hxx:299
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_NUM_LEVEL5E
-sw/inc/poolfmt.hxx:304
+sw/inc/poolfmt.hxx:303
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL1S
-sw/inc/poolfmt.hxx:306
+sw/inc/poolfmt.hxx:305
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL1E
-sw/inc/poolfmt.hxx:308
+sw/inc/poolfmt.hxx:307
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL2S
-sw/inc/poolfmt.hxx:310
+sw/inc/poolfmt.hxx:309
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL2E
-sw/inc/poolfmt.hxx:312
+sw/inc/poolfmt.hxx:311
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL3S
-sw/inc/poolfmt.hxx:314
+sw/inc/poolfmt.hxx:313
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL3E
-sw/inc/poolfmt.hxx:316
+sw/inc/poolfmt.hxx:315
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL4S
-sw/inc/poolfmt.hxx:318
+sw/inc/poolfmt.hxx:317
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL4E
-sw/inc/poolfmt.hxx:320
+sw/inc/poolfmt.hxx:319
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL5S
-sw/inc/poolfmt.hxx:322
+sw/inc/poolfmt.hxx:321
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_BUL_LEVEL5E
-sw/inc/poolfmt.hxx:337
+sw/inc/poolfmt.hxx:336
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_FOOTERL
-sw/inc/poolfmt.hxx:338
+sw/inc/poolfmt.hxx:337
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_FOOTERR
sw/inc/poolfmt.hxx:382
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_TOX_USER1
@@ -796,8 +1370,6 @@ sw/inc/poolfmt.hxx:404
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_TOX_TABLES1
sw/inc/poolfmt.hxx:408
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_TOX_AUTHORITIES1
-sw/inc/poolfmt.hxx:411
- enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_TOX_USER6
sw/inc/poolfmt.hxx:412
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_TOX_USER7
sw/inc/poolfmt.hxx:413
@@ -808,11 +1380,15 @@ sw/inc/poolfmt.hxx:415
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_TOX_USER10
sw/inc/poolfmt.hxx:422
enum RES_POOL_COLLFMT_TYPE RES_POOLCOLL_DOC_TITEL
-sw/inc/reffld.hxx:37
+sw/inc/reffld.hxx:38
enum REFERENCESUBTYPE REF_OUTLINE
-sw/source/core/inc/dbg_lay.hxx:37
+sw/inc/undobj.hxx:134
+ enum DelContentType Fly
+sw/inc/undobj.hxx:135
+ enum DelContentType Bkm
+sw/source/core/inc/dbg_lay.hxx:38
enum PROT Pos
-sw/source/core/inc/dbg_lay.hxx:45
+sw/source/core/inc/dbg_lay.hxx:46
enum PROT Snapshot
sw/source/core/inc/SwXMLBlockImport.hxx:81
enum SwXMLTextBlockToken OFFICE_BODY
@@ -828,95 +1404,71 @@ sw/source/core/inc/SwXMLBlockImport.hxx:107
enum SwXMLBlockListToken BLOCK
sw/source/core/inc/SwXMLBlockImport.hxx:108
enum SwXMLBlockListToken BLOCK_LIST
-sw/source/core/unocore/unosett.cxx:1600
- enum (anonymous at /home/noel/libo3/sw/source/core/unocore/unosett.cxx:1599:5) NotInChapterFirst
-sw/source/core/unocore/unosett.cxx:1601
- enum (anonymous at /home/noel/libo3/sw/source/core/unocore/unosett.cxx:1599:5) NotInChapterLast
-sw/source/core/unocore/unosett.cxx:1602
- enum (anonymous at /home/noel/libo3/sw/source/core/unocore/unosett.cxx:1599:5) InChapterFirst
-sw/source/core/unocore/unosett.cxx:1603
- enum (anonymous at /home/noel/libo3/sw/source/core/unocore/unosett.cxx:1599:5) InChapterLast
-sw/source/filter/inc/wrt_fn.hxx:46
- enum RES_NODE RES_NODE_END
-sw/source/filter/ww8/sprmids.hxx:244
- enum NS_sprm::sgc paragraph
-sw/source/filter/ww8/sprmids.hxx:245
- enum NS_sprm::sgc character
-sw/source/filter/ww8/sprmids.hxx:246
- enum NS_sprm::sgc picture
-sw/source/filter/ww8/sprmids.hxx:247
- enum NS_sprm::sgc section
-sw/source/filter/ww8/sprmids.hxx:248
- enum NS_sprm::sgc table
-sw/source/filter/ww8/sprmids.hxx:252
- enum NS_sprm::spra operand_toggle_1b_0
-sw/source/filter/ww8/sprmids.hxx:253
- enum NS_sprm::spra operand_1b_1
-sw/source/filter/ww8/sprmids.hxx:254
- enum NS_sprm::spra operand_2b_2
-sw/source/filter/ww8/sprmids.hxx:255
- enum NS_sprm::spra operand_4b_3
-sw/source/filter/ww8/sprmids.hxx:256
- enum NS_sprm::spra operand_2b_4
-sw/source/filter/ww8/sprmids.hxx:257
- enum NS_sprm::spra operand_2b_5
-sw/source/filter/ww8/sprmids.hxx:258
- enum NS_sprm::spra operand_varlen_6
-sw/source/filter/ww8/sprmids.hxx:259
- enum NS_sprm::spra operand_3b_7
-sw/source/filter/ww8/ww8scan.hxx:599
+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
+sw/source/core/unocore/unosett.cxx:1579
+ enum (anonymous at /media/noel/disk2/libo6/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
+sw/source/core/unocore/unosett.cxx:1581
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/core/unocore/unosett.cxx:1577:5) InChapterLast
+sw/source/filter/html/css1atr.cxx:117
+ enum Css1FrameSize AnyHeight
+sw/source/filter/ww8/ww8scan.hxx:604
enum WW8PLCFx_Fc_FKP::Limits eMaxCache
-sw/source/ui/fldui/fldref.cxx:749
- enum FMT_REF_IDX FMT_REF_PAGE_PGDSC_IDX
-sw/source/ui/fldui/fldref.cxx:752
- enum FMT_REF_IDX FMT_REF_ONLYSEQNO_IDX
-sw/source/uibase/dbui/dbmgr.cxx:2565
- enum (anonymous namespace)::DBConnURIType MSJET
-sw/source/uibase/dbui/dbmgr.cxx:2566
- enum (anonymous namespace)::DBConnURIType MSACE
-sw/source/uibase/utlui/content.cxx:802
- enum STR_CONTEXT_IDX IDX_STR_HYPERLINK
-sw/source/uibase/utlui/glbltree.cxx:146
- enum GLOBAL_CONTEXT_IDX IDX_STR_UPDATE_SEL
-tools/source/fsys/urlobj.cxx:436
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PA
-tools/source/fsys/urlobj.cxx:437
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PD
-tools/source/fsys/urlobj.cxx:438
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PE
-tools/source/fsys/urlobj.cxx:439
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PF
-tools/source/fsys/urlobj.cxx:440
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PG
-tools/source/fsys/urlobj.cxx:441
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PH
-tools/source/fsys/urlobj.cxx:442
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PI
-tools/source/fsys/urlobj.cxx:443
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PJ
-tools/source/fsys/urlobj.cxx:444
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PK
-tools/source/fsys/urlobj.cxx:445
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PL
-tools/source/fsys/urlobj.cxx:447
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PN
-tools/source/fsys/urlobj.cxx:448
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PO
-tools/source/fsys/urlobj.cxx:450
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PQ
-tools/source/fsys/urlobj.cxx:451
- enum (anonymous namespace)::(anonymous at /home/noel/libo3/tools/source/fsys/urlobj.cxx:434:1) PR
-tools/source/generic/poly.cxx:1135
- enum (anonymous at /home/noel/libo3/tools/source/generic/poly.cxx:1135:5) maxRecursionDepth
-vcl/inc/fontsubset.hxx:34
- enum FontType SFNT_CFF
-vcl/source/gdi/CommonSalLayout.cxx:383
+sw/source/uibase/inc/envimg.hxx:31
+ enum SwEnvAlign ENV_HOR_CNTR
+sw/source/uibase/inc/envimg.hxx:32
+ enum SwEnvAlign ENV_HOR_RGHT
+sw/source/uibase/inc/envimg.hxx:33
+ enum SwEnvAlign ENV_VER_LEFT
+sw/source/uibase/inc/envimg.hxx:34
+ enum SwEnvAlign ENV_VER_CNTR
+tools/source/generic/poly.cxx:1122
+ enum (anonymous at /media/noel/disk2/libo6/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/salptype.hxx:45
+ enum SalPrinterError Abort
+vcl/source/gdi/CommonSalLayout.cxx:128
enum (anonymous namespace)::VerticalOrientation Upright
-vcl/source/gdi/CommonSalLayout.cxx:386
+vcl/source/gdi/CommonSalLayout.cxx:131
enum (anonymous namespace)::VerticalOrientation TransformedRotated
-writerfilter/source/dmapper/PropertyIds.hxx:156
- enum writerfilter::dmapper::PropertyIds PROP_HORI_MIRRORED_ON_EVEN_PAGES
+writerfilter/source/dmapper/PropertyIds.hxx:134
+ enum writerfilter::dmapper::PropertyIds PROP_GAMMA
writerfilter/source/dmapper/PropertyIds.hxx:157
+ enum writerfilter::dmapper::PropertyIds PROP_HORI_MIRRORED_ON_EVEN_PAGES
+writerfilter/source/dmapper/PropertyIds.hxx:158
enum writerfilter::dmapper::PropertyIds PROP_HORI_MIRRORED_ON_ODD_PAGES
-writerfilter/source/dmapper/PropertyIds.hxx:272
+writerfilter/source/dmapper/PropertyIds.hxx:222
+ enum writerfilter::dmapper::PropertyIds PROP_PRINTER_PAPER_TRAY_INDEX
+writerfilter/source/dmapper/PropertyIds.hxx:274
enum writerfilter::dmapper::PropertyIds PROP_VERT_MIRRORED
+writerfilter/source/ooxml/OOXMLFactory.hxx:39
+ enum writerfilter::ooxml::ResourceType List
+writerfilter/source/ooxml/OOXMLFactory.hxx:40
+ enum writerfilter::ooxml::ResourceType Integer
+writerfilter/source/ooxml/OOXMLFactory.hxx:42
+ enum writerfilter::ooxml::ResourceType Hex
+writerfilter/source/ooxml/OOXMLFactory.hxx:43
+ enum writerfilter::ooxml::ResourceType HexColor
+writerfilter/source/ooxml/OOXMLFactory.hxx:44
+ enum writerfilter::ooxml::ResourceType String
+writerfilter/source/ooxml/OOXMLFactory.hxx:46
+ enum writerfilter::ooxml::ResourceType Boolean
+writerfilter/source/ooxml/OOXMLFactory.hxx:55
+ enum writerfilter::ooxml::ResourceType TwipsMeasure_asSigned
+writerfilter/source/ooxml/OOXMLFactory.hxx:56
+ enum writerfilter::ooxml::ResourceType TwipsMeasure_asZero
+writerfilter/source/ooxml/OOXMLFactory.hxx:57
+ enum writerfilter::ooxml::ResourceType HpsMeasure
+writerfilter/source/ooxml/OOXMLFactory.hxx:58
+ enum writerfilter::ooxml::ResourceType MeasurementOrPercent
+xmloff/source/forms/propertyexport.hxx:38
+ enum BoolAttrFlags DefaultMask
diff --git a/compilerplugins/clang/unusedenumconstants.untouched.results b/compilerplugins/clang/unusedenumconstants.untouched.results
index b586272daa6b..d31d48928b5a 100644
--- a/compilerplugins/clang/unusedenumconstants.untouched.results
+++ b/compilerplugins/clang/unusedenumconstants.untouched.results
@@ -1,5 +1,3 @@
-dbaccess/source/filter/xml/xmlEnums.hxx:31
- enum dbaxml::XMLDocTokens XML_TOK_DOC_META
drawinglayer/source/tools/emfpbrush.hxx:32
enum emfplushelper::EmfPlusHatchStyle HatchStyleVertical
drawinglayer/source/tools/emfpbrush.hxx:33
@@ -80,213 +78,171 @@ drawinglayer/source/tools/emfpbrush.hxx:82
enum emfplushelper::EmfPlusHatchStyle HatchStyleOutlinedDiamond
drawinglayer/source/tools/emfpbrush.hxx:83
enum emfplushelper::EmfPlusHatchStyle HatchStyleSolidDiamond
-drawinglayer/source/tools/emfphelperdata.cxx:101
+drawinglayer/source/tools/emfpimage.hxx:31
emfplushelper::ImageDataType ImageDataTypeUnknown
-drawinglayer/source/tools/emfphelperdata.hxx:110
- enum emfplushelper::UnitType UnitTypeWorld
-drawinglayer/source/tools/emfphelperdata.hxx:111
- enum emfplushelper::UnitType UnitTypeDisplay
-drawinglayer/source/tools/emfphelperdata.hxx:113
- enum emfplushelper::UnitType UnitTypePoint
-drawinglayer/source/tools/emfphelperdata.hxx:114
- enum emfplushelper::UnitType UnitTypeInch
-drawinglayer/source/tools/emfphelperdata.hxx:115
- enum emfplushelper::UnitType UnitTypeDocument
-drawinglayer/source/tools/emfphelperdata.hxx:116
- enum emfplushelper::UnitType UnitTypeMillimeter
-include/connectivity/dbtools.hxx:831
+include/connectivity/dbtools.hxx:822
enum connectivity::dbase::DBFType dBaseIVMemo
include/editeng/borderline.hxx:128
enum SvxBorderLineStyle BORDER_LINE_STYLE_MAX
-include/i18nutil/transliteration.hxx:46
+include/i18nutil/transliteration.hxx:45
enum TransliterationFlags NumToTextLower_zh_CN
-include/i18nutil/transliteration.hxx:48
+include/i18nutil/transliteration.hxx:47
enum TransliterationFlags NumToTextUpper_zh_CN
-include/i18nutil/transliteration.hxx:50
+include/i18nutil/transliteration.hxx:49
enum TransliterationFlags NumToTextLower_zh_TW
-include/i18nutil/transliteration.hxx:52
+include/i18nutil/transliteration.hxx:51
enum TransliterationFlags NumToTextUpper_zh_TW
-include/i18nutil/transliteration.hxx:54
+include/i18nutil/transliteration.hxx:53
enum TransliterationFlags NumToTextFormalHangul_ko
-include/i18nutil/transliteration.hxx:56
+include/i18nutil/transliteration.hxx:55
enum TransliterationFlags NumToTextFormalLower_ko
-include/i18nutil/transliteration.hxx:58
+include/i18nutil/transliteration.hxx:57
enum TransliterationFlags NumToTextFormalUpper_ko
-include/i18nutil/transliteration.hxx:118
+include/i18nutil/transliteration.hxx:117
enum TransliterationFlags smallToLarge_ja_JP
-include/i18nutil/transliteration.hxx:120
+include/i18nutil/transliteration.hxx:119
enum TransliterationFlags largeToSmall_ja_JP
-include/LibreOfficeKit/LibreOfficeKitEnums.h:38
- LibreOfficeKitTileMode LOK_TILEMODE_RGBA
+include/LibreOfficeKit/LibreOfficeKitEnums.h:628
+ LibreOfficeKitExtTextInputType LOK_EXT_TEXTINPUT_POS
include/oox/ole/axfontdata.hxx:39
enum AxFontFlags Disabled
include/oox/ole/axfontdata.hxx:40
enum AxFontFlags AutoColor
-include/svx/cube3d.hxx:57
- enum CubeFaces Full
-include/unotools/eventcfg.hxx:33
+include/unotools/eventcfg.hxx:29
enum GlobalEventId STARTAPP
-include/unotools/eventcfg.hxx:34
+include/unotools/eventcfg.hxx:30
enum GlobalEventId CLOSEAPP
+include/vcl/syswin.hxx:54
+ enum WindowStateState FullScreen
libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:61
- enum (anonymous at /home/noel/libo3/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:59:1) PROP_0
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:59:1) PROP_0
libreofficekit/source/gtk/lokdocview.cxx:287
- enum (anonymous at /home/noel/libo3/libreofficekit/source/gtk/lokdocview.cxx:285:1) PROP_0
-sc/source/filter/xml/xmlimprt.hxx:89
- enum ScXMLCondFormatsTokens XML_TOK_CONDFORMATS_CONDFORMAT
-sc/source/filter/xml/xmlimprt.hxx:94
- enum ScXMLCondFormatTokens XML_TOK_CONDFORMAT_COLORSCALE
-sc/source/filter/xml/xmlimprt.hxx:95
- enum ScXMLCondFormatTokens XML_TOK_CONDFORMAT_DATABAR
-sc/source/filter/xml/xmlimprt.hxx:96
- enum ScXMLCondFormatTokens XML_TOK_CONDFORMAT_CONDITION
-sc/source/filter/xml/xmlimprt.hxx:97
- enum ScXMLCondFormatTokens XML_TOK_CONDFORMAT_ICONSET
-sc/source/filter/xml/xmlimprt.hxx:98
- enum ScXMLCondFormatTokens XML_TOK_CONDFORMAT_DATE
-sc/source/filter/xml/xmlimprt.hxx:103
- enum ScXMLCondFormatAttrTokens XML_TOK_CONDFORMAT_TARGET_RANGE
-sc/source/filter/xml/xmlimprt.hxx:108
- enum ScXMLCondDateAttrTokens XML_TOK_COND_DATE_VALUE
-sc/source/filter/xml/xmlimprt.hxx:109
- enum ScXMLCondDateAttrTokens XML_TOK_COND_DATE_STYLE
-sc/source/filter/xml/xmlimprt.hxx:114
- enum ScXMLConditionAttrTokens XML_TOK_CONDITION_VALUE
-sc/source/filter/xml/xmlimprt.hxx:115
- enum ScXMLConditionAttrTokens XML_TOK_CONDITION_APPLY_STYLE_NAME
-sc/source/filter/xml/xmlimprt.hxx:116
- enum ScXMLConditionAttrTokens XML_TOK_CONDITION_BASE_CELL_ADDRESS
-sc/source/filter/xml/xmlimprt.hxx:121
- enum ScXMLColorScaleFormatTokens XML_TOK_COLORSCALE_COLORSCALEENTRY
-sc/source/filter/xml/xmlimprt.hxx:126
- enum ScXMLColorScaleEntryAttrTokens XML_TOK_COLORSCALEENTRY_TYPE
-sc/source/filter/xml/xmlimprt.hxx:127
- enum ScXMLColorScaleEntryAttrTokens XML_TOK_COLORSCALEENTRY_VALUE
-sc/source/filter/xml/xmlimprt.hxx:128
- enum ScXMLColorScaleEntryAttrTokens XML_TOK_COLORSCALEENTRY_COLOR
-sc/source/filter/xml/xmlimprt.hxx:133
- enum ScXMLFormattingFormatTokens XML_TOK_DATABAR_DATABARENTRY
-sc/source/filter/xml/xmlimprt.hxx:134
- enum ScXMLFormattingFormatTokens XML_TOK_FORMATTING_ENTRY
-sc/source/filter/xml/xmlimprt.hxx:139
- enum ScXMLDataBarAttrTokens XML_TOK_DATABAR_POSITIVE_COLOR
-sc/source/filter/xml/xmlimprt.hxx:140
- enum ScXMLDataBarAttrTokens XML_TOK_DATABAR_NEGATIVE_COLOR
-sc/source/filter/xml/xmlimprt.hxx:141
- enum ScXMLDataBarAttrTokens XML_TOK_DATABAR_GRADIENT
-sc/source/filter/xml/xmlimprt.hxx:142
- enum ScXMLDataBarAttrTokens XML_TOK_DATABAR_AXISPOSITION
-sc/source/filter/xml/xmlimprt.hxx:143
- enum ScXMLDataBarAttrTokens XML_TOK_DATABAR_SHOWVALUE
-sc/source/filter/xml/xmlimprt.hxx:144
- enum ScXMLDataBarAttrTokens XML_TOK_DATABAR_AXISCOLOR
-sc/source/filter/xml/xmlimprt.hxx:145
- enum ScXMLDataBarAttrTokens XML_TOK_DATABAR_MINLENGTH
-sc/source/filter/xml/xmlimprt.hxx:146
- enum ScXMLDataBarAttrTokens XML_TOK_DATABAR_MAXLENGTH
-sc/source/filter/xml/xmlimprt.hxx:151
- enum ScXMLDataBarEntryAttrTokens XML_TOK_DATABARENTRY_TYPE
-sc/source/filter/xml/xmlimprt.hxx:152
- enum ScXMLDataBarEntryAttrTokens XML_TOK_DATABARENTRY_VALUE
-sc/source/filter/xml/xmlimprt.hxx:157
- enum ScXMLIconSetAttrTokens XML_TOK_ICONSET_TYPE
-sc/source/filter/xml/xmlimprt.hxx:158
- enum ScXMLIconSetAttrTokens XML_TOK_ICONSET_SHOWVALUE
-svgio/inc/svgstyleattributes.hxx:104
- enum svgio::svgreader::FontVariant FontVariant_notset
-svgio/inc/svgstyleattributes.hxx:105
- enum svgio::svgreader::FontVariant FontVariant_normal
-svgio/inc/svgstyleattributes.hxx:106
- enum svgio::svgreader::FontVariant FontVariant_small_caps
-sw/inc/poolfmt.hxx:97
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:285:1) PROP_0
+sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:105
+ enum (anonymous namespace)::ScRegType LINEAR
+sw/inc/poolfmt.hxx:96
enum RES_POOLFMT RES_POOL_CHRFMT
-sw/inc/poolfmt.hxx:98
+sw/inc/poolfmt.hxx:97
enum RES_POOLFMT RES_POOL_FRMFMT
-sw/inc/poolfmt.hxx:99
+sw/inc/poolfmt.hxx:98
enum RES_POOLFMT RES_POOL_TXTCOLL
-sw/inc/poolfmt.hxx:100
+sw/inc/poolfmt.hxx:99
enum RES_POOLFMT RES_POOL_PAGEFMT
-sw/inc/poolfmt.hxx:102
+sw/inc/poolfmt.hxx:101
enum RES_POOLFMT RES_POOL_PARFMT
-sw/inc/poolfmt.hxx:103
+sw/inc/poolfmt.hxx:102
enum RES_POOLFMT RES_POOL_GRFFMT
-sw/inc/poolfmt.hxx:104
+sw/inc/poolfmt.hxx:103
enum RES_POOLFMT RES_POOLFMT_END
-sw/inc/poolfmt.hxx:210
+sw/inc/poolfmt.hxx:209
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_BLACK1
-sw/inc/poolfmt.hxx:211
+sw/inc/poolfmt.hxx:210
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_BLACK2
-sw/inc/poolfmt.hxx:212
+sw/inc/poolfmt.hxx:211
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_BLUE
-sw/inc/poolfmt.hxx:213
+sw/inc/poolfmt.hxx:212
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_BROWN
-sw/inc/poolfmt.hxx:214
+sw/inc/poolfmt.hxx:213
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_CURRENCY
-sw/inc/poolfmt.hxx:215
+sw/inc/poolfmt.hxx:214
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_CURRENCY_3D
-sw/inc/poolfmt.hxx:216
+sw/inc/poolfmt.hxx:215
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_CURRENCY_GRAY
-sw/inc/poolfmt.hxx:217
+sw/inc/poolfmt.hxx:216
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_CURRENCY_LAVENDER
-sw/inc/poolfmt.hxx:218
+sw/inc/poolfmt.hxx:217
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_CURRENCY_TURQUOISE
-sw/inc/poolfmt.hxx:219
+sw/inc/poolfmt.hxx:218
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_GRAY
-sw/inc/poolfmt.hxx:220
+sw/inc/poolfmt.hxx:219
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_GREEN
-sw/inc/poolfmt.hxx:221
+sw/inc/poolfmt.hxx:220
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LAVENDER
-sw/inc/poolfmt.hxx:222
+sw/inc/poolfmt.hxx:221
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_RED
-sw/inc/poolfmt.hxx:223
+sw/inc/poolfmt.hxx:222
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_TURQUOISE
-sw/inc/poolfmt.hxx:224
+sw/inc/poolfmt.hxx:223
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_YELLOW
-sw/inc/poolfmt.hxx:226
+sw/inc/poolfmt.hxx:225
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_ACADEMIC
-sw/inc/poolfmt.hxx:227
+sw/inc/poolfmt.hxx:226
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_BOX_LIST_BLUE
-sw/inc/poolfmt.hxx:228
+sw/inc/poolfmt.hxx:227
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_BOX_LIST_GREEN
-sw/inc/poolfmt.hxx:229
+sw/inc/poolfmt.hxx:228
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_BOX_LIST_RED
-sw/inc/poolfmt.hxx:230
+sw/inc/poolfmt.hxx:229
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_BOX_LIST_YELLOW
-sw/inc/poolfmt.hxx:231
+sw/inc/poolfmt.hxx:230
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_ELEGANT
-sw/inc/poolfmt.hxx:232
+sw/inc/poolfmt.hxx:231
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_FINANCIAL
-sw/inc/poolfmt.hxx:233
+sw/inc/poolfmt.hxx:232
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_SIMPLE_GRID_COLUMNS
-sw/inc/poolfmt.hxx:234
+sw/inc/poolfmt.hxx:233
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_SIMPLE_GRID_ROWS
-sw/inc/poolfmt.hxx:235
+sw/inc/poolfmt.hxx:234
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABLESTYLE_LO6_SIMPLE_LIST_SHADED
-sw/source/ui/fldui/fldref.cxx:745
+sw/source/ui/fldui/fldref.cxx:756
enum FMT_REF_IDX FMT_REF_PAGE_IDX
-sw/source/ui/fldui/fldref.cxx:746
+sw/source/ui/fldui/fldref.cxx:757
enum FMT_REF_IDX FMT_REF_CHAPTER_IDX
-sw/source/ui/fldui/fldref.cxx:747
+sw/source/ui/fldui/fldref.cxx:758
enum FMT_REF_IDX FMT_REF_TEXT_IDX
-sw/source/ui/fldui/fldref.cxx:748
+sw/source/ui/fldui/fldref.cxx:759
enum FMT_REF_IDX FMT_REF_UPDOWN_IDX
-sw/source/ui/fldui/fldref.cxx:750
+sw/source/ui/fldui/fldref.cxx:761
enum FMT_REF_IDX FMT_REF_ONLYNUMBER_IDX
-sw/source/ui/fldui/fldref.cxx:751
+sw/source/ui/fldui/fldref.cxx:762
enum FMT_REF_IDX FMT_REF_ONLYCAPTION_IDX
-sw/source/uibase/utlui/content.cxx:803
+sw/source/uibase/utlui/content.cxx:824
enum STR_CONTEXT_IDX IDX_STR_LINK_REGION
-sw/source/uibase/utlui/content.cxx:804
+sw/source/uibase/utlui/content.cxx:825
enum STR_CONTEXT_IDX IDX_STR_COPY_REGION
-sw/source/uibase/utlui/content.cxx:809
+sw/source/uibase/utlui/content.cxx:830
enum STR_CONTEXT_IDX IDX_STR_INACTIVE
-sw/source/uibase/utlui/glbltree.cxx:147
+sw/source/uibase/utlui/glbltree.cxx:146
enum GLOBAL_CONTEXT_IDX IDX_STR_UPDATE_INDEX
-sw/source/uibase/utlui/glbltree.cxx:148
+sw/source/uibase/utlui/glbltree.cxx:147
enum GLOBAL_CONTEXT_IDX IDX_STR_UPDATE_LINK
-sw/source/uibase/utlui/glbltree.cxx:149
+sw/source/uibase/utlui/glbltree.cxx:148
enum GLOBAL_CONTEXT_IDX IDX_STR_UPDATE_ALL
-vcl/source/gdi/CommonSalLayout.cxx:384
+vcl/inc/salptype.hxx:44
+ enum SalPrinterError General
+vcl/inc/unx/saldisp.hxx:65
+ srv_vendor_t vendor_none
+vcl/source/gdi/CommonSalLayout.cxx:129
enum (anonymous namespace)::VerticalOrientation Rotated
-xmloff/source/style/ImageStyle.cxx:45
+vcl/unx/gtk3/gtk3gtkinst.cxx:2524
+ enum (anonymous at /media/noel/disk2/libo6/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
+writerfilter/source/ooxml/OOXMLFactory.hxx:36
+ enum writerfilter::ooxml::ResourceType NoResource
+writerfilter/source/ooxml/OOXMLFactory.hxx:37
+ enum writerfilter::ooxml::ResourceType Table
+writerfilter/source/ooxml/OOXMLFactory.hxx:38
+ enum writerfilter::ooxml::ResourceType Stream
+writerfilter/source/ooxml/OOXMLFactory.hxx:41
+ enum writerfilter::ooxml::ResourceType Properties
+writerfilter/source/ooxml/OOXMLFactory.hxx:45
+ enum writerfilter::ooxml::ResourceType Shape
+writerfilter/source/ooxml/OOXMLFactory.hxx:47
+ enum writerfilter::ooxml::ResourceType Value
+writerfilter/source/ooxml/OOXMLFactory.hxx:48
+ enum writerfilter::ooxml::ResourceType XNote
+writerfilter/source/ooxml/OOXMLFactory.hxx:49
+ enum writerfilter::ooxml::ResourceType TextTableCell
+writerfilter/source/ooxml/OOXMLFactory.hxx:50
+ enum writerfilter::ooxml::ResourceType TextTableRow
+writerfilter/source/ooxml/OOXMLFactory.hxx:51
+ enum writerfilter::ooxml::ResourceType TextTable
+writerfilter/source/ooxml/OOXMLFactory.hxx:52
+ enum writerfilter::ooxml::ResourceType PropertyTable
+writerfilter/source/ooxml/OOXMLFactory.hxx:53
+ enum writerfilter::ooxml::ResourceType Math
+writerfilter/source/ooxml/OOXMLFactory.hxx:54
+ enum writerfilter::ooxml::ResourceType Any
+xmloff/source/style/HatchStyle.cxx:49
enum SvXMLTokenMapAttrs XML_TOK_TABSTOP_END
diff --git a/compilerplugins/clang/unusedenumconstants.writeonly.results b/compilerplugins/clang/unusedenumconstants.writeonly.results
index 2efcd5310136..1e0875d07641 100644
--- a/compilerplugins/clang/unusedenumconstants.writeonly.results
+++ b/compilerplugins/clang/unusedenumconstants.writeonly.results
@@ -1,4 +1,4 @@
-basctl/source/basicide/baside3.cxx:903
+basctl/source/basicide/baside3.cxx:891
enum NameClashMode NO_CLASH
basctl/source/basicide/doceventnotifier.cxx:59
enum basctl::ListenerAction RemoveListener
@@ -8,21 +8,15 @@ basctl/source/basicide/macrodlg.hxx:36
enum basctl::MacroExitCode Macro_New
basctl/source/basicide/macrodlg.hxx:37
enum basctl::MacroExitCode Macro_Edit
-basctl/source/inc/bastype2.hxx:41
- enum BrowseMode Modules
-basctl/source/inc/bastype2.hxx:42
- enum BrowseMode Subs
-basctl/source/inc/bastype2.hxx:43
- enum BrowseMode Dialogs
basctl/source/inc/bastype2.hxx:44
enum BrowseMode All
-basctl/source/inc/dlged.hxx:99
+basctl/source/inc/dlged.hxx:100
enum basctl::DlgEditor::Mode SELECT
basctl/source/inc/dlgeddef.hxx:30
- enum basctl::(anonymous at basctl/source/inc/dlgeddef.hxx:28:1) OBJ_DLG_CONTROL
+ enum basctl::(anonymous at /media/noel/disk2/libo6/basctl/source/inc/dlgeddef.hxx:28:1) OBJ_DLG_CONTROL
basctl/source/inc/dlgeddef.hxx:31
- enum basctl::(anonymous at basctl/source/inc/dlgeddef.hxx:28:1) OBJ_DLG_DIALOG
-basctl/source/inc/layout.hxx:82
+ enum basctl::(anonymous at /media/noel/disk2/libo6/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
enum basctl::ItemType TYPE_SHELL
@@ -30,14 +24,14 @@ basctl/source/inc/sbxitem.hxx:32
enum basctl::ItemType TYPE_LIBRARY
basctl/source/inc/scriptdocument.hxx:47
enum basctl::LibraryLocation LIBRARY_LOCATION_UNKNOWN
-basegfx/source/range/b2drangeclipper.cxx:155
+basegfx/source/range/b2drangeclipper.cxx:153
enum basegfx::(anonymous namespace)::SweepLineEvent::EdgeType FINISHING_EDGE
-basegfx/source/range/b2drangeclipper.cxx:161
+basegfx/source/range/b2drangeclipper.cxx:159
enum basegfx::(anonymous namespace)::SweepLineEvent::EdgeDirection PROCEED_UP
-basegfx/source/range/b2drangeclipper.cxx:802
- enum basegfx::(anonymous namespace)::(anonymous at basegfx/source/range/b2drangeclipper.cxx:802:9) PerformErase
-basegfx/source/range/b2drangeclipper.cxx:802
- enum basegfx::(anonymous namespace)::(anonymous at basegfx/source/range/b2drangeclipper.cxx:802: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) PerformErase
+basegfx/source/range/b2drangeclipper.cxx:794
+ enum basegfx::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/basegfx/source/range/b2drangeclipper.cxx:794:9) NoErase
basic/source/inc/expr.hxx:62
enum SbiExprMode EXPRMODE_STANDARD
basic/source/inc/expr.hxx:79
@@ -52,420 +46,430 @@ basic/source/inc/image.hxx:36
enum SbiImageFlags INITCODE
basic/source/inc/image.hxx:37
enum SbiImageFlags CLASSMODULE
-basic/source/inc/iosys.hxx:37
- enum SbiStreamFlags Input
-basic/source/inc/iosys.hxx:38
- enum SbiStreamFlags Output
basic/source/inc/iosys.hxx:39
- enum SbiStreamFlags Random
-basic/source/inc/iosys.hxx:40
- enum SbiStreamFlags Append
+ enum SbiStreamFlags Output
basic/source/inc/iosys.hxx:41
- enum SbiStreamFlags Binary
-basic/source/inc/namecont.hxx:227
- enum basic::SfxLibraryContainer::InitMode LIBRARY_INIT_FILE
+ 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:94
+basic/source/inc/runtime.hxx:88
enum SbAttributes READONLY
-basic/source/inc/runtime.hxx:95
+basic/source/inc/runtime.hxx:89
enum SbAttributes HIDDEN
-basic/source/inc/runtime.hxx:96
+basic/source/inc/runtime.hxx:90
enum SbAttributes DIRECTORY
+basic/source/runtime/methods.cxx:4365
+ enum BasicResponse Ok
+basic/source/runtime/methods.cxx:4366
+ enum BasicResponse Cancel
+basic/source/runtime/methods.cxx:4367
+ enum BasicResponse Abort
+basic/source/runtime/methods.cxx:4368
+ enum BasicResponse Retry
+basic/source/runtime/methods.cxx:4369
+ enum BasicResponse Ignore
+basic/source/runtime/methods.cxx:4370
+ enum BasicResponse Yes
+basic/source/runtime/methods.cxx:4371
+ enum BasicResponse No
binaryurp/source/cache.hxx:36
- enum binaryurp::cache::(anonymous at binaryurp/qa/../source/cache.hxx:36:1) size
-chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:66
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_MAX
+ enum binaryurp::cache::(anonymous at /media/noel/disk2/libo6/binaryurp/qa/../source/cache.hxx:36:1) size
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:67
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_MIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAX
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:68
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_STEPMAIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:69
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_STEPHELP
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPMAIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:70
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_STEPHELP_COUNT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:71
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_AUTO_MAX
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP_COUNT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:72
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_AUTO_MIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MAX
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:73
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_AUTO_STEPMAIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:74
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_AUTO_STEPHELP
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPMAIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:75
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_TYPE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPHELP
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:76
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_TIME_INCREMENT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TYPE
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:77
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_EXPLICIT_TIME_INCREMENT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TIME_INCREMENT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:78
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_LOGARITHMIC
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_REVERSEDIRECTION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LOGARITHMIC
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:80
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_VISIBLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_REVERSEDIRECTION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:81
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_CROSSOVER_POSITION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_VISIBLE
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:82
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_CROSSOVER_VALUE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_POSITION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:83
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_ORIGIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_VALUE
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:84
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_AUTO_ORIGIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ORIGIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:85
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_MARKS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_ORIGIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:86
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_HELPMARKS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARKS
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:87
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_MARK_POSITION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_HELPMARKS
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:88
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_DISPLAY_LABELS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARK_POSITION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:89
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_NUMBERFORMAT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_LABELS
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:90
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_LINK_NUMBERFORMAT_TO_SOURCE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_NUMBERFORMAT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:91
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_LABEL_POSITION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_TEXT_ROTATION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LABEL_POSITION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:93
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_ARRANGE_ORDER
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXT_ROTATION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:94
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_TEXTBREAK
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ARRANGE_ORDER
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:95
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_CAN_OVERLAP
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXTBREAK
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:96
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_STACKEDTEXT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CAN_OVERLAP
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:97
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_OVERLAP
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STACKEDTEXT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:98
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_GAP_WIDTH
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_OVERLAP
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:99
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_DISPLAY_UNITS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_GAP_WIDTH
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:100
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_BUILTINUNIT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_UNITS
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:101
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:64:1) PROP_AXIS_TRY_STAGGERING_FIRST
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:140
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_MAIN_TITLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_SUB_TITLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_LEGEND
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_HAS_LEGEND
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:143
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_LABELS_IN_FIRST_ROW
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_LABELS_IN_FIRST_COLUMN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ADDIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ADDIN
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:146
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_BASEDIAGRAM
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_BASEDIAGRAM
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:147
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ADDITIONAL_SHAPES
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ADDITIONAL_SHAPES
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:148
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_UPDATE_ADDIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_UPDATE_ADDIN
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:149
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_NULL_DATE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_NULL_DATE
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:150
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ENABLE_COMPLEX_CHARTTYPES
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138:1) PROP_DOCUMENT_ENABLE_DATATABLE_DIALOG
-chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_SOLIDTYPE
-chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:74
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_SEGMENT_OFFSET
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_PERCENT_DIAGONAL
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_DATAPOINT_SOLIDTYPE
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:76
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_LABEL_SEPARATOR
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_NUMBERFORMAT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_LINK_NUMBERFORMAT_TO_SOURCE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_PERCENTAGE_NUMBERFORMAT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_NUMBERFORMAT
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:80
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_TEXT_WORD_WRAP
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_LABEL_PLACEMENT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:83
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_ATTACHED_AXIS
-chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:84
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_TEXT_ROTATION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_STYLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:72:1) PROP_SERIES_ATTACHED_AXIS
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:86
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_WIDTH
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_COLOR
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:70:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_TRANS
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_ATTRIBUTED_DATA_POINTS
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_PERCENT_STACKED
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
+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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:88
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_STACKED
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_THREE_D
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_PERCENT_STACKED
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:90
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_SOLIDTYPE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_STACKED
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:91
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_DEEP
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_THREE_D
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:92
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_VERTICAL
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_SOLIDTYPE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:93
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_NUMBER_OF_LINES
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DEEP
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:94
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_STACKED_BARS_CONNECTED
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_VERTICAL
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:95
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_DATAROW_SOURCE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:97
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_GROUP_BARS_PER_AXIS
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:98
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_INCLUDE_HIDDEN_CELLS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:100
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_SORT_BY_X_VALUES
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_STARTING_ANGLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_RIGHT_ANGLED_AXES
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:105
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_PERSPECTIVE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_STARTING_ANGLE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:106
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_ROTATION_HORIZONTAL
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_ROTATION_VERTICAL
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:109
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_MISSING_VALUE_TREATMENT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_ROTATION_VERTICAL
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:111
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_X_AXIS
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:112
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_X_AXIS_DESCR
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_X_AXIS_TITLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_X_AXIS_GRID
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_X_AXIS_HELP_GRID
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:117
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Y_AXIS
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:118
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Y_AXIS_DESCR
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Y_AXIS_TITLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Y_AXIS_GRID
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Y_AXIS_HELP_GRID
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:123
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Z_AXIS
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:124
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Z_AXIS_DESCR
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Z_AXIS_TITLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Z_AXIS_GRID
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_Z_AXIS_HELP_GRID
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:129
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:130
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS_DESCR
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:132
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:133
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS_DESCR
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:135
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS_TITLE
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:136
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS_TITLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:138
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_AUTOMATIC_SIZE
-chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:139
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_DATATABLEHBORDER
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_DATATABLEVBORDER
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_AUTOMATIC_SIZE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:141
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_DATATABLEOUTLINE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:86:1) PROP_DIAGRAM_DATATABLEHBORDER
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:142
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:84:1) PROP_DIAGRAM_EXTERNALDATA
-chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:207
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:205:1) PROP_LEGEND_ALIGNMENT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
+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
chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:208
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:205:1) PROP_LEGEND_EXPANSION
-chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:118
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:116:1) PROP_TITLE_STRING
-chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:119
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:116:1) PROP_TITLE_TEXT_ROTATION
-chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:120
- enum (anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:116:1) PROP_TITLE_TEXT_STACKED
-chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx:98
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx:96:1) PROP_CHART_AUTOMATIC_POSITION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
+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
+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
+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
+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
chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx:54
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx:51:1) PROP_CHART_DATAPOINT_DATA_CAPTION
-chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx:110
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx:108:1) PROP_CHART_SCALE_TEXT
-chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:171
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:168:1) PROP_CHART_SPLINE_TYPE
-chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:172
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:168:1) PROP_CHART_SPLINE_ORDER
-chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:173
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:168:1) PROP_CHART_SPLINE_RESOLUTION
-chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:895
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_CONST_ERROR_LOW
-chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:896
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_CONST_ERROR_HIGH
-chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_MEAN_VALUE
-chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:898
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_ERROR_CATEGORY
-chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:899
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_ERROR_BAR_STYLE
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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
+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
+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
+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
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:900
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_PERCENT_ERROR
+ 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
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:901
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_ERROR_MARGIN
+ 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
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:902
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_ERROR_INDICATOR
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_ERROR_RANGE_POSITIVE
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_ERROR_RANGE_NEGATIVE
+ 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
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:905
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_REGRESSION_CURVES
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/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 chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_REGRESSION_PROPERTIES
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_MARGIN
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:907
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_ERROR_PROPERTIES
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_INDICATOR
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:908
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:892:1) PROP_CHART_STATISTIC_MEAN_VALUE_PROPERTIES
-chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:238
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:235:1) PROP_CHART_STOCK_VOLUME
-chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:239
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:235:1) PROP_CHART_STOCK_UPDOWN
-chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:102
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:99:1) PROP_CHART_SYMBOL_TYPE
-chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:103
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:99:1) PROP_CHART_SYMBOL_BITMAP_URL
-chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:104
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:99:1) PROP_CHART_SYMBOL_SIZE
-chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:105
- enum chart::wrapper::(anonymous namespace)::(anonymous at chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:99:1) PROP_CHART_SYMBOL_AND_LINES
-chart2/source/controller/dialogs/DialogModel.hxx:101
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_RANGE_POSITIVE
+chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:909
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_RANGE_NEGATIVE
+chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:910
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_REGRESSION_CURVES
+chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:911
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_REGRESSION_PROPERTIES
+chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:912
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_ERROR_PROPERTIES
+chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:913
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:897:1) PROP_CHART_STATISTIC_MEAN_VALUE_PROPERTIES
+chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:241
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:238:1) PROP_CHART_STOCK_VOLUME
+chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:242
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:238:1) PROP_CHART_STOCK_UPDOWN
+chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:110
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:107:1) PROP_CHART_SYMBOL_TYPE
+chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:111
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:107:1) PROP_CHART_SYMBOL_BITMAP_URL
+chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:112
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:107:1) PROP_CHART_SYMBOL_BITMAP
+chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:113
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:107:1) PROP_CHART_SYMBOL_SIZE
+chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:114
+ enum chart::wrapper::(anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:107:1) PROP_CHART_SYMBOL_AND_LINES
+chart2/source/controller/dialogs/DialogModel.hxx:104
enum chart::DialogModel::eMoveDirection MOVE_DOWN
chart2/source/controller/dialogs/dlg_DataSource.cxx:118
enum chart::DataSourceDialogPages TP_RANGECHOOSER
chart2/source/controller/dialogs/dlg_DataSource.cxx:119
enum chart::DataSourceDialogPages TP_DATA_SOURCE
-chart2/source/controller/dialogs/tp_Scale.cxx:251
+chart2/source/controller/dialogs/tp_Scale.cxx:193
enum chart::AxisTypeListBoxEntry TYPE_TEXT
-chart2/source/controller/inc/AccessibleBase.hxx:286
+chart2/source/controller/inc/AccessibleBase.hxx:287
enum chart::AccessibleBase::eColorType ACC_BASE_BACKGROUND
-chart2/source/controller/inc/ChartController.hxx:86
+chart2/source/controller/inc/ChartController.hxx:92
enum chart::ChartDrawMode CHARTDRAW_SELECT
-chart2/source/controller/main/ChartModelClone.hxx:31
+chart2/source/controller/main/ChartModelClone.hxx:34
enum chart::ModelFacet E_MODEL
-chart2/source/controller/main/DragMethod_RotateDiagram.hxx:34
+chart2/source/controller/main/DragMethod_RotateDiagram.hxx:37
enum chart::DragMethod_RotateDiagram::RotationDirection ROTATIONDIRECTION_FREE
-chart2/source/controller/sidebar/ChartElementsPanel.cxx:58
+chart2/source/controller/sidebar/ChartElementsPanel.cxx:57
enum chart::sidebar::(anonymous namespace)::GridType VERT_MINOR
-chart2/source/controller/sidebar/ChartElementsPanel.cxx:65
+chart2/source/controller/sidebar/ChartElementsPanel.cxx:64
enum chart::sidebar::(anonymous namespace)::AxisType X_MAIN
-chart2/source/controller/sidebar/ChartErrorBarPanel.cxx:47
+chart2/source/controller/sidebar/ChartErrorBarPanel.cxx:46
enum chart::sidebar::(anonymous namespace)::ErrorBarDirection POSITIVE
-chart2/source/inc/CharacterProperties.hxx:44
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_NAME
chart2/source/inc/CharacterProperties.hxx:45
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_STYLE_NAME
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_FONT_NAME
chart2/source/inc/CharacterProperties.hxx:46
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_FAMILY
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_FONT_STYLE_NAME
chart2/source/inc/CharacterProperties.hxx:47
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_CHAR_SET
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_FONT_FAMILY
chart2/source/inc/CharacterProperties.hxx:48
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_PITCH
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_FONT_CHAR_SET
chart2/source/inc/CharacterProperties.hxx:49
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COLOR
-chart2/source/inc/CharacterProperties.hxx:52
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ESCAPEMENT
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_FONT_PITCH
+chart2/source/inc/CharacterProperties.hxx:50
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COLOR
chart2/source/inc/CharacterProperties.hxx:53
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_CHAR_HEIGHT
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ESCAPEMENT
chart2/source/inc/CharacterProperties.hxx:54
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_UNDERLINE
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_CHAR_HEIGHT
chart2/source/inc/CharacterProperties.hxx:55
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_UNDERLINE_COLOR
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_UNDERLINE
chart2/source/inc/CharacterProperties.hxx:56
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_UNDERLINE_HAS_COLOR
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_UNDERLINE_COLOR
chart2/source/inc/CharacterProperties.hxx:57
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_OVERLINE
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_UNDERLINE_HAS_COLOR
chart2/source/inc/CharacterProperties.hxx:58
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_OVERLINE_COLOR
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_OVERLINE
chart2/source/inc/CharacterProperties.hxx:59
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_OVERLINE_HAS_COLOR
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_OVERLINE_COLOR
chart2/source/inc/CharacterProperties.hxx:60
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_WEIGHT
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_OVERLINE_HAS_COLOR
chart2/source/inc/CharacterProperties.hxx:61
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_POSTURE
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_WEIGHT
chart2/source/inc/CharacterProperties.hxx:62
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_AUTO_KERNING
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_POSTURE
chart2/source/inc/CharacterProperties.hxx:63
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_KERNING
-chart2/source/inc/CharacterProperties.hxx:68
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ESCAPEMENT_HEIGHT
-chart2/source/inc/CharacterProperties.hxx:71
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_STRIKE_OUT
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_AUTO_KERNING
+chart2/source/inc/CharacterProperties.hxx:64
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_KERNING
+chart2/source/inc/CharacterProperties.hxx:69
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ESCAPEMENT_HEIGHT
chart2/source/inc/CharacterProperties.hxx:72
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_WORD_MODE
-chart2/source/inc/CharacterProperties.hxx:74
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_LOCALE
-chart2/source/inc/CharacterProperties.hxx:77
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_SHADOWED
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_STRIKE_OUT
+chart2/source/inc/CharacterProperties.hxx:73
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_WORD_MODE
+chart2/source/inc/CharacterProperties.hxx:75
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_LOCALE
chart2/source/inc/CharacterProperties.hxx:78
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_CONTOURED
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_SHADOWED
chart2/source/inc/CharacterProperties.hxx:79
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_RELIEF
-chart2/source/inc/CharacterProperties.hxx:84
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_EMPHASIS
-chart2/source/inc/CharacterProperties.hxx:92
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_FONT_NAME
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_CONTOURED
+chart2/source/inc/CharacterProperties.hxx:80
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_RELIEF
+chart2/source/inc/CharacterProperties.hxx:85
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_EMPHASIS
chart2/source/inc/CharacterProperties.hxx:93
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_FONT_STYLE_NAME
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_FONT_NAME
chart2/source/inc/CharacterProperties.hxx:94
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_FONT_FAMILY
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_FONT_STYLE_NAME
chart2/source/inc/CharacterProperties.hxx:95
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_CHAR_SET
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_FONT_FAMILY
chart2/source/inc/CharacterProperties.hxx:96
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_FONT_PITCH
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_CHAR_SET
chart2/source/inc/CharacterProperties.hxx:97
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_CHAR_HEIGHT
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_FONT_PITCH
chart2/source/inc/CharacterProperties.hxx:98
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_WEIGHT
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_CHAR_HEIGHT
chart2/source/inc/CharacterProperties.hxx:99
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_POSTURE
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_WEIGHT
chart2/source/inc/CharacterProperties.hxx:100
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_LOCALE
-chart2/source/inc/CharacterProperties.hxx:106
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_FONT_NAME
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_POSTURE
+chart2/source/inc/CharacterProperties.hxx:101
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_ASIAN_LOCALE
chart2/source/inc/CharacterProperties.hxx:107
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_FONT_STYLE_NAME
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_FONT_NAME
chart2/source/inc/CharacterProperties.hxx:108
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_FONT_FAMILY
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_FONT_STYLE_NAME
chart2/source/inc/CharacterProperties.hxx:109
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_CHAR_SET
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_FONT_FAMILY
chart2/source/inc/CharacterProperties.hxx:110
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_FONT_PITCH
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_CHAR_SET
chart2/source/inc/CharacterProperties.hxx:111
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_CHAR_HEIGHT
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_FONT_PITCH
chart2/source/inc/CharacterProperties.hxx:112
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_WEIGHT
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_CHAR_HEIGHT
chart2/source/inc/CharacterProperties.hxx:113
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_POSTURE
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_WEIGHT
chart2/source/inc/CharacterProperties.hxx:114
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_LOCALE
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_POSTURE
chart2/source/inc/CharacterProperties.hxx:115
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_PARA_IS_CHARACTER_DISTANCE
-chart2/source/inc/CharacterProperties.hxx:117
- enum chart::CharacterProperties::(anonymous at chart2/source/inc/CharacterProperties.hxx:41:5) PROP_WRITING_MODE
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_CHAR_COMPLEX_LOCALE
+chart2/source/inc/CharacterProperties.hxx:116
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_PARA_IS_CHARACTER_DISTANCE
+chart2/source/inc/CharacterProperties.hxx:118
+ enum chart::CharacterProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/CharacterProperties.hxx:42:5) PROP_WRITING_MODE
chart2/source/inc/DiagramHelper.hxx:46
enum chart::DiagramPositioningMode DiagramPositioningMode_AUTO
chart2/source/inc/FastPropertyIdRanges.hxx:27
@@ -496,434 +500,438 @@ chart2/source/inc/FastPropertyIdRanges.hxx:42
enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_CHART_AUTOPOSITION_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:43
enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_SCALE_TEXT_PROP
-chart2/source/inc/FastPropertyIdRanges.hxx:44
- enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_GL_3D
-chart2/source/inc/FillProperties.hxx:39
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_STYLE
chart2/source/inc/FillProperties.hxx:40
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_COLOR
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_STYLE
chart2/source/inc/FillProperties.hxx:41
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_TRANSPARENCE
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_COLOR
chart2/source/inc/FillProperties.hxx:42
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_TRANSPARENCE_GRADIENT_NAME
-chart2/source/inc/FillProperties.hxx:44
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_GRADIENT_NAME
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_TRANSPARENCE
+chart2/source/inc/FillProperties.hxx:43
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_TRANSPARENCE_GRADIENT_NAME
chart2/source/inc/FillProperties.hxx:45
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_GRADIENT_STEPCOUNT
-chart2/source/inc/FillProperties.hxx:47
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_HATCH_NAME
-chart2/source/inc/FillProperties.hxx:50
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_NAME
-chart2/source/inc/FillProperties.hxx:53
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_OFFSETX
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_GRADIENT_NAME
+chart2/source/inc/FillProperties.hxx:46
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_GRADIENT_STEPCOUNT
+chart2/source/inc/FillProperties.hxx:48
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_HATCH_NAME
+chart2/source/inc/FillProperties.hxx:51
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_NAME
chart2/source/inc/FillProperties.hxx:54
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_OFFSETY
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_OFFSETX
chart2/source/inc/FillProperties.hxx:55
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_POSITION_OFFSETX
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_OFFSETY
chart2/source/inc/FillProperties.hxx:56
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_POSITION_OFFSETY
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_POSITION_OFFSETX
chart2/source/inc/FillProperties.hxx:57
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_RECTANGLEPOINT
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_POSITION_OFFSETY
chart2/source/inc/FillProperties.hxx:58
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_LOGICALSIZE
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_RECTANGLEPOINT
chart2/source/inc/FillProperties.hxx:59
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_SIZEX
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_LOGICALSIZE
chart2/source/inc/FillProperties.hxx:60
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_SIZEY
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_SIZEX
chart2/source/inc/FillProperties.hxx:61
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_MODE
-chart2/source/inc/FillProperties.hxx:63
- enum chart::FillProperties::(anonymous at chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BACKGROUND
-chart2/source/inc/LinePropertiesHelper.hxx:39
- enum chart::LinePropertiesHelper::(anonymous at chart2/source/inc/LinePropertiesHelper.hxx:36:5) PROP_LINE_STYLE
-chart2/source/inc/LinePropertiesHelper.hxx:40
- enum chart::LinePropertiesHelper::(anonymous at chart2/source/inc/LinePropertiesHelper.hxx:36:5) PROP_LINE_DASH
-chart2/source/inc/LinePropertiesHelper.hxx:41
- enum chart::LinePropertiesHelper::(anonymous at chart2/source/inc/LinePropertiesHelper.hxx:36:5) PROP_LINE_DASH_NAME
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_SIZEY
+chart2/source/inc/FillProperties.hxx:62
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BITMAP_MODE
+chart2/source/inc/FillProperties.hxx:64
+ enum chart::FillProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/FillProperties.hxx:37:5) PROP_FILL_BACKGROUND
chart2/source/inc/LinePropertiesHelper.hxx:42
- enum chart::LinePropertiesHelper::(anonymous at chart2/source/inc/LinePropertiesHelper.hxx:36:5) PROP_LINE_COLOR
+ enum chart::LinePropertiesHelper::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/LinePropertiesHelper.hxx:39:5) PROP_LINE_STYLE
chart2/source/inc/LinePropertiesHelper.hxx:43
- enum chart::LinePropertiesHelper::(anonymous at chart2/source/inc/LinePropertiesHelper.hxx:36:5) PROP_LINE_TRANSPARENCE
+ enum chart::LinePropertiesHelper::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/LinePropertiesHelper.hxx:39:5) PROP_LINE_DASH
chart2/source/inc/LinePropertiesHelper.hxx:44
- enum chart::LinePropertiesHelper::(anonymous at chart2/source/inc/LinePropertiesHelper.hxx:36:5) PROP_LINE_WIDTH
+ enum chart::LinePropertiesHelper::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/LinePropertiesHelper.hxx:39:5) PROP_LINE_DASH_NAME
chart2/source/inc/LinePropertiesHelper.hxx:45
- enum chart::LinePropertiesHelper::(anonymous at chart2/source/inc/LinePropertiesHelper.hxx:36:5) PROP_LINE_JOINT
-chart2/source/inc/ReferenceSizeProvider.hxx:44
+ enum chart::LinePropertiesHelper::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/LinePropertiesHelper.hxx:39:5) PROP_LINE_COLOR
+chart2/source/inc/LinePropertiesHelper.hxx:46
+ enum chart::LinePropertiesHelper::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/LinePropertiesHelper.hxx:39:5) PROP_LINE_TRANSPARENCE
+chart2/source/inc/LinePropertiesHelper.hxx:47
+ enum chart::LinePropertiesHelper::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/LinePropertiesHelper.hxx:39:5) PROP_LINE_WIDTH
+chart2/source/inc/LinePropertiesHelper.hxx:48
+ enum chart::LinePropertiesHelper::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/LinePropertiesHelper.hxx:39:5) PROP_LINE_JOINT
+chart2/source/inc/ReferenceSizeProvider.hxx:47
enum chart::ReferenceSizeProvider::AutoResizeState AUTO_RESIZE_NO
-chart2/source/inc/SceneProperties.hxx:39
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_TRANSF_MATRIX
chart2/source/inc/SceneProperties.hxx:40
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_DISTANCE
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_TRANSF_MATRIX
chart2/source/inc/SceneProperties.hxx:41
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_FOCAL_LENGTH
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_DISTANCE
chart2/source/inc/SceneProperties.hxx:42
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_SHADOW_SLANT
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_FOCAL_LENGTH
chart2/source/inc/SceneProperties.hxx:43
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_SHADE_MODE
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_SHADOW_SLANT
chart2/source/inc/SceneProperties.hxx:44
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_AMBIENT_COLOR
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_SHADE_MODE
chart2/source/inc/SceneProperties.hxx:45
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_TWO_SIDED_LIGHTING
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_AMBIENT_COLOR
chart2/source/inc/SceneProperties.hxx:46
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_CAMERA_GEOMETRY
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_TWO_SIDED_LIGHTING
chart2/source/inc/SceneProperties.hxx:47
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_PERSPECTIVE
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_CAMERA_GEOMETRY
chart2/source/inc/SceneProperties.hxx:48
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_COLOR_1
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_PERSPECTIVE
chart2/source/inc/SceneProperties.hxx:49
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_DIRECTION_1
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_1
chart2/source/inc/SceneProperties.hxx:50
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_ON_1
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_1
chart2/source/inc/SceneProperties.hxx:51
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_COLOR_2
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_1
chart2/source/inc/SceneProperties.hxx:52
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_DIRECTION_2
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_2
chart2/source/inc/SceneProperties.hxx:53
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_ON_2
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_2
chart2/source/inc/SceneProperties.hxx:54
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_COLOR_3
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_2
chart2/source/inc/SceneProperties.hxx:55
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_DIRECTION_3
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_3
chart2/source/inc/SceneProperties.hxx:56
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_ON_3
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_3
chart2/source/inc/SceneProperties.hxx:57
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_COLOR_4
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_3
chart2/source/inc/SceneProperties.hxx:58
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_DIRECTION_4
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_4
chart2/source/inc/SceneProperties.hxx:59
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_ON_4
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_4
chart2/source/inc/SceneProperties.hxx:60
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_COLOR_5
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_4
chart2/source/inc/SceneProperties.hxx:61
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_DIRECTION_5
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_5
chart2/source/inc/SceneProperties.hxx:62
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_ON_5
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_5
chart2/source/inc/SceneProperties.hxx:63
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_COLOR_6
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_5
chart2/source/inc/SceneProperties.hxx:64
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_DIRECTION_6
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_6
chart2/source/inc/SceneProperties.hxx:65
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_ON_6
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_6
chart2/source/inc/SceneProperties.hxx:66
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_COLOR_7
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_6
chart2/source/inc/SceneProperties.hxx:67
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_DIRECTION_7
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_7
chart2/source/inc/SceneProperties.hxx:68
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_ON_7
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_7
chart2/source/inc/SceneProperties.hxx:69
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_COLOR_8
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_7
chart2/source/inc/SceneProperties.hxx:70
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_DIRECTION_8
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_8
chart2/source/inc/SceneProperties.hxx:71
- enum chart::SceneProperties::(anonymous at chart2/source/inc/SceneProperties.hxx:36:5) PROP_SCENE_LIGHT_ON_8
-chart2/source/inc/ThreeDHelper.hxx:45
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_8
+chart2/source/inc/SceneProperties.hxx:72
+ enum chart::SceneProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_8
+chart2/source/inc/ThreeDHelper.hxx:43
enum chart::CuboidPlanePosition CuboidPlanePosition_Top
-chart2/source/inc/TitleHelper.hxx:39
+chart2/source/inc/TitleHelper.hxx:40
enum chart::TitleHelper::eTitleType TITLE_BEGIN
chart2/source/inc/UserDefinedProperties.hxx:39
- enum chart::UserDefinedProperties::(anonymous at chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_CHART
+ enum chart::UserDefinedProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_CHART
chart2/source/inc/UserDefinedProperties.hxx:40
- enum chart::UserDefinedProperties::(anonymous at chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_TEXT
+ enum chart::UserDefinedProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_TEXT
chart2/source/inc/UserDefinedProperties.hxx:41
- enum chart::UserDefinedProperties::(anonymous at chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_PARA
+ enum chart::UserDefinedProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_PARA
chart2/source/inc/UserDefinedProperties.hxx:46
- enum chart::UserDefinedProperties::(anonymous at chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF
+ enum chart::UserDefinedProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF
+chart2/source/model/main/Axis.cxx:57
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_SHOW
+chart2/source/model/main/Axis.cxx:58
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_CROSSOVER_POSITION
+chart2/source/model/main/Axis.cxx:59
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_CROSSOVER_VALUE
+chart2/source/model/main/Axis.cxx:60
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_DISPLAY_LABELS
+chart2/source/model/main/Axis.cxx:61
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_NUMBERFORMAT
+chart2/source/model/main/Axis.cxx:62
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_LINK_NUMBERFORMAT_TO_SOURCE
chart2/source/model/main/Axis.cxx:63
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_SHOW
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_LABEL_POSITION
chart2/source/model/main/Axis.cxx:64
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_CROSSOVER_POSITION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_TEXT_ROTATION
chart2/source/model/main/Axis.cxx:65
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_CROSSOVER_VALUE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_TEXT_BREAK
chart2/source/model/main/Axis.cxx:66
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_DISPLAY_LABELS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_TEXT_OVERLAP
chart2/source/model/main/Axis.cxx:67
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_NUMBERFORMAT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_TEXT_STACKED
chart2/source/model/main/Axis.cxx:68
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_LINK_NUMBERFORMAT_TO_SOURCE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_TEXT_ARRANGE_ORDER
chart2/source/model/main/Axis.cxx:69
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_LABEL_POSITION
-chart2/source/model/main/Axis.cxx:70
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_TEXT_ROTATION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_REFERENCE_DIAGRAM_SIZE
chart2/source/model/main/Axis.cxx:71
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_TEXT_BREAK
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_MAJOR_TICKMARKS
chart2/source/model/main/Axis.cxx:72
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_TEXT_OVERLAP
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_MINOR_TICKMARKS
chart2/source/model/main/Axis.cxx:73
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_TEXT_STACKED
-chart2/source/model/main/Axis.cxx:74
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_TEXT_ARRANGE_ORDER
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_MARK_POSITION
chart2/source/model/main/Axis.cxx:75
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_REFERENCE_DIAGRAM_SIZE
-chart2/source/model/main/Axis.cxx:77
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_MAJOR_TICKMARKS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_DISPLAY_UNITS
+chart2/source/model/main/Axis.cxx:76
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_BUILTINUNIT
chart2/source/model/main/Axis.cxx:78
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_MINOR_TICKMARKS
-chart2/source/model/main/Axis.cxx:79
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_MARK_POSITION
-chart2/source/model/main/Axis.cxx:81
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_DISPLAY_UNITS
-chart2/source/model/main/Axis.cxx:82
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_BUILTINUNIT
-chart2/source/model/main/Axis.cxx:84
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Axis.cxx:61:1) PROP_AXIS_TRY_STAGGERING_FIRST
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Axis.cxx:55:1) PROP_AXIS_TRY_STAGGERING_FIRST
chart2/source/model/main/BaseCoordinateSystem.cxx:45
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/BaseCoordinateSystem.cxx:43:1) PROP_COORDINATESYSTEM_SWAPXANDYAXIS
-chart2/source/model/main/DataPointProperties.hxx:38
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_COLOR
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/BaseCoordinateSystem.cxx:43:1) PROP_COORDINATESYSTEM_SWAPXANDYAXIS
chart2/source/model/main/DataPointProperties.hxx:39
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_TRANSPARENCY
-chart2/source/model/main/DataPointProperties.hxx:42
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_FILL_STYLE
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_COLOR
+chart2/source/model/main/DataPointProperties.hxx:40
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_TRANSPARENCY
chart2/source/model/main/DataPointProperties.hxx:43
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_TRANSPARENCY_GRADIENT_NAME
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_FILL_STYLE
chart2/source/model/main/DataPointProperties.hxx:44
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_GRADIENT_NAME
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_TRANSPARENCY_GRADIENT_NAME
chart2/source/model/main/DataPointProperties.hxx:45
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_GRADIENT_STEPCOUNT
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_GRADIENT_NAME
chart2/source/model/main/DataPointProperties.hxx:46
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_HATCH_NAME
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_GRADIENT_STEPCOUNT
chart2/source/model/main/DataPointProperties.hxx:47
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_FILL_BITMAP_NAME
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_HATCH_NAME
chart2/source/model/main/DataPointProperties.hxx:48
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_FILL_BACKGROUND
-chart2/source/model/main/DataPointProperties.hxx:51
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_COLOR
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_FILL_BITMAP_NAME
+chart2/source/model/main/DataPointProperties.hxx:49
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_FILL_BACKGROUND
chart2/source/model/main/DataPointProperties.hxx:52
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_STYLE
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_BORDER_COLOR
chart2/source/model/main/DataPointProperties.hxx:53
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_WIDTH
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_BORDER_STYLE
chart2/source/model/main/DataPointProperties.hxx:54
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_DASH_NAME
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_BORDER_WIDTH
chart2/source/model/main/DataPointProperties.hxx:55
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_TRANSPARENCY
-chart2/source/model/main/DataPointProperties.hxx:58
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_SYMBOL_PROP
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_BORDER_DASH_NAME
+chart2/source/model/main/DataPointProperties.hxx:56
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_BORDER_TRANSPARENCY
chart2/source/model/main/DataPointProperties.hxx:59
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_OFFSET
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_SYMBOL_PROP
chart2/source/model/main/DataPointProperties.hxx:60
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_GEOMETRY3D
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_OFFSET
chart2/source/model/main/DataPointProperties.hxx:61
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_NUMBER_FORMAT
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_GEOMETRY3D
chart2/source/model/main/DataPointProperties.hxx:62
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LINK_NUMBERFORMAT_TO_SOURCE
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_NUMBER_FORMAT
chart2/source/model/main/DataPointProperties.hxx:63
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_PERCENTAGE_NUMBER_FORMAT
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LINK_NUMBERFORMAT_TO_SOURCE
chart2/source/model/main/DataPointProperties.hxx:64
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_PLACEMENT
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_PERCENTAGE_NUMBER_FORMAT
chart2/source/model/main/DataPointProperties.hxx:65
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_REFERENCE_DIAGRAM_SIZE
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL_PLACEMENT
chart2/source/model/main/DataPointProperties.hxx:66
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_TEXT_ROTATION
-chart2/source/model/main/DataPointProperties.hxx:71
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_SHOW_ERROR_BOX
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_REFERENCE_DIAGRAM_SIZE
+chart2/source/model/main/DataPointProperties.hxx:67
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_TEXT_ROTATION
chart2/source/model/main/DataPointProperties.hxx:72
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_PERCENT_DIAGONAL
-chart2/source/model/main/DataPointProperties.hxx:75
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_SHOW_ERROR_BOX
+chart2/source/model/main/DataPointProperties.hxx:73
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_PERCENT_DIAGONAL
chart2/source/model/main/DataPointProperties.hxx:76
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_SEPARATOR
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL
chart2/source/model/main/DataPointProperties.hxx:77
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_TEXT_WORD_WRAP
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL_SEPARATOR
chart2/source/model/main/DataPointProperties.hxx:78
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_STYLE
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_TEXT_WORD_WRAP
chart2/source/model/main/DataPointProperties.hxx:79
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_COLOR
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL_BORDER_STYLE
chart2/source/model/main/DataPointProperties.hxx:80
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_WIDTH
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL_BORDER_COLOR
chart2/source/model/main/DataPointProperties.hxx:81
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_DASH
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL_BORDER_WIDTH
chart2/source/model/main/DataPointProperties.hxx:82
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_DASH_NAME
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL_BORDER_DASH
chart2/source/model/main/DataPointProperties.hxx:83
- enum chart::DataPointProperties::(anonymous at chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_TRANS
-chart2/source/model/main/DataSeriesProperties.hxx:36
- enum chart::DataSeriesProperties::(anonymous at chart2/source/model/main/DataSeriesProperties.hxx:33:5) PROP_DATASERIES_STACKING_DIRECTION
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL_BORDER_DASH_NAME
+chart2/source/model/main/DataPointProperties.hxx:84
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_LABEL_BORDER_TRANS
+chart2/source/model/main/DataPointProperties.hxx:85
+ enum chart::DataPointProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataPointProperties.hxx:36:5) PROP_DATAPOINT_CUSTOM_LABEL_FIELDS
chart2/source/model/main/DataSeriesProperties.hxx:37
- enum chart::DataSeriesProperties::(anonymous at chart2/source/model/main/DataSeriesProperties.hxx:33:5) PROP_DATASERIES_VARY_COLORS_BY_POINT
+ enum chart::DataSeriesProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataSeriesProperties.hxx:34:5) PROP_DATASERIES_STACKING_DIRECTION
chart2/source/model/main/DataSeriesProperties.hxx:38
- enum chart::DataSeriesProperties::(anonymous at chart2/source/model/main/DataSeriesProperties.hxx:33:5) PROP_DATASERIES_ATTACHED_AXIS_INDEX
+ enum chart::DataSeriesProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataSeriesProperties.hxx:34:5) PROP_DATASERIES_VARY_COLORS_BY_POINT
+chart2/source/model/main/DataSeriesProperties.hxx:39
+ enum chart::DataSeriesProperties::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/DataSeriesProperties.hxx:34:5) PROP_DATASERIES_ATTACHED_AXIS_INDEX
+chart2/source/model/main/Diagram.cxx:60
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_REL_POS
+chart2/source/model/main/Diagram.cxx:61
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_REL_SIZE
+chart2/source/model/main/Diagram.cxx:62
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_POSSIZE_EXCLUDE_LABELS
chart2/source/model/main/Diagram.cxx:63
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_REL_POS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_SORT_BY_X_VALUES
chart2/source/model/main/Diagram.cxx:64
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_REL_SIZE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_CONNECT_BARS
chart2/source/model/main/Diagram.cxx:65
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_POSSIZE_EXCLUDE_LABELS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_GROUP_BARS_PER_AXIS
chart2/source/model/main/Diagram.cxx:66
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_SORT_BY_X_VALUES
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_INCLUDE_HIDDEN_CELLS
chart2/source/model/main/Diagram.cxx:67
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_CONNECT_BARS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_STARTING_ANGLE
chart2/source/model/main/Diagram.cxx:68
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_GROUP_BARS_PER_AXIS
-chart2/source/model/main/Diagram.cxx:69
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_INCLUDE_HIDDEN_CELLS
-chart2/source/model/main/Diagram.cxx:70
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_STARTING_ANGLE
-chart2/source/model/main/Diagram.cxx:71
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_RIGHT_ANGLED_AXES
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_RIGHT_ANGLED_AXES
+chart2/source/model/main/Diagram.cxx:72
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_MISSING_VALUE_TREATMENT
+chart2/source/model/main/Diagram.cxx:73
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_3DRELATIVEHEIGHT
+chart2/source/model/main/Diagram.cxx:74
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_DATATABLEHBORDER
chart2/source/model/main/Diagram.cxx:75
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_MISSING_VALUE_TREATMENT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_DATATABLEVBORDER
chart2/source/model/main/Diagram.cxx:76
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_3DRELATIVEHEIGHT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_DATATABLEOUTLINE
chart2/source/model/main/Diagram.cxx:77
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_DATATABLEHBORDER
-chart2/source/model/main/Diagram.cxx:78
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_DATATABLEVBORDER
-chart2/source/model/main/Diagram.cxx:79
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_DATATABLEOUTLINE
-chart2/source/model/main/Diagram.cxx:80
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Diagram.cxx:61:1) PROP_DIAGRAM_EXTERNALDATA
-chart2/source/model/main/GridProperties.cxx:42
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/GridProperties.cxx:40:1) PROP_GRID_SHOW
-chart2/source/model/main/Legend.cxx:52
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_ANCHOR_POSITION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Diagram.cxx:58:1) PROP_DIAGRAM_EXTERNALDATA
+chart2/source/model/main/GridProperties.cxx:44
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/GridProperties.cxx:42:1) PROP_GRID_SHOW
chart2/source/model/main/Legend.cxx:53
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_EXPANSION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Legend.cxx:51:1) PROP_LEGEND_ANCHOR_POSITION
chart2/source/model/main/Legend.cxx:54
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_SHOW
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Legend.cxx:51:1) PROP_LEGEND_EXPANSION
chart2/source/model/main/Legend.cxx:55
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_REF_PAGE_SIZE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Legend.cxx:51:1) PROP_LEGEND_SHOW
chart2/source/model/main/Legend.cxx:56
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_REL_POS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Legend.cxx:51:1) PROP_LEGEND_REF_PAGE_SIZE
chart2/source/model/main/Legend.cxx:57
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_REL_SIZE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Legend.cxx:51:1) PROP_LEGEND_REL_POS
+chart2/source/model/main/Legend.cxx:58
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Legend.cxx:51:1) PROP_LEGEND_REL_SIZE
chart2/source/model/main/Title.cxx:52
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_ADJUST
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_ADJUST
chart2/source/model/main/Title.cxx:53
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_LAST_LINE_ADJUST
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_LAST_LINE_ADJUST
chart2/source/model/main/Title.cxx:54
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_LEFT_MARGIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_LEFT_MARGIN
chart2/source/model/main/Title.cxx:55
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_RIGHT_MARGIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_RIGHT_MARGIN
chart2/source/model/main/Title.cxx:56
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_TOP_MARGIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_TOP_MARGIN
chart2/source/model/main/Title.cxx:57
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_BOTTOM_MARGIN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_BOTTOM_MARGIN
chart2/source/model/main/Title.cxx:58
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_IS_HYPHENATION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_PARA_IS_HYPHENATION
chart2/source/model/main/Title.cxx:59
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_VISIBLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_VISIBLE
chart2/source/model/main/Title.cxx:61
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_TEXT_ROTATION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_TEXT_ROTATION
chart2/source/model/main/Title.cxx:62
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_TEXT_STACKED
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_TEXT_STACKED
chart2/source/model/main/Title.cxx:63
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_REL_POS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_REL_POS
chart2/source/model/main/Title.cxx:65
- enum (anonymous namespace)::(anonymous at chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_REF_PAGE_SIZE
-chart2/source/model/template/AreaChartTypeTemplate.cxx:42
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/AreaChartTypeTemplate.cxx:40:1) PROP_AREA_TEMPLATE_DIMENSION
-chart2/source/model/template/BarChartTypeTemplate.cxx:43
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/BarChartTypeTemplate.cxx:41:1) PROP_BAR_TEMPLATE_DIMENSION
-chart2/source/model/template/BarChartTypeTemplate.cxx:44
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/BarChartTypeTemplate.cxx:41:1) PROP_BAR_TEMPLATE_GEOMETRY3D
-chart2/source/model/template/CandleStickChartType.cxx:39
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/CandleStickChartType.cxx:37:1) PROP_CANDLESTICKCHARTTYPE_JAPANESE
-chart2/source/model/template/CandleStickChartType.cxx:43
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/CandleStickChartType.cxx:37:1) PROP_CANDLESTICKCHARTTYPE_SHOW_FIRST
-chart2/source/model/template/CandleStickChartType.cxx:44
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/CandleStickChartType.cxx:37:1) PROP_CANDLESTICKCHARTTYPE_SHOW_HIGH_LOW
-chart2/source/model/template/ColumnChartType.cxx:36
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ColumnChartType.cxx:34:1) PROP_BARCHARTTYPE_OVERLAP_SEQUENCE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/main/Title.cxx:50:1) PROP_TITLE_REF_PAGE_SIZE
+chart2/source/model/template/AreaChartTypeTemplate.cxx:44
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/AreaChartTypeTemplate.cxx:42:1) PROP_AREA_TEMPLATE_DIMENSION
+chart2/source/model/template/BarChartTypeTemplate.cxx:45
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/BarChartTypeTemplate.cxx:43:1) PROP_BAR_TEMPLATE_DIMENSION
+chart2/source/model/template/BarChartTypeTemplate.cxx:46
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/BarChartTypeTemplate.cxx:43:1) PROP_BAR_TEMPLATE_GEOMETRY3D
+chart2/source/model/template/CandleStickChartType.cxx:42
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/CandleStickChartType.cxx:40:1) PROP_CANDLESTICKCHARTTYPE_JAPANESE
+chart2/source/model/template/CandleStickChartType.cxx:46
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/CandleStickChartType.cxx:40:1) PROP_CANDLESTICKCHARTTYPE_SHOW_FIRST
+chart2/source/model/template/CandleStickChartType.cxx:47
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/CandleStickChartType.cxx:40:1) PROP_CANDLESTICKCHARTTYPE_SHOW_HIGH_LOW
chart2/source/model/template/ColumnChartType.cxx:37
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ColumnChartType.cxx:34:1) PROP_BARCHARTTYPE_GAPWIDTH_SEQUENCE
-chart2/source/model/template/ColumnLineChartTypeTemplate.cxx:47
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ColumnLineChartTypeTemplate.cxx:45:1) PROP_COL_LINE_NUMBER_OF_LINES
-chart2/source/model/template/LineChartType.cxx:40
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/LineChartType.cxx:38:1) PROP_LINECHARTTYPE_CURVE_STYLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ColumnChartType.cxx:35:1) PROP_BARCHARTTYPE_OVERLAP_SEQUENCE
+chart2/source/model/template/ColumnChartType.cxx:38
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ColumnChartType.cxx:35:1) PROP_BARCHARTTYPE_GAPWIDTH_SEQUENCE
+chart2/source/model/template/ColumnLineChartTypeTemplate.cxx:50
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ColumnLineChartTypeTemplate.cxx:48:1) PROP_COL_LINE_NUMBER_OF_LINES
chart2/source/model/template/LineChartType.cxx:41
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/LineChartType.cxx:38:1) PROP_LINECHARTTYPE_CURVE_RESOLUTION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/LineChartType.cxx:39:1) PROP_LINECHARTTYPE_CURVE_STYLE
chart2/source/model/template/LineChartType.cxx:42
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/LineChartType.cxx:38:1) PROP_LINECHARTTYPE_SPLINE_ORDER
-chart2/source/model/template/LineChartTypeTemplate.cxx:46
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/LineChartTypeTemplate.cxx:44:1) PROP_LINECHARTTYPE_TEMPLATE_CURVE_STYLE
-chart2/source/model/template/LineChartTypeTemplate.cxx:47
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/LineChartTypeTemplate.cxx:44:1) PROP_LINECHARTTYPE_TEMPLATE_CURVE_RESOLUTION
-chart2/source/model/template/LineChartTypeTemplate.cxx:48
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/LineChartTypeTemplate.cxx:44:1) PROP_LINECHARTTYPE_TEMPLATE_SPLINE_ORDER
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/LineChartType.cxx:39:1) PROP_LINECHARTTYPE_CURVE_RESOLUTION
+chart2/source/model/template/LineChartType.cxx:43
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/LineChartType.cxx:39:1) PROP_LINECHARTTYPE_SPLINE_ORDER
+chart2/source/model/template/LineChartTypeTemplate.cxx:49
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/LineChartTypeTemplate.cxx:47:1) PROP_LINECHARTTYPE_TEMPLATE_CURVE_STYLE
+chart2/source/model/template/LineChartTypeTemplate.cxx:50
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/LineChartTypeTemplate.cxx:47:1) PROP_LINECHARTTYPE_TEMPLATE_CURVE_RESOLUTION
+chart2/source/model/template/LineChartTypeTemplate.cxx:51
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/LineChartTypeTemplate.cxx:47:1) PROP_LINECHARTTYPE_TEMPLATE_SPLINE_ORDER
+chart2/source/model/template/PieChartType.cxx:41
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/PieChartType.cxx:39:1) PROP_PIECHARTTYPE_USE_RINGS
chart2/source/model/template/PieChartType.cxx:42
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/PieChartType.cxx:40:1) PROP_PIECHARTTYPE_USE_RINGS
-chart2/source/model/template/PieChartType.cxx:43
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/PieChartType.cxx:40:1) PROP_PIECHARTTYPE_3DRELATIVEHEIGHT
-chart2/source/model/template/PieChartTypeTemplate.cxx:51
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/PieChartTypeTemplate.cxx:49:1) PROP_PIE_TEMPLATE_DEFAULT_OFFSET
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/PieChartType.cxx:39:1) PROP_PIECHARTTYPE_3DRELATIVEHEIGHT
chart2/source/model/template/PieChartTypeTemplate.cxx:52
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/PieChartTypeTemplate.cxx:49:1) PROP_PIE_TEMPLATE_OFFSET_MODE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/PieChartTypeTemplate.cxx:50:1) PROP_PIE_TEMPLATE_DEFAULT_OFFSET
chart2/source/model/template/PieChartTypeTemplate.cxx:53
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/PieChartTypeTemplate.cxx:49:1) PROP_PIE_TEMPLATE_DIMENSION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/PieChartTypeTemplate.cxx:50:1) PROP_PIE_TEMPLATE_OFFSET_MODE
chart2/source/model/template/PieChartTypeTemplate.cxx:54
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/PieChartTypeTemplate.cxx:49:1) PROP_PIE_TEMPLATE_USE_RINGS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/PieChartTypeTemplate.cxx:50:1) PROP_PIE_TEMPLATE_DIMENSION
+chart2/source/model/template/PieChartTypeTemplate.cxx:55
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/PieChartTypeTemplate.cxx:50:1) PROP_PIE_TEMPLATE_USE_RINGS
+chart2/source/model/template/ScatterChartType.cxx:44
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ScatterChartType.cxx:42:1) PROP_SCATTERCHARTTYPE_CURVE_STYLE
chart2/source/model/template/ScatterChartType.cxx:45
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ScatterChartType.cxx:43:1) PROP_SCATTERCHARTTYPE_CURVE_STYLE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ScatterChartType.cxx:42:1) PROP_SCATTERCHARTTYPE_CURVE_RESOLUTION
chart2/source/model/template/ScatterChartType.cxx:46
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ScatterChartType.cxx:43:1) PROP_SCATTERCHARTTYPE_CURVE_RESOLUTION
-chart2/source/model/template/ScatterChartType.cxx:47
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ScatterChartType.cxx:43:1) PROP_SCATTERCHARTTYPE_SPLINE_ORDER
-chart2/source/model/template/ScatterChartTypeTemplate.cxx:48
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ScatterChartTypeTemplate.cxx:46:1) PROP_SCATTERCHARTTYPE_TEMPLATE_CURVE_STYLE
-chart2/source/model/template/ScatterChartTypeTemplate.cxx:49
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ScatterChartTypeTemplate.cxx:46:1) PROP_SCATTERCHARTTYPE_TEMPLATE_CURVE_RESOLUTION
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ScatterChartType.cxx:42:1) PROP_SCATTERCHARTTYPE_SPLINE_ORDER
chart2/source/model/template/ScatterChartTypeTemplate.cxx:50
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/ScatterChartTypeTemplate.cxx:46:1) PROP_SCATTERCHARTTYPE_TEMPLATE_SPLINE_ORDER
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ScatterChartTypeTemplate.cxx:48:1) PROP_SCATTERCHARTTYPE_TEMPLATE_CURVE_STYLE
+chart2/source/model/template/ScatterChartTypeTemplate.cxx:51
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ScatterChartTypeTemplate.cxx:48:1) PROP_SCATTERCHARTTYPE_TEMPLATE_CURVE_RESOLUTION
+chart2/source/model/template/ScatterChartTypeTemplate.cxx:52
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/ScatterChartTypeTemplate.cxx:48:1) PROP_SCATTERCHARTTYPE_TEMPLATE_SPLINE_ORDER
+chart2/source/model/template/StockChartTypeTemplate.cxx:50
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/StockChartTypeTemplate.cxx:48:1) PROP_STOCKCHARTTYPE_TEMPLATE_VOLUME
+chart2/source/model/template/StockChartTypeTemplate.cxx:51
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/StockChartTypeTemplate.cxx:48:1) PROP_STOCKCHARTTYPE_TEMPLATE_OPEN
+chart2/source/model/template/StockChartTypeTemplate.cxx:52
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/StockChartTypeTemplate.cxx:48:1) PROP_STOCKCHARTTYPE_TEMPLATE_LOW_HIGH
chart2/source/model/template/StockChartTypeTemplate.cxx:53
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/StockChartTypeTemplate.cxx:51:1) PROP_STOCKCHARTTYPE_TEMPLATE_VOLUME
-chart2/source/model/template/StockChartTypeTemplate.cxx:54
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/StockChartTypeTemplate.cxx:51:1) PROP_STOCKCHARTTYPE_TEMPLATE_OPEN
-chart2/source/model/template/StockChartTypeTemplate.cxx:55
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/StockChartTypeTemplate.cxx:51:1) PROP_STOCKCHARTTYPE_TEMPLATE_LOW_HIGH
-chart2/source/model/template/StockChartTypeTemplate.cxx:56
- enum (anonymous namespace)::(anonymous at chart2/source/model/template/StockChartTypeTemplate.cxx:51:1) PROP_STOCKCHARTTYPE_TEMPLATE_JAPANESE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/model/template/StockChartTypeTemplate.cxx:48:1) PROP_STOCKCHARTTYPE_TEMPLATE_JAPANESE
chart2/source/model/template/StockChartTypeTemplate.hxx:38
enum chart::StockChartTypeTemplate::StockVariant LOW_HI_CLOSE
-chart2/source/tools/CachedDataSequence.cxx:53
- enum (anonymous namespace)::(anonymous at chart2/source/tools/CachedDataSequence.cxx:50:1) PROP_NUMBERFORMAT_KEY
-chart2/source/tools/CachedDataSequence.cxx:54
- enum (anonymous namespace)::(anonymous at chart2/source/tools/CachedDataSequence.cxx:50:1) PROP_PROPOSED_ROLE
+chart2/source/tools/CachedDataSequence.cxx:50
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/CachedDataSequence.cxx:47:1) PROP_NUMBERFORMAT_KEY
+chart2/source/tools/CachedDataSequence.cxx:51
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/CachedDataSequence.cxx:47:1) PROP_PROPOSED_ROLE
chart2/source/tools/RegressionCurveModel.cxx:59
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_DEGREE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_DEGREE
chart2/source/tools/RegressionCurveModel.cxx:60
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_PERIOD
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_PERIOD
chart2/source/tools/RegressionCurveModel.cxx:61
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_EXTRAPOLATE_FORWARD
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_EXTRAPOLATE_FORWARD
chart2/source/tools/RegressionCurveModel.cxx:62
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_EXTRAPOLATE_BACKWARD
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_EXTRAPOLATE_BACKWARD
chart2/source/tools/RegressionCurveModel.cxx:63
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_FORCE_INTERCEPT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_FORCE_INTERCEPT
chart2/source/tools/RegressionCurveModel.cxx:64
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_INTERCEPT_VALUE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_INTERCEPT_VALUE
chart2/source/tools/RegressionCurveModel.cxx:65
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_CURVE_NAME
-chart2/source/tools/RegressionEquation.cxx:51
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionEquation.cxx:49:1) PROP_EQUATION_SHOW
-chart2/source/tools/RegressionEquation.cxx:52
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionEquation.cxx:49:1) PROP_EQUATION_XNAME
-chart2/source/tools/RegressionEquation.cxx:53
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionEquation.cxx:49:1) PROP_EQUATION_YNAME
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionCurveModel.cxx:57:1) PROPERTY_CURVE_NAME
chart2/source/tools/RegressionEquation.cxx:54
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionEquation.cxx:49:1) PROP_EQUATION_SHOW_CORRELATION_COEFF
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionEquation.cxx:52:1) PROP_EQUATION_SHOW
chart2/source/tools/RegressionEquation.cxx:55
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionEquation.cxx:49:1) PROP_EQUATION_REF_PAGE_SIZE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionEquation.cxx:52:1) PROP_EQUATION_XNAME
chart2/source/tools/RegressionEquation.cxx:56
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionEquation.cxx:49:1) PROP_EQUATION_REL_POS
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionEquation.cxx:52:1) PROP_EQUATION_YNAME
chart2/source/tools/RegressionEquation.cxx:57
- enum (anonymous namespace)::(anonymous at chart2/source/tools/RegressionEquation.cxx:49:1) PROP_EQUATION_NUMBER_FORMAT
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionEquation.cxx:52:1) PROP_EQUATION_SHOW_CORRELATION_COEFF
+chart2/source/tools/RegressionEquation.cxx:58
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionEquation.cxx:52:1) PROP_EQUATION_REF_PAGE_SIZE
+chart2/source/tools/RegressionEquation.cxx:59
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionEquation.cxx:52:1) PROP_EQUATION_REL_POS
+chart2/source/tools/RegressionEquation.cxx:60
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/RegressionEquation.cxx:52:1) PROP_EQUATION_NUMBER_FORMAT
+chart2/source/tools/UncachedDataSequence.cxx:46
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/UncachedDataSequence.cxx:44:1) PROP_NUMBERFORMAT_KEY
+chart2/source/tools/UncachedDataSequence.cxx:47
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/UncachedDataSequence.cxx:44:1) PROP_PROPOSED_ROLE
chart2/source/tools/UncachedDataSequence.cxx:48
- enum (anonymous namespace)::(anonymous at chart2/source/tools/UncachedDataSequence.cxx:46:1) PROP_NUMBERFORMAT_KEY
-chart2/source/tools/UncachedDataSequence.cxx:49
- enum (anonymous namespace)::(anonymous at chart2/source/tools/UncachedDataSequence.cxx:46:1) PROP_PROPOSED_ROLE
-chart2/source/tools/UncachedDataSequence.cxx:50
- enum (anonymous namespace)::(anonymous at chart2/source/tools/UncachedDataSequence.cxx:46:1) PROP_XML_RANGE
-chart2/source/view/axes/VAxisProperties.hxx:54
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/chart2/source/tools/UncachedDataSequence.cxx:44:1) PROP_XML_RANGE
+chart2/source/view/axes/VAxisProperties.hxx:49
enum chart::AxisLabelStaggering SIDE_BY_SIDE
-chart2/source/view/inc/LegendEntryProvider.hxx:39
+chart2/source/view/inc/LegendEntryProvider.hxx:42
enum chart::LegendSymbolStyle LegendSymbolStyle_BOX
+chart2/source/view/inc/ShapeFactory.hxx:65
+ enum chart::SymbolEnum Symbol_COUNT
+chart2/source/view/inc/ShapeFactory.hxx:77
+ enum chart::ShapeFactory::StackPosition Top
codemaker/source/cppumaker/dependencies.hxx:48
enum codemaker::cppumaker::Dependencies::Kind KIND_NORMAL
-comphelper/source/misc/backupfilehelper.cxx:395
+comphelper/source/misc/backupfilehelper.cxx:400
enum (anonymous namespace)::PackageRepository USER
-comphelper/source/misc/backupfilehelper.cxx:395
- enum (anonymous namespace)::PackageRepository SHARED
-comphelper/source/misc/backupfilehelper.cxx:395
+comphelper/source/misc/backupfilehelper.cxx:400
enum (anonymous namespace)::PackageRepository BUNDLED
+comphelper/source/misc/backupfilehelper.cxx:400
+ enum (anonymous namespace)::PackageRepository SHARED
comphelper/source/misc/syntaxhighlight.cxx:31
enum CharFlags StartIdentifier
comphelper/source/misc/syntaxhighlight.cxx:32
@@ -944,12 +952,18 @@ comphelper/source/misc/syntaxhighlight.cxx:39
enum CharFlags Space
comphelper/source/misc/syntaxhighlight.cxx:40
enum CharFlags EOL
-compilerplugins/clang/test/redundantcast.cxx:13
- enum Enum1 X
configmgr/source/access.hxx:454
- enum configmgr::Access::(anonymous at configmgr/source/access.hxx:453:5) IS_ANY
+ enum configmgr::Access::(anonymous at /media/noel/disk2/libo6/configmgr/source/access.hxx:453:5) IS_ANY
configmgr/source/partial.hxx:34
enum configmgr::Partial::Containment CONTAINS_SUBNODES
+connectivity/source/drivers/evoab2/EApi.h:75
+ EBookQueryTest E_BOOK_QUERY_IS
+connectivity/source/drivers/evoab2/EApi.h:76
+ EBookQueryTest E_BOOK_QUERY_CONTAINS
+connectivity/source/drivers/evoab2/EApi.h:77
+ EBookQueryTest E_BOOK_QUERY_BEGINS_WITH
+connectivity/source/drivers/evoab2/EApi.h:78
+ EBookQueryTest E_BOOK_QUERY_ENDS_WITH
connectivity/source/drivers/mork/MorkParser.hxx:60
enum MorkErrors NoError
connectivity/source/drivers/mork/MorkParser.hxx:61
@@ -958,13 +972,13 @@ connectivity/source/drivers/mork/MorkParser.hxx:62
enum MorkErrors DefectedFormat
connectivity/source/drivers/mork/MorkParser.hxx:144
enum MorkParser::NP Values
-connectivity/source/drivers/mork/MStatement.hxx:104
+connectivity/source/drivers/mork/MStatement.hxx:100
enum connectivity::mork::OCommonStatement::StatementType eCreateTable
-connectivity/source/drivers/postgresql/pq_connection.hxx:86
+connectivity/source/drivers/postgresql/pq_connection.hxx:80
enum pq_sdbc_driver::LogLevel Error
-connectivity/source/drivers/postgresql/pq_connection.hxx:87
+connectivity/source/drivers/postgresql/pq_connection.hxx:81
enum pq_sdbc_driver::LogLevel Sql
-connectivity/source/drivers/postgresql/pq_connection.hxx:88
+connectivity/source/drivers/postgresql/pq_connection.hxx:82
enum pq_sdbc_driver::LogLevel Info
connectivity/source/inc/java/sql/ConnectionLog.hxx:67
enum connectivity::java::sql::ConnectionLog::ObjectType CONNECTION
@@ -978,29 +992,25 @@ connectivity/source/inc/TSortIndex.hxx:37
enum connectivity::TAscendingOrder DESC
cppuhelper/source/servicemanager.hxx:151
enum cppuhelper::ServiceManager::Data::Implementation::Status STATUS_WRAPPER
-cui/source/dialogs/colorpicker.cxx:61
- enum UpdateFlags RGB
-cui/source/dialogs/colorpicker.cxx:62
- enum UpdateFlags CMYK
cui/source/dialogs/colorpicker.cxx:63
- enum UpdateFlags HSB
-cui/source/dialogs/colorpicker.cxx:64
- enum UpdateFlags ColorChooser
-cui/source/dialogs/colorpicker.cxx:65
- enum UpdateFlags ColorSlider
-cui/source/dialogs/colorpicker.cxx:66
- enum UpdateFlags Hex
-cui/source/dialogs/colorpicker.cxx:67
enum UpdateFlags All
cui/source/dialogs/hangulhanjadlg.cxx:89
enum svx::PseudoRubyText::RubyPosition eBelow
-cui/source/inc/cfgutil.hxx:80
- enum SfxCfgKind FUNCTION_SLOT
-cui/source/inc/cuitabarea.hxx:89
+cui/source/inc/acccfg.hxx:104
+ enum StartFileDialogType Open
+cui/source/inc/cuihyperdlg.hxx:38
+ enum HyperLinkPageType Internet
+cui/source/inc/cuihyperdlg.hxx:39
+ enum HyperLinkPageType Mail
+cui/source/inc/cuihyperdlg.hxx:40
+ enum HyperLinkPageType Document
+cui/source/inc/cuihyperdlg.hxx:41
+ enum HyperLinkPageType NewDocument
+cui/source/inc/cuitabarea.hxx:90
enum PageType Area
-cui/source/inc/cuitabarea.hxx:93
- enum PageType Shadow
cui/source/inc/cuitabarea.hxx:94
+ enum PageType Shadow
+cui/source/inc/cuitabarea.hxx:95
enum PageType Transparence
cui/source/inc/hldoctp.hxx:54
enum SvxHyperlinkDocTp::EPathType Type_Invalid
@@ -1010,132 +1020,122 @@ cui/source/options/optcolor.cxx:53
enum (anonymous namespace)::Group Group_General
cui/source/options/optcolor.cxx:58
enum (anonymous namespace)::Group Group_Basic
-cui/source/options/optfltr.cxx:32
+cui/source/options/optfltr.cxx:31
enum MSFltrPg2_CheckBoxEntries Math
-cui/source/options/optfltr.cxx:33
+cui/source/options/optfltr.cxx:32
enum MSFltrPg2_CheckBoxEntries Writer
-cui/source/options/optfltr.cxx:34
+cui/source/options/optfltr.cxx:33
enum MSFltrPg2_CheckBoxEntries Calc
-cui/source/options/optfltr.cxx:35
+cui/source/options/optfltr.cxx:34
enum MSFltrPg2_CheckBoxEntries Impress
-cui/source/options/optfltr.cxx:36
+cui/source/options/optfltr.cxx:35
enum MSFltrPg2_CheckBoxEntries SmartArt
-cui/source/options/optgenrl.cxx:42
+cui/source/options/optgenrl.cxx:49
enum (anonymous namespace)::RowType Row_Company
-cui/source/options/optgenrl.cxx:43
+cui/source/options/optgenrl.cxx:50
enum (anonymous namespace)::RowType Row_Name
-cui/source/options/optgenrl.cxx:44
+cui/source/options/optgenrl.cxx:51
+ enum (anonymous namespace)::RowType Row_Name_Russian
+cui/source/options/optgenrl.cxx:52
+ enum (anonymous namespace)::RowType Row_Name_Eastern
+cui/source/options/optgenrl.cxx:53
enum (anonymous namespace)::RowType Row_Street
-cui/source/options/optgenrl.cxx:45
+cui/source/options/optgenrl.cxx:54
enum (anonymous namespace)::RowType Row_Street_Russian
-cui/source/options/optgenrl.cxx:46
+cui/source/options/optgenrl.cxx:55
enum (anonymous namespace)::RowType Row_City
-cui/source/options/optgenrl.cxx:47
+cui/source/options/optgenrl.cxx:56
enum (anonymous namespace)::RowType Row_City_US
-cui/source/options/optgenrl.cxx:48
+cui/source/options/optgenrl.cxx:57
enum (anonymous namespace)::RowType Row_Country
-cui/source/options/optgenrl.cxx:49
+cui/source/options/optgenrl.cxx:58
enum (anonymous namespace)::RowType Row_TitlePos
-cui/source/options/optgenrl.cxx:50
+cui/source/options/optgenrl.cxx:59
enum (anonymous namespace)::RowType Row_Phone
-cui/source/options/optgenrl.cxx:51
+cui/source/options/optgenrl.cxx:60
enum (anonymous namespace)::RowType Row_FaxMail
-cui/source/options/optlingu.cxx:271
+cui/source/options/optlingu.cxx:262
enum EID_OPTIONS EID_SPELL_AUTO
-cui/source/options/optlingu.cxx:272
+cui/source/options/optlingu.cxx:263
enum EID_OPTIONS EID_GRAMMAR_AUTO
-cui/source/options/optlingu.cxx:273
+cui/source/options/optlingu.cxx:264
enum EID_OPTIONS EID_CAPITAL_WORDS
-cui/source/options/optlingu.cxx:274
+cui/source/options/optlingu.cxx:265
enum EID_OPTIONS EID_WORDS_WITH_DIGITS
-cui/source/options/optlingu.cxx:275
+cui/source/options/optlingu.cxx:266
enum EID_OPTIONS EID_SPELL_SPECIAL
-cui/source/options/optlingu.cxx:279
+cui/source/options/optlingu.cxx:270
enum EID_OPTIONS EID_HYPH_AUTO
-cui/source/options/optlingu.cxx:280
+cui/source/options/optlingu.cxx:271
enum EID_OPTIONS EID_HYPH_SPECIAL
-cui/source/tabpages/autocdlg.cxx:393
+cui/source/tabpages/autocdlg.cxx:389
enum OfaAutoFmtOptions USE_REPLACE_TABLE
-cui/source/tabpages/autocdlg.cxx:394
+cui/source/tabpages/autocdlg.cxx:390
enum OfaAutoFmtOptions CORR_UPPER
-cui/source/tabpages/autocdlg.cxx:395
+cui/source/tabpages/autocdlg.cxx:391
enum OfaAutoFmtOptions BEGIN_UPPER
-cui/source/tabpages/autocdlg.cxx:396
+cui/source/tabpages/autocdlg.cxx:392
enum OfaAutoFmtOptions BOLD_UNDERLINE
-cui/source/tabpages/autocdlg.cxx:397
+cui/source/tabpages/autocdlg.cxx:393
enum OfaAutoFmtOptions DETECT_URL
-cui/source/tabpages/autocdlg.cxx:398
+cui/source/tabpages/autocdlg.cxx:394
enum OfaAutoFmtOptions REPLACE_DASHES
-cui/source/tabpages/autocdlg.cxx:399
+cui/source/tabpages/autocdlg.cxx:395
enum OfaAutoFmtOptions DEL_SPACES_AT_STT_END
-cui/source/tabpages/autocdlg.cxx:400
+cui/source/tabpages/autocdlg.cxx:396
enum OfaAutoFmtOptions DEL_SPACES_BETWEEN_LINES
-cui/source/tabpages/autocdlg.cxx:401
+cui/source/tabpages/autocdlg.cxx:397
enum OfaAutoFmtOptions IGNORE_DBLSPACE
-cui/source/tabpages/autocdlg.cxx:402
+cui/source/tabpages/autocdlg.cxx:398
enum OfaAutoFmtOptions CORRECT_CAPS_LOCK
-cui/source/tabpages/autocdlg.cxx:404
+cui/source/tabpages/autocdlg.cxx:400
enum OfaAutoFmtOptions INSERT_BORDER
-cui/source/tabpages/autocdlg.cxx:405
+cui/source/tabpages/autocdlg.cxx:401
enum OfaAutoFmtOptions CREATE_TABLE
-cui/source/tabpages/autocdlg.cxx:406
+cui/source/tabpages/autocdlg.cxx:402
enum OfaAutoFmtOptions REPLACE_STYLES
-cui/source/tabpages/autocdlg.cxx:407
+cui/source/tabpages/autocdlg.cxx:403
enum OfaAutoFmtOptions DEL_EMPTY_NODE
-cui/source/tabpages/autocdlg.cxx:408
+cui/source/tabpages/autocdlg.cxx:404
enum OfaAutoFmtOptions REPLACE_USER_COLL
-cui/source/tabpages/autocdlg.cxx:1782
+cui/source/tabpages/autocdlg.cxx:1767
enum OfaQuoteOptions ADD_NONBRK_SPACE
-cui/source/tabpages/autocdlg.cxx:1783
+cui/source/tabpages/autocdlg.cxx:1768
enum OfaQuoteOptions REPLACE_1ST
-dbaccess/source/core/dataaccess/databasedocument.hxx:161
+dbaccess/source/core/dataaccess/databasedocument.hxx:163
enum dbaccess::ODatabaseDocument::InitState NotInitialized
-dbaccess/source/core/dataaccess/databasedocument.hxx:625
+dbaccess/source/core/dataaccess/databasedocument.hxx:640
enum dbaccess::DocumentGuard::InitMethod_ InitMethod
-dbaccess/source/core/dataaccess/databasedocument.hxx:631
+dbaccess/source/core/dataaccess/databasedocument.hxx:646
enum dbaccess::DocumentGuard::DefaultMethod_ DefaultMethod
-dbaccess/source/core/dataaccess/databasedocument.hxx:637
+dbaccess/source/core/dataaccess/databasedocument.hxx:652
enum dbaccess::DocumentGuard::MethodUsedDuringInit_ MethodUsedDuringInit
-dbaccess/source/core/dataaccess/databasedocument.hxx:643
+dbaccess/source/core/dataaccess/databasedocument.hxx:658
enum dbaccess::DocumentGuard::MethodWithoutInit_ MethodWithoutInit
-dbaccess/source/core/dataaccess/ModelImpl.hxx:162
- enum dbaccess::ODatabaseModelImpl::EmbeddedMacros eDocumentWideMacros
-dbaccess/source/core/inc/definitioncontainer.hxx:111
+dbaccess/source/core/inc/definitioncontainer.hxx:110
enum dbaccess::ODefinitionContainer::ListenerType ContainerListemers
-dbaccess/source/core/inc/objectnameapproval.hxx:49
+dbaccess/source/core/inc/ModelImpl.hxx:137
+ enum dbaccess::ODatabaseModelImpl::EmbeddedMacros eDocumentWideMacros
+dbaccess/source/core/inc/objectnameapproval.hxx:50
enum dbaccess::ObjectNameApproval::ObjectType TypeTable
-dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:72
- enum dbaccess::OSingleSelectQueryComposer::EColumnType SelectColumns
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:73
enum dbaccess::OSingleSelectQueryComposer::EColumnType GroupByColumns
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:74
enum dbaccess::OSingleSelectQueryComposer::EColumnType OrderColumns
-dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:75
- enum dbaccess::OSingleSelectQueryComposer::EColumnType ParameterColumns
-dbaccess/source/ext/macromigration/migrationengine.cxx:250
+dbaccess/source/ext/macromigration/migrationengine.cxx:248
enum dbmm::(anonymous namespace)::OpenDocResult eFailure
dbaccess/source/filter/xml/xmlDataSource.hxx:35
enum dbaxml::OXMLDataSource::UsedFor eDataSource
-dbaccess/source/filter/xml/xmlEnums.hxx:114
+dbaccess/source/filter/xml/xmlEnums.hxx:119
enum dbaxml::XMLDocuments XML_TOK_QUERY_COLLECTION
dbaccess/source/ui/app/AppView.hxx:76
enum dbaui::OApplicationView::ChildFocusState PANELSWAP
dbaccess/source/ui/dlg/ConnectionHelper.hxx:34
enum dbaui::IS_PATH_EXIST PATH_EXIST
-dbaccess/source/ui/dlg/detailpages.hxx:39
- enum OCommonBehaviourTabPageFlags UseCharset
-dbaccess/source/ui/dlg/detailpages.hxx:40
- enum OCommonBehaviourTabPageFlags UseOptions
-dbaccess/source/ui/inc/dbadmin.hxx:115
+dbaccess/source/ui/inc/dbadmin.hxx:105
enum dbaui::ODbAdminDialog::ApplyResult AR_KEEP
-dbaccess/source/ui/inc/dlgsave.hxx:39
- enum SADFlags AdditionalDescription
dbaccess/source/ui/inc/dsmeta.hxx:40
enum dbaui::AuthenticationMode AuthPwd
-dbaccess/source/ui/inc/paramdialog.hxx:48
- enum VisitFlags Visited
-dbaccess/source/ui/inc/paramdialog.hxx:49
- enum VisitFlags Dirty
dbaccess/source/ui/inc/QEnumTypes.hxx:27
enum dbaui::EOrderDir ORDER_ASC
dbaccess/source/ui/inc/QEnumTypes.hxx:28
@@ -1148,199 +1148,159 @@ dbaccess/source/ui/inc/QueryDesignView.hxx:49
enum dbaui::SqlParseError eIllegalJoinCondition
dbaccess/source/ui/inc/QueryDesignView.hxx:62
enum dbaui::OQueryDesignView::ChildFocusState TABLEVIEW
-dbaccess/source/ui/inc/WCopyTable.hxx:230
+dbaccess/source/ui/inc/sqlmessage.hxx:56
+ enum dbaui::MessBoxStyle DefaultOk
+dbaccess/source/ui/inc/sqlmessage.hxx:57
+ enum dbaui::MessBoxStyle DefaultCancel
+dbaccess/source/ui/inc/sqlmessage.hxx:58
+ enum dbaui::MessBoxStyle DefaultRetry
+dbaccess/source/ui/inc/sqlmessage.hxx:59
+ enum dbaui::MessBoxStyle DefaultYes
+dbaccess/source/ui/inc/sqlmessage.hxx:60
+ enum dbaui::MessBoxStyle DefaultNo
+dbaccess/source/ui/inc/WCopyTable.hxx:229
enum dbaui::OCopyTableWizard::Wizard_Button_Style WIZARD_PREV
dbaccess/source/ui/tabledesign/TableFieldDescWin.hxx:40
enum dbaui::OTableFieldDescWin::ChildFocusState HELP
-desktop/inc/app.hxx:68
+desktop/inc/app.hxx:69
enum desktop::Desktop::BootstrapStatus BS_OK
-desktop/source/app/officeipcthread.cxx:818
+desktop/source/app/officeipcthread.cxx:773
enum PipeMode PIPEMODE_CONNECTED
-desktop/source/app/officeipcthread.hxx:83
+desktop/source/app/officeipcthread.hxx:85
enum desktop::RequestHandler::State Starting
desktop/source/app/userinstall.hxx:32
enum desktop::userinstall::Status ERROR_OTHER
-desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:247
+desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:244
enum dp_gui::ExtensionCmdQueue::Thread::Input START
desktop/source/deployment/inc/dp_update.hxx:49
enum dp_misc::UPDATE_SOURCE UPDATE_SOURCE_ONLINE
-desktop/source/deployment/registry/component/dp_component.cxx:117
+desktop/source/deployment/registry/component/dp_component.cxx:114
enum dp_registry::backend::component::(anonymous namespace)::BackendImpl::ComponentPackageImpl::reg REG_NOT_REGISTERED
-desktop/source/deployment/registry/component/dp_component.cxx:249
+desktop/source/deployment/registry/component/dp_component.cxx:246
enum dp_registry::backend::component::(anonymous namespace)::BackendImpl::RcItem RCITEM_COMPONENTS
-desktop/source/deployment/registry/inc/dp_backend.h:221
- enum dp_registry::backend::PackageRegistryBackend::Context Tmp
-desktop/source/deployment/registry/inc/dp_backend.h:221
+desktop/source/deployment/registry/inc/dp_backend.h:220
enum dp_registry::backend::PackageRegistryBackend::Context Unknown
-desktop/source/deployment/registry/inc/dp_backend.h:221
+desktop/source/deployment/registry/inc/dp_backend.h:220
enum dp_registry::backend::PackageRegistryBackend::Context Document
-desktop/source/lib/init.cxx:2521
+desktop/source/deployment/registry/inc/dp_backend.h:220
+ enum dp_registry::backend::PackageRegistryBackend::Context Tmp
+desktop/source/lib/init.cxx:3103
enum UndoOrRedo REDO
-desktop/source/lib/init.cxx:3112
- enum (anonymous at desktop/source/lib/init.cxx:3109:5) FULL_INIT
+desktop/source/lib/init.cxx:4107
+ enum (anonymous at /media/noel/disk2/libo6/desktop/source/lib/init.cxx:4104:5) FULL_INIT
desktop/source/migration/services/oo3extensionmigration.hxx:78
enum migration::OO3ExtensionMigration::ScanResult SCANRESULT_DONTMIGRATE_EXTENSION
-desktop/unx/source/start.c:180
- int ProgressRestart
-desktop/unx/source/start.c:180
+desktop/unx/source/start.c:178
int ProgressExit
-editeng/source/editeng/editdoc.hxx:347
+desktop/unx/source/start.c:178
+ int ProgressRestart
+drawinglayer/source/tools/emfpbrush.hxx:31
+ enum emfplushelper::EmfPlusHatchStyle HatchStyleHorizontal
+editeng/inc/editdoc.hxx:346
enum AsianCompressionFlags Normal
-editeng/source/editeng/impedit.hxx:107
- enum GetCursorFlags TextOnly
-editeng/source/editeng/impedit.hxx:108
- enum GetCursorFlags StartOfLine
-editeng/source/editeng/impedit.hxx:109
- enum GetCursorFlags EndOfLine
-editeng/source/editeng/impedit.hxx:110
+editeng/source/editeng/impedit.hxx:106
enum GetCursorFlags PreferPortionStart
-editeng/source/items/paraitem.cxx:74
+editeng/source/items/paraitem.cxx:71
+ enum SvxSpecialLineSpace User
+editeng/source/items/paraitem.cxx:75
enum SvxSpecialLineSpace End
-editeng/source/misc/svxacorr.cxx:87
- enum Flags ExclamationMark
-editeng/source/misc/svxacorr.cxx:88
- enum Flags QuestionMark
editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:26
enum SvXMLAutoCorrectToken NAMESPACE
editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:27
enum SvXMLAutoCorrectToken ABBREVIATED_NAME
editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:30
enum SvXMLAutoCorrectToken NAME
-extensions/source/propctrlr/browserlistbox.cxx:130
+emfio/inc/mtftools.hxx:51
+ enum emfio::BkMode OPAQUE
+emfio/inc/mtftools.hxx:81
+ enum emfio::WMFRasterOp Black
+emfio/inc/mtftools.hxx:85
+ enum emfio::WMFRasterOp CopyPen
+extensions/source/propctrlr/browserlistbox.cxx:131
enum pcr::PropertyControlContext_Impl::NotificationMode eAsynchronously
-extensions/source/propctrlr/eformshelper.hxx:182
+extensions/source/propctrlr/eformshelper.hxx:181
enum pcr::EFormsHelper::ModelElementType Binding
extensions/source/propctrlr/formcomponenthandler.hxx:51
enum pcr::ComponentClassification eUnknown
-extensions/source/propctrlr/formlinkdialog.cxx:83
+extensions/source/propctrlr/formlinkdialog.cxx:81
enum pcr::FieldLinkRow::LinkParticipant eMasterField
-filter/inc/gfxtypes.hxx:57
- enum svgi::Gradient::GradientType RADIAL
-filter/inc/gfxtypes.hxx:118
- enum svgi::FillRule NON_ZERO
-filter/inc/gfxtypes.hxx:119
- enum svgi::FillRule EVEN_ODD
-filter/inc/gfxtypes.hxx:131
- enum svgi::CapStyle BUTT
-filter/inc/gfxtypes.hxx:132
- enum svgi::CapStyle RECT
-filter/inc/gfxtypes.hxx:133
- enum svgi::CapStyle ROUND
+extensions/source/update/check/updatehdl.hxx:49
+ enum DialogControls THROBBER_CTRL
filter/source/config/cache/filtercache.hxx:144
enum filter::config::FilterCache::EItemFlushState E_ITEM_UNCHANGED
-filter/source/graphicfilter/ipict/ipict.cxx:69
- enum PictReaderInternal::Pattern::PenStyle PEN_DASH
-filter/source/graphicfilter/ipict/ipict.cxx:69
+filter/source/graphicfilter/ipict/ipict.cxx:70
enum PictReaderInternal::Pattern::PenStyle PEN_NULL
-filter/source/graphicfilter/ipict/ipict.cxx:69
+filter/source/graphicfilter/ipict/ipict.cxx:70
enum PictReaderInternal::Pattern::PenStyle PEN_SOLID
-filter/source/graphicfilter/ipict/ipict.cxx:69
- enum PictReaderInternal::Pattern::PenStyle PEN_DASHDOT
-filter/source/graphicfilter/ipict/ipict.cxx:69
- enum PictReaderInternal::Pattern::PenStyle PEN_DOT
filter/source/graphicfilter/ipict/ipict.cxx:70
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_VERT
+ enum PictReaderInternal::Pattern::PenStyle PEN_DASH
filter/source/graphicfilter/ipict/ipict.cxx:70
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_HORZ
+ enum PictReaderInternal::Pattern::PenStyle PEN_DASHDOT
filter/source/graphicfilter/ipict/ipict.cxx:70
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_SOLID
-filter/source/graphicfilter/ipict/ipict.cxx:71
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_CROSS
+ enum PictReaderInternal::Pattern::PenStyle PEN_DOT
filter/source/graphicfilter/ipict/ipict.cxx:71
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_UPDIAG
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_VERT
filter/source/graphicfilter/ipict/ipict.cxx:71
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_DIAGCROSS
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_SOLID
filter/source/graphicfilter/ipict/ipict.cxx:71
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_DOWNDIAG
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_HORZ
filter/source/graphicfilter/ipict/ipict.cxx:72
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_25
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_CROSS
filter/source/graphicfilter/ipict/ipict.cxx:72
- enum PictReaderInternal::Pattern::BrushStyle BRUSH_75
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_DIAGCROSS
filter/source/graphicfilter/ipict/ipict.cxx:72
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_UPDIAG
+filter/source/graphicfilter/ipict/ipict.cxx:72
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_DOWNDIAG
+filter/source/graphicfilter/ipict/ipict.cxx:73
enum PictReaderInternal::Pattern::BrushStyle BRUSH_50
-filter/source/graphicfilter/ipict/ipict.cxx:140
+filter/source/graphicfilter/ipict/ipict.cxx:73
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_25
+filter/source/graphicfilter/ipict/ipict.cxx:73
+ enum PictReaderInternal::Pattern::BrushStyle BRUSH_75
+filter/source/graphicfilter/ipict/ipict.cxx:141
enum PictDrawingMethod UNDEFINED
-filter/source/svg/svgreader.cxx:53
- enum svgi::SvgiVisitorCaller STYLE_WRITER
-filter/source/svg/svgreader.cxx:53
- enum svgi::SvgiVisitorCaller STYLE_ANNOTATOR
filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx:36
enum FilterType FILTER_IMPORT
-filter/source/xsltdialog/typedetectionimport.hxx:48
+filter/source/xsltdialog/typedetectionimport.hxx:49
enum ImportState e_Unknown
-forms/source/inc/FormComponent.hxx:567
+forms/source/inc/FormComponent.hxx:566
enum frm::OBoundControlModel::ValueChangeInstigator eOther
forms/source/richtext/rtattributes.hxx:40
enum frm::AttributeCheckState eIndetermined
forms/source/solar/inc/navtoolbar.hxx:44
enum frm::NavigationToolBar::ImageSize eSmall
-forms/source/xforms/submission/submission.hxx:123
+forms/source/xforms/submission/submission.hxx:121
enum CSubmission::SubmissionResult UNKNOWN_ERROR
-fpicker/source/office/fpdialogbase.hxx:40
- enum PickerFlags AutoExtension
-fpicker/source/office/fpdialogbase.hxx:41
- enum PickerFlags FilterOptions
-fpicker/source/office/fpdialogbase.hxx:42
- enum PickerFlags ShowVersions
-fpicker/source/office/fpdialogbase.hxx:43
- enum PickerFlags InsertAsLink
-fpicker/source/office/fpdialogbase.hxx:44
- enum PickerFlags ShowPreview
-fpicker/source/office/fpdialogbase.hxx:45
- enum PickerFlags Templates
-fpicker/source/office/fpdialogbase.hxx:46
- enum PickerFlags PlayButton
-fpicker/source/office/fpdialogbase.hxx:47
- enum PickerFlags Selection
-fpicker/source/office/fpdialogbase.hxx:48
- enum PickerFlags ImageTemplate
-fpicker/source/office/fpdialogbase.hxx:49
- enum PickerFlags PathDialog
-fpicker/source/office/fpdialogbase.hxx:50
- enum PickerFlags Open
-fpicker/source/office/fpdialogbase.hxx:51
- enum PickerFlags SaveAs
-fpicker/source/office/fpdialogbase.hxx:52
- enum PickerFlags Password
-fpicker/source/office/fpdialogbase.hxx:53
- enum PickerFlags ReadOnly
-fpicker/source/office/fpdialogbase.hxx:54
- enum PickerFlags MultiSelection
fpicker/source/office/fpinteraction.hxx:47
enum svt::OFilePickerInteractionHandler::EInterceptedInteractions E_NOINTERCEPTION
fpicker/source/office/fpsmartcontent.hxx:60
enum svt::SmartContent::Type Document
fpicker/source/office/fpsmartcontent.hxx:98
enum svt::SmartContent::InteractionHandlerType IHT_OWN
-fpicker/source/office/iodlg.cxx:328
+fpicker/source/office/iodlg.cxx:330
enum CustomContainer::FocusState Places
-fpicker/source/office/iodlg.cxx:329
+fpicker/source/office/iodlg.cxx:331
enum CustomContainer::FocusState Add
-fpicker/source/office/iodlg.cxx:330
+fpicker/source/office/iodlg.cxx:332
enum CustomContainer::FocusState Delete
-fpicker/source/office/iodlg.cxx:331
- enum CustomContainer::FocusState FileView
fpicker/source/office/iodlg.cxx:333
+ enum CustomContainer::FocusState FileView
+fpicker/source/office/iodlg.cxx:335
enum CustomContainer::FocusState FocusCount
-fpicker/source/office/iodlg.hxx:57
- enum AdjustFilterFlags NonEmpty
-fpicker/source/office/iodlg.hxx:58
- enum AdjustFilterFlags Changed
-fpicker/source/office/iodlg.hxx:59
- enum AdjustFilterFlags UserFilter
-fpicker/source/office/RemoteFilesDialog.cxx:17
+fpicker/source/office/RemoteFilesDialog.cxx:22
enum FileViewContainer::FocusState TreeView
-fpicker/source/office/RemoteFilesDialog.cxx:18
+fpicker/source/office/RemoteFilesDialog.cxx:23
enum FileViewContainer::FocusState FileView
-fpicker/source/office/RemoteFilesDialog.cxx:20
+fpicker/source/office/RemoteFilesDialog.cxx:25
enum FileViewContainer::FocusState FocusCount
-framework/inc/dispatch/closedispatcher.hxx:73
+framework/inc/dispatch/closedispatcher.hxx:72
enum framework::CloseDispatcher::EOperation E_CLOSE_WIN
-framework/inc/jobs/jobdata.hxx:55
+framework/inc/jobs/jobdata.hxx:54
enum framework::JobData::EMode E_UNKNOWN_MODE
-framework/inc/jobs/jobdata.hxx:59
+framework/inc/jobs/jobdata.hxx:58
enum framework::JobData::EMode E_SERVICE
-framework/inc/jobs/jobdata.hxx:71
+framework/inc/jobs/jobdata.hxx:70
enum framework::JobData::EEnvironment E_UNKNOWN_ENVIRONMENT
framework/inc/jobs/jobresult.hxx:56
enum framework::JobResult::EParts E_NOPART
@@ -1350,39 +1310,37 @@ framework/inc/jobs/jobresult.hxx:58
enum framework::JobResult::EParts E_DEACTIVATE
framework/inc/jobs/jobresult.hxx:59
enum framework::JobResult::EParts E_DISPATCHRESULT
-framework/inc/services/desktop.hxx:63
+framework/inc/services/desktop.hxx:58
enum framework::ELoadState E_NOTSET
-framework/inc/services/desktop.hxx:64
+framework/inc/services/desktop.hxx:59
enum framework::ELoadState E_SUCCESSFUL
-framework/inc/services/desktop.hxx:65
+framework/inc/services/desktop.hxx:60
enum framework::ELoadState E_FAILED
framework/inc/threadhelp/transactionmanager.hxx:85
enum framework::EExceptionMode E_SOFTEXCEPTIONS
-framework/inc/uielement/menubarmerger.hxx:47
+framework/inc/uielement/menubarmerger.hxx:45
enum framework::RPResultInfo RP_POPUPMENU_NOT_FOUND
-framework/inc/uielement/menubarmerger.hxx:48
+framework/inc/uielement/menubarmerger.hxx:46
enum framework::RPResultInfo RP_MENUITEM_NOT_FOUND
-framework/inc/uielement/togglebuttontoolbarcontroller.hxx:43
+framework/inc/uielement/togglebuttontoolbarcontroller.hxx:42
enum framework::ToggleButtonToolbarController::Style ToggleDropDownButton
framework/inc/xml/imagesconfiguration.hxx:39
enum framework::ImageMaskMode ImageMaskMode_Color
-framework/inc/xml/imagesdocumenthandler.hxx:63
+framework/inc/xml/imagesdocumenthandler.hxx:62
enum framework::OReadImagesDocumentHandler::Image_XML_Namespace IMG_NS_XLINK
-framework/inc/xml/statusbardocumenthandler.hxx:60
+framework/inc/xml/statusbardocumenthandler.hxx:63
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Namespace SB_NS_XLINK
-framework/inc/xml/toolboxdocumenthandler.hxx:59
+framework/inc/xml/toolboxdocumenthandler.hxx:61
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Namespace TB_NS_XLINK
framework/source/fwe/classes/actiontriggerseparatorpropertyset.cxx:42
enum EPROPERTIES PROPERTYCOUNT
-framework/source/fwe/classes/addonsoptions.cxx:209
+framework/source/fwe/classes/addonsoptions.cxx:212
enum framework::AddonsOptions_Impl::ImageSize IMGSIZE_SMALL
-framework/source/fwe/classes/addonsoptions.cxx:210
+framework/source/fwe/classes/addonsoptions.cxx:213
enum framework::AddonsOptions_Impl::ImageSize IMGSIZE_BIG
-framework/source/inc/loadenv/loadenv.hxx:57
+framework/source/inc/loadenv/loadenv.hxx:53
enum LoadEnvFeatures WorkWithUI
-framework/source/inc/loadenv/loadenv.hxx:59
- enum LoadEnvFeatures AllowContentHandler
-framework/source/inc/loadenv/loadenv.hxx:102
+framework/source/inc/loadenv/loadenv.hxx:96
enum framework::LoadEnv::EContentType E_CAN_BE_HANDLED
framework/source/inc/loadenv/loadenvexception.hxx:58
enum framework::LoadEnvException::EIDs ID_INVALID_ENVIRONMENT
@@ -1394,266 +1352,146 @@ framework/source/inc/loadenv/loadenvexception.hxx:69
enum framework::LoadEnvException::EIDs ID_STILL_RUNNING
framework/source/inc/loadenv/loadenvexception.hxx:74
enum framework::LoadEnvException::EIDs ID_GENERAL_ERROR
-framework/source/layoutmanager/toolbarlayoutmanager.hxx:70
+framework/source/layoutmanager/toolbarlayoutmanager.hxx:64
enum framework::ToolbarLayoutManager::PreviewFrameDetection PREVIEWFRAME_NO
-framework/source/services/autorecovery.cxx:188
+framework/source/services/autorecovery.cxx:192
enum (anonymous namespace)::AutoRecovery::EDocStates E_UNKNOWN
-framework/source/services/autorecovery.cxx:196
+framework/source/services/autorecovery.cxx:200
enum (anonymous namespace)::AutoRecovery::EDocStates E_TRY_SAVE
-framework/source/services/autorecovery.cxx:207
+framework/source/services/autorecovery.cxx:211
enum (anonymous namespace)::AutoRecovery::EDocStates E_SUCCEEDED
-framework/source/services/autorecovery.cxx:218
+framework/source/services/autorecovery.cxx:222
enum (anonymous namespace)::AutoRecovery::EFailureSafeResult E_COPIED
-framework/source/services/autorecovery.cxx:219
+framework/source/services/autorecovery.cxx:223
enum (anonymous namespace)::AutoRecovery::EFailureSafeResult E_ORIGINAL_FILE_MISSING
-framework/source/services/autorecovery.cxx:220
+framework/source/services/autorecovery.cxx:224
enum (anonymous namespace)::AutoRecovery::EFailureSafeResult E_WRONG_TARGET_PATH
-framework/source/services/substitutepathvars.cxx:52
+framework/source/services/substitutepathvars.cxx:54
enum (anonymous namespace)::PreDefVariable PREDEFVAR_INST
-framework/source/services/substitutepathvars.cxx:53
+framework/source/services/substitutepathvars.cxx:55
enum (anonymous namespace)::PreDefVariable PREDEFVAR_PROG
-framework/source/services/substitutepathvars.cxx:54
- enum (anonymous namespace)::PreDefVariable PREDEFVAR_USER
framework/source/services/substitutepathvars.cxx:56
+ enum (anonymous namespace)::PreDefVariable PREDEFVAR_USER
+framework/source/services/substitutepathvars.cxx:58
enum (anonymous namespace)::PreDefVariable PREDEFVAR_HOME
-framework/source/services/substitutepathvars.cxx:57
- enum (anonymous namespace)::PreDefVariable PREDEFVAR_TEMP
framework/source/services/substitutepathvars.cxx:59
+ enum (anonymous namespace)::PreDefVariable PREDEFVAR_TEMP
+framework/source/services/substitutepathvars.cxx:61
enum (anonymous namespace)::PreDefVariable PREDEFVAR_USERNAME
-framework/source/services/substitutepathvars.cxx:60
+framework/source/services/substitutepathvars.cxx:62
enum (anonymous namespace)::PreDefVariable PREDEFVAR_LANGID
-framework/source/services/substitutepathvars.cxx:61
+framework/source/services/substitutepathvars.cxx:63
enum (anonymous namespace)::PreDefVariable PREDEFVAR_VLANG
-framework/source/services/substitutepathvars.cxx:62
+framework/source/services/substitutepathvars.cxx:64
enum (anonymous namespace)::PreDefVariable PREDEFVAR_INSTPATH
-framework/source/services/substitutepathvars.cxx:63
+framework/source/services/substitutepathvars.cxx:65
enum (anonymous namespace)::PreDefVariable PREDEFVAR_PROGPATH
-framework/source/services/substitutepathvars.cxx:64
+framework/source/services/substitutepathvars.cxx:66
enum (anonymous namespace)::PreDefVariable PREDEFVAR_USERPATH
-framework/source/services/substitutepathvars.cxx:65
+framework/source/services/substitutepathvars.cxx:67
enum (anonymous namespace)::PreDefVariable PREDEFVAR_INSTURL
-framework/source/services/substitutepathvars.cxx:66
+framework/source/services/substitutepathvars.cxx:68
enum (anonymous namespace)::PreDefVariable PREDEFVAR_PROGURL
-framework/source/services/substitutepathvars.cxx:67
+framework/source/services/substitutepathvars.cxx:69
enum (anonymous namespace)::PreDefVariable PREDEFVAR_USERURL
-framework/source/services/substitutepathvars.cxx:70
+framework/source/services/substitutepathvars.cxx:72
enum (anonymous namespace)::PreDefVariable PREDEFVAR_BASEINSTURL
-framework/source/services/substitutepathvars.cxx:71
+framework/source/services/substitutepathvars.cxx:73
enum (anonymous namespace)::PreDefVariable PREDEFVAR_USERDATAURL
-framework/source/services/substitutepathvars.cxx:72
+framework/source/services/substitutepathvars.cxx:74
enum (anonymous namespace)::PreDefVariable PREDEFVAR_BRANDBASEURL
-framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx:140
+framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx:143
enum (anonymous namespace)::ModuleUIConfigurationManager::Layer LAYER_DEFAULT
-framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx:142
+framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx:145
enum (anonymous namespace)::ModuleUIConfigurationManager::Layer LAYER_COUNT
-framework/source/uiconfiguration/windowstateconfiguration.cxx:140
- enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_DOCKINGAREA
framework/source/uiconfiguration/windowstateconfiguration.cxx:141
- enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_POS
+ enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_DOCKINGAREA
framework/source/uiconfiguration/windowstateconfiguration.cxx:142
- enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_SIZE
+ enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_POS
framework/source/uiconfiguration/windowstateconfiguration.cxx:143
- enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_UINAME
+ enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_SIZE
framework/source/uiconfiguration/windowstateconfiguration.cxx:144
- enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_INTERNALSTATE
+ enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_UINAME
framework/source/uiconfiguration/windowstateconfiguration.cxx:145
- enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_STYLE
+ enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_INTERNALSTATE
framework/source/uiconfiguration/windowstateconfiguration.cxx:146
- enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_DOCKPOS
+ enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_STYLE
framework/source/uiconfiguration/windowstateconfiguration.cxx:147
+ enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_DOCKPOS
+framework/source/uiconfiguration/windowstateconfiguration.cxx:148
enum (anonymous namespace)::ConfigurationAccess_WindowState::WindowStateMask WINDOWSTATE_MASK_DOCKSIZE
-helpcompiler/inc/BasCodeTagger.hxx:41
+helpcompiler/inc/BasCodeTagger.hxx:43
enum BasicCodeTagger::TaggerException NULL_DOCUMENT
-helpcompiler/inc/HelpCompiler.hxx:60
+helpcompiler/inc/HelpCompiler.hxx:61
enum fs::convert native
-i18nlangtag/source/languagetag/languagetag.cxx:336
- enum LanguageTagImpl::Extraction EXTRACTED_X
i18nlangtag/source/languagetag/languagetag.cxx:337
+ enum LanguageTagImpl::Extraction EXTRACTED_X
+i18nlangtag/source/languagetag/languagetag.cxx:338
enum LanguageTagImpl::Extraction EXTRACTED_X_JOKER
-i18npool/inc/cclass_unicode.hxx:38
- enum ParserFlags ILLEGAL
+i18nlangtag/source/languagetag/languagetag.cxx:339
+ enum LanguageTagImpl::Extraction EXTRACTED_KNOWN_BAD
i18npool/inc/cclass_unicode.hxx:39
- enum ParserFlags CHAR
-i18npool/inc/cclass_unicode.hxx:40
- enum ParserFlags CHAR_BOOL
-i18npool/inc/cclass_unicode.hxx:41
- enum ParserFlags CHAR_WORD
-i18npool/inc/cclass_unicode.hxx:42
- enum ParserFlags CHAR_VALUE
-i18npool/inc/cclass_unicode.hxx:43
- enum ParserFlags CHAR_STRING
-i18npool/inc/cclass_unicode.hxx:44
- enum ParserFlags CHAR_DONTCARE
-i18npool/inc/cclass_unicode.hxx:45
- enum ParserFlags BOOL
-i18npool/inc/cclass_unicode.hxx:46
- enum ParserFlags WORD
-i18npool/inc/cclass_unicode.hxx:47
- enum ParserFlags WORD_SEP
+ enum ParserFlags ILLEGAL
i18npool/inc/cclass_unicode.hxx:48
- enum ParserFlags VALUE
-i18npool/inc/cclass_unicode.hxx:49
- enum ParserFlags VALUE_SEP
-i18npool/inc/cclass_unicode.hxx:50
- enum ParserFlags VALUE_EXP
-i18npool/inc/cclass_unicode.hxx:51
- enum ParserFlags VALUE_SIGN
-i18npool/inc/cclass_unicode.hxx:52
- enum ParserFlags VALUE_EXP_VALUE
-i18npool/inc/cclass_unicode.hxx:53
- enum ParserFlags VALUE_DIGIT
-i18npool/inc/cclass_unicode.hxx:54
- enum ParserFlags NAME_SEP
-i18npool/inc/cclass_unicode.hxx:55
- enum ParserFlags STRING_SEP
-i18npool/inc/cclass_unicode.hxx:56
- enum ParserFlags EXCLUDED
-idl/inc/types.hxx:50
+ enum ParserFlags WORD_SEP
+idl/inc/types.hxx:51
enum MetaTypeType Interface
-idl/inc/types.hxx:50
+idl/inc/types.hxx:51
enum MetaTypeType Enum
-idlc/inc/idlctypes.hxx:68
+idlc/inc/idlctypes.hxx:64
enum ParseState PS_SingletonDeclSeen
-idlc/inc/idlctypes.hxx:79
+idlc/inc/idlctypes.hxx:75
enum ParseState PS_ServiceQsSeen
-idlc/inc/idlctypes.hxx:85
+idlc/inc/idlctypes.hxx:81
enum ParseState PS_SingletonSeen
-idlc/inc/idlctypes.hxx:86
+idlc/inc/idlctypes.hxx:82
enum ParseState PS_SingletonIDSeen
-idlc/inc/idlctypes.hxx:87
+idlc/inc/idlctypes.hxx:83
enum ParseState PS_SingletonSqSeen
-idlc/inc/idlctypes.hxx:88
+idlc/inc/idlctypes.hxx:84
enum ParseState PS_SingletonQsSeen
-idlc/inc/idlctypes.hxx:89
+idlc/inc/idlctypes.hxx:85
enum ParseState PS_SingletonBodySeen
-include/avmedia/mediaitem.hxx:36
- enum AVMediaSetMask STATE
-include/avmedia/mediaitem.hxx:37
- enum AVMediaSetMask DURATION
-include/avmedia/mediaitem.hxx:38
- enum AVMediaSetMask TIME
-include/avmedia/mediaitem.hxx:39
- enum AVMediaSetMask LOOP
-include/avmedia/mediaitem.hxx:40
- enum AVMediaSetMask MUTE
-include/avmedia/mediaitem.hxx:41
- enum AVMediaSetMask VOLUMEDB
-include/avmedia/mediaitem.hxx:42
- enum AVMediaSetMask ZOOM
-include/avmedia/mediaitem.hxx:43
- enum AVMediaSetMask URL
-include/avmedia/mediaitem.hxx:44
- enum AVMediaSetMask MIME_TYPE
include/avmedia/mediaitem.hxx:45
enum AVMediaSetMask ALL
-include/basegfx/polygon/b2dpolygontools.hxx:39
- enum CutFlagValue LINE
-include/basegfx/polygon/b2dpolygontools.hxx:40
- enum CutFlagValue START1
-include/basegfx/polygon/b2dpolygontools.hxx:41
- enum CutFlagValue START2
-include/basegfx/polygon/b2dpolygontools.hxx:42
- enum CutFlagValue END1
-include/basegfx/polygon/b2dpolygontools.hxx:43
- enum CutFlagValue END2
-include/basegfx/polygon/b2dpolygontools.hxx:44
+include/basegfx/polygon/b2dpolygontools.hxx:46
enum CutFlagValue ALL
-include/basegfx/polygon/b2dpolygontools.hxx:45
+include/basegfx/polygon/b2dpolygontools.hxx:47
enum CutFlagValue DEFAULT
-include/basic/basmgr.hxx:37
+include/basic/basmgr.hxx:39
enum BasicErrorReason OPENLIBSTORAGE
-include/basic/basmgr.hxx:38
+include/basic/basmgr.hxx:40
enum BasicErrorReason OPENMGRSTREAM
-include/basic/basmgr.hxx:39
+include/basic/basmgr.hxx:41
enum BasicErrorReason OPENLIBSTREAM
-include/basic/basmgr.hxx:40
+include/basic/basmgr.hxx:42
enum BasicErrorReason LIBNOTFOUND
-include/basic/basmgr.hxx:41
+include/basic/basmgr.hxx:43
enum BasicErrorReason STORAGENOTFOUND
-include/basic/basmgr.hxx:42
+include/basic/basmgr.hxx:44
enum BasicErrorReason BASICLOADERROR
-include/basic/basmgr.hxx:43
+include/basic/basmgr.hxx:45
enum BasicErrorReason STDLIB
-include/basic/sbdef.hxx:45
- enum BasicDebugFlags Break
-include/basic/sbdef.hxx:47
- enum BasicDebugFlags StepOver
-include/basic/sbdef.hxx:48
+include/basic/sbdef.hxx:49
enum BasicDebugFlags Continue
-include/canvas/spriteredrawmanager.hxx:146
- enum canvas::SpriteRedrawManager::SpriteChangeRecord::ChangeType none
include/codemaker/commoncpp.hxx:50
enum codemaker::cpp::IdentifierTranslationMode NonGlobal
include/comphelper/componentbase.hxx:110
enum comphelper::ComponentMethodGuard::MethodType Default
-include/comphelper/configurationhelper.hxx:46
+include/comphelper/configurationhelper.hxx:43
enum comphelper::EConfigurationModes Standard
-include/comphelper/configurationhelper.hxx:48
+include/comphelper/configurationhelper.hxx:45
enum comphelper::EConfigurationModes ReadOnly
-include/comphelper/configurationhelper.hxx:50
- enum comphelper::EConfigurationModes AllLocales
-include/comphelper/configurationhelper.hxx:52
- enum comphelper::EConfigurationModes LazyWrite
-include/comphelper/docpasswordhelper.hxx:37
+include/comphelper/docpasswordhelper.hxx:38
enum comphelper::DocPasswordVerifierResult Abort
-include/comphelper/documentconstants.hxx:92
- enum SfxFilterFlags IMPORT
-include/comphelper/documentconstants.hxx:93
- enum SfxFilterFlags EXPORT
-include/comphelper/documentconstants.hxx:94
- enum SfxFilterFlags TEMPLATE
-include/comphelper/documentconstants.hxx:95
- enum SfxFilterFlags INTERNAL
-include/comphelper/documentconstants.hxx:96
- enum SfxFilterFlags TEMPLATEPATH
-include/comphelper/documentconstants.hxx:97
- enum SfxFilterFlags OWN
-include/comphelper/documentconstants.hxx:98
- enum SfxFilterFlags ALIEN
-include/comphelper/documentconstants.hxx:101
- enum SfxFilterFlags SUPPORTSSELECTION
-include/comphelper/documentconstants.hxx:102
- enum SfxFilterFlags NOTINFILEDLG
-include/comphelper/documentconstants.hxx:104
- enum SfxFilterFlags OPENREADONLY
-include/comphelper/documentconstants.hxx:105
- enum SfxFilterFlags MUSTINSTALL
-include/comphelper/documentconstants.hxx:106
- enum SfxFilterFlags CONSULTSERVICE
-include/comphelper/documentconstants.hxx:107
- enum SfxFilterFlags STARONEFILTER
-include/comphelper/documentconstants.hxx:108
- enum SfxFilterFlags PACKED
-include/comphelper/documentconstants.hxx:109
- enum SfxFilterFlags COMBINED
-include/comphelper/documentconstants.hxx:111
- enum SfxFilterFlags ENCRYPTION
-include/comphelper/documentconstants.hxx:112
- enum SfxFilterFlags PASSWORDTOMODIFY
-include/comphelper/documentconstants.hxx:113
- enum SfxFilterFlags PREFERED
-include/comphelper/documentconstants.hxx:114
- enum SfxFilterFlags STARTPRESENTATION
-include/comphelper/documentconstants.hxx:115
- enum SfxFilterFlags SUPPORTSSIGNING
-include/connectivity/filtermanager.hxx:64
- enum dbtools::FilterManager::FilterComponent LinkFilter
include/connectivity/parameters.hxx:61
enum dbtools::ParameterManager::ParameterClassification LinkedByParamName
-include/connectivity/sqliterator.hxx:42
- enum connectivity::TraversalParts Parameters
-include/connectivity/sqliterator.hxx:43
- enum connectivity::TraversalParts TableNames
-include/connectivity/sqliterator.hxx:44
- enum connectivity::TraversalParts SelectColumns
include/connectivity/sqliterator.hxx:52
enum connectivity::TraversalParts All
-include/connectivity/sqlnode.hxx:131
- enum connectivity::OSQLParseNode::Rule UNKNOWN_RULE
-include/connectivity/sqlnode.hxx:232
+include/connectivity/sqlnode.hxx:230
enum connectivity::OSQLParseNode::Rule null_predicate_part_2
-include/connectivity/sqlnode.hxx:235
- enum connectivity::OSQLParseNode::Rule rule_count
+include/cppcanvas/canvas.hxx:69
+ enum cppcanvas::Canvas::(anonymous at /media/noel/disk2/libo6/include/cppcanvas/canvas.hxx:59:9) ANTIALIASING_EXTRA_SIZE
include/desktop/exithelper.h:29
enum EExitCodes EXITHELPER_FATAL_ERROR
include/desktop/exithelper.h:31
@@ -1672,40 +1510,28 @@ include/editeng/AccessibleContextBase.hxx:70
enum accessibility::AccessibleContextBase::StringOrigin FromShape
include/editeng/AccessibleContextBase.hxx:71
enum accessibility::AccessibleContextBase::StringOrigin AutomaticallyCreated
-include/editeng/boxitem.hxx:144
+include/editeng/boxitem.hxx:146
enum SvxBoxInfoItemValidFlags TOP
-include/editeng/boxitem.hxx:145
+include/editeng/boxitem.hxx:147
enum SvxBoxInfoItemValidFlags BOTTOM
-include/editeng/boxitem.hxx:146
+include/editeng/boxitem.hxx:148
enum SvxBoxInfoItemValidFlags LEFT
-include/editeng/boxitem.hxx:147
+include/editeng/boxitem.hxx:149
enum SvxBoxInfoItemValidFlags RIGHT
-include/editeng/boxitem.hxx:148
+include/editeng/boxitem.hxx:150
enum SvxBoxInfoItemValidFlags HORI
-include/editeng/boxitem.hxx:149
+include/editeng/boxitem.hxx:151
enum SvxBoxInfoItemValidFlags VERT
-include/editeng/boxitem.hxx:150
+include/editeng/boxitem.hxx:152
enum SvxBoxInfoItemValidFlags DISTANCE
-include/editeng/boxitem.hxx:151
+include/editeng/boxitem.hxx:153
enum SvxBoxInfoItemValidFlags DISABLE
-include/editeng/boxitem.hxx:152
+include/editeng/boxitem.hxx:154
enum SvxBoxInfoItemValidFlags ALL
-include/editeng/editdata.hxx:36
- enum EESelectionMode EE_SELMODE_TXTONLY
-include/editeng/editdata.hxx:36
- enum EESelectionMode EE_SELMODE_STD
-include/editeng/editeng.hxx:130
- enum GetAttribsFlags STYLESHEET
-include/editeng/editeng.hxx:131
- enum GetAttribsFlags PARAATTRIBS
-include/editeng/editeng.hxx:132
- enum GetAttribsFlags CHARATTRIBS
-include/editeng/editeng.hxx:133
+include/editeng/editdata.hxx:38
+ enum EESelectionMode Std
+include/editeng/editeng.hxx:129
enum GetAttribsFlags ALL
-include/editeng/editstat.hxx:31
- enum EEControlBits USECHARATTRIBS
-include/editeng/editstat.hxx:32
- enum EEControlBits USEPARAATTRIBS
include/editeng/editstat.hxx:33
enum EEControlBits CRSRLEFTPARA
include/editeng/editstat.hxx:34
@@ -1716,152 +1542,128 @@ include/editeng/editstat.hxx:36
enum EEControlBits AUTOINDENTING
include/editeng/editstat.hxx:37
enum EEControlBits UNDOATTRIBS
-include/editeng/editstat.hxx:38
- enum EEControlBits ONECHARPERLINE
-include/editeng/editstat.hxx:39
- enum EEControlBits NOCOLORS
-include/editeng/editstat.hxx:40
- enum EEControlBits OUTLINER
-include/editeng/editstat.hxx:41
- enum EEControlBits OUTLINER2
-include/editeng/editstat.hxx:42
- enum EEControlBits ALLOWBIGOBJS
-include/editeng/editstat.hxx:43
- enum EEControlBits ONLINESPELLING
-include/editeng/editstat.hxx:44
- enum EEControlBits STRETCHING
include/editeng/editstat.hxx:45
- enum EEControlBits MARKFIELDS
+ enum EEControlBits MARKNONURLFIELDS
include/editeng/editstat.hxx:46
- enum EEControlBits RESTOREFONT
+ enum EEControlBits MARKURLFIELDS
include/editeng/editstat.hxx:47
- enum EEControlBits RTFSTYLESHEETS
+ enum EEControlBits MARKFIELDS
include/editeng/editstat.hxx:48
- enum EEControlBits AUTOCORRECT
+ enum EEControlBits RESTOREFONT
include/editeng/editstat.hxx:49
- enum EEControlBits AUTOCOMPLETE
+ enum EEControlBits RTFSTYLESHEETS
include/editeng/editstat.hxx:50
- enum EEControlBits AUTOPAGESIZEX
+ enum EEControlBits AUTOCORRECT
include/editeng/editstat.hxx:51
- enum EEControlBits AUTOPAGESIZEY
+ enum EEControlBits AUTOCOMPLETE
include/editeng/editstat.hxx:52
- enum EEControlBits AUTOPAGESIZE
+ enum EEControlBits AUTOPAGESIZEX
include/editeng/editstat.hxx:53
+ enum EEControlBits AUTOPAGESIZEY
+include/editeng/editstat.hxx:55
enum EEControlBits TABINDENTING
-include/editeng/editstat.hxx:54
+include/editeng/editstat.hxx:56
enum EEControlBits FORMAT100
-include/editeng/editstat.hxx:55
+include/editeng/editstat.hxx:57
enum EEControlBits ULSPACESUMMATION
-include/editeng/editstat.hxx:56
+include/editeng/editstat.hxx:58
enum EEControlBits ULSPACEFIRSTPARA
-include/editeng/editstat.hxx:65
- enum EVControlBits AUTOSCROLL
-include/editeng/editstat.hxx:66
+include/editeng/editstat.hxx:68
enum EVControlBits BIGSCROLL
-include/editeng/editstat.hxx:67
+include/editeng/editstat.hxx:69
enum EVControlBits ENABLEPASTE
-include/editeng/editstat.hxx:68
+include/editeng/editstat.hxx:70
enum EVControlBits SINGLELINEPASTE
-include/editeng/editstat.hxx:69
+include/editeng/editstat.hxx:71
enum EVControlBits OVERWRITE
-include/editeng/editstat.hxx:70
+include/editeng/editstat.hxx:72
enum EVControlBits INVONEMORE
-include/editeng/editstat.hxx:71
+include/editeng/editstat.hxx:73
enum EVControlBits AUTOSIZEX
-include/editeng/editstat.hxx:72
+include/editeng/editstat.hxx:74
enum EVControlBits AUTOSIZEY
-include/editeng/editstat.hxx:73
+include/editeng/editstat.hxx:75
enum EVControlBits AUTOSIZE
-include/editeng/editstat.hxx:83
- enum EditStatusFlags HSCROLL
-include/editeng/editstat.hxx:84
- enum EditStatusFlags VSCROLL
-include/editeng/editstat.hxx:85
- enum EditStatusFlags CURSOROUT
include/editeng/editstat.hxx:86
- enum EditStatusFlags CRSRMOVEFAIL
-include/editeng/editstat.hxx:87
- enum EditStatusFlags CRSRLEFTPARA
+ enum EditStatusFlags VSCROLL
include/editeng/editstat.hxx:88
- enum EditStatusFlags TEXTWIDTHCHANGED
+ enum EditStatusFlags CRSRMOVEFAIL
include/editeng/editstat.hxx:89
- enum EditStatusFlags TextHeightChanged
-include/editeng/editstat.hxx:90
- enum EditStatusFlags WRONGWORDCHANGED
-include/editeng/editstat.hxx:134
+ enum EditStatusFlags CRSRLEFTPARA
+include/editeng/editstat.hxx:136
enum SpellCallbackCommand WORDLANGUAGE
-include/editeng/editstat.hxx:135
+include/editeng/editstat.hxx:137
enum SpellCallbackCommand PARALANGUAGE
-include/editeng/editview.hxx:77
+include/editeng/editview.hxx:79
enum ScrollRangeCheck NoNegative
-include/editeng/flditem.hxx:299
- enum SvxFileType SVXFILETYPE_VAR
-include/editeng/flditem.hxx:337
- enum SvxAuthorType SVXAUTHORTYPE_VAR
+include/editeng/flditem.hxx:314
+ enum SvxFileType Var
+include/editeng/flditem.hxx:356
+ enum SvxAuthorType Var
include/editeng/hangulhanja.hxx:83
enum editeng::HangulHanjaConversion::ConversionDirection eHanjaToHangul
-include/editeng/numitem.hxx:215
- enum SvxNumRuleFlags CONTINUOUS
-include/editeng/numitem.hxx:216
+include/editeng/numitem.hxx:224
enum SvxNumRuleFlags CHAR_TEXT_DISTANCE
-include/editeng/numitem.hxx:217
+include/editeng/numitem.hxx:225
enum SvxNumRuleFlags CHAR_STYLE
-include/editeng/numitem.hxx:218
+include/editeng/numitem.hxx:226
enum SvxNumRuleFlags BULLET_REL_SIZE
-include/editeng/numitem.hxx:219
+include/editeng/numitem.hxx:227
enum SvxNumRuleFlags BULLET_COLOR
-include/editeng/numitem.hxx:220
- enum SvxNumRuleFlags SYMBOL_ALIGNMENT
-include/editeng/numitem.hxx:221
+include/editeng/numitem.hxx:228
enum SvxNumRuleFlags NO_NUMBERS
-include/editeng/numitem.hxx:222
+include/editeng/numitem.hxx:229
enum SvxNumRuleFlags ENABLE_LINKED_BMP
-include/editeng/numitem.hxx:223
+include/editeng/numitem.hxx:230
enum SvxNumRuleFlags ENABLE_EMBEDDED_BMP
-include/editeng/numitem.hxx:233
+include/editeng/numitem.hxx:240
enum SvxNumRuleType OUTLINE_NUMBERING
-include/editeng/outliner.hxx:110
- enum ParaFlag HOLDDEPTH
-include/editeng/outliner.hxx:111
+include/editeng/outliner.hxx:109
enum ParaFlag SETBULLETTEXT
-include/editeng/outliner.hxx:112
- enum ParaFlag ISPAGE
-include/editeng/outliner.hxx:202
+include/editeng/outliner.hxx:200
enum OutlinerView::MouseTarget Outside
-include/editeng/svxrtf.hxx:234
+include/editeng/svxacorr.hxx:62
+ enum ACFlags AddNonBrkSpace
+include/editeng/svxacorr.hxx:63
+ enum ACFlags ChgOrdinalNumber
+include/editeng/svxacorr.hxx:64
+ enum ACFlags ChgToEnEmDash
+include/editeng/svxacorr.hxx:65
+ enum ACFlags ChgWeightUnderl
+include/editeng/svxacorr.hxx:66
+ enum ACFlags SetINetAttr
+include/editeng/svxacorr.hxx:68
+ enum ACFlags ChgQuotes
+include/editeng/svxacorr.hxx:71
+ enum ACFlags IgnoreDoubleSpace
+include/editeng/svxacorr.hxx:72
+ enum ACFlags ChgSglQuotes
+include/editeng/svxacorr.hxx:73
+ enum ACFlags CorrectCapsLock
+include/editeng/svxrtf.hxx:223
enum SvxRTFParser::RTF_CharTypeDef NOTDEF_CHARTYPE
-include/filter/msfilter/msdffimp.hxx:360
+include/filter/msfilter/msdffimp.hxx:377
enum DffSeekToContentMode SEEK_FROM_CURRENT
include/formula/formula.hxx:52
enum formula::FormulaDlgMode FORMULA_FORMDLG_EDIT
-include/formula/tokenarray.hxx:57
- enum ScRecalcMode ALWAYS
-include/formula/tokenarray.hxx:58
- enum ScRecalcMode ONLOAD
include/formula/tokenarray.hxx:59
- enum ScRecalcMode ONLOAD_ONCE
+ enum ScRecalcMode ALWAYS
include/formula/tokenarray.hxx:60
+ enum ScRecalcMode ONLOAD_MUST
+include/formula/tokenarray.hxx:62
+ enum ScRecalcMode ONLOAD_LENIENT
+include/formula/tokenarray.hxx:64
enum ScRecalcMode FORCED
-include/formula/tokenarray.hxx:61
+include/formula/tokenarray.hxx:65
enum ScRecalcMode ONREFMOVE
-include/formula/tokenarray.hxx:62
- enum ScRecalcMode EMask
-include/formula/tokenarray.hxx:142
+include/formula/tokenarray.hxx:164
+ enum formula::FormulaTokenArrayReferencesIterator::Dummy Flag
+include/formula/tokenarray.hxx:256
enum formula::FormulaTokenArray::ReplaceMode CODE_ONLY
include/formula/vectortoken.hxx:42
enum formula::VectorRefArray::InitInvalid Invalid
-include/framework/framelistanalyzer.hxx:36
- enum FrameAnalyzerFlags Model
-include/framework/framelistanalyzer.hxx:37
- enum FrameAnalyzerFlags Help
-include/framework/framelistanalyzer.hxx:38
- enum FrameAnalyzerFlags BackingComponent
-include/framework/framelistanalyzer.hxx:39
- enum FrameAnalyzerFlags Hidden
include/framework/framelistanalyzer.hxx:40
enum FrameAnalyzerFlags All
-include/framework/framelistanalyzer.hxx:41
- enum FrameAnalyzerFlags Zombie
include/i18nutil/casefolding.hxx:34
enum MappingType ToUpper
include/i18nutil/casefolding.hxx:35
@@ -1874,71 +1676,69 @@ include/i18nutil/casefolding.hxx:38
enum MappingType FullFolding
include/i18nutil/casefolding.hxx:39
enum MappingType CasedLetterMask
-include/i18nutil/casefolding.hxx:40
- enum MappingType NotValue
-include/i18nutil/transliteration.hxx:38
+include/i18nutil/transliteration.hxx:37
enum TransliterationFlags HALFWIDTH_FULLWIDTH
-include/i18nutil/transliteration.hxx:40
+include/i18nutil/transliteration.hxx:39
enum TransliterationFlags FULLWIDTH_HALFWIDTH
-include/i18nutil/transliteration.hxx:42
+include/i18nutil/transliteration.hxx:41
enum TransliterationFlags KATAKANA_HIRAGANA
-include/i18nutil/transliteration.hxx:44
+include/i18nutil/transliteration.hxx:43
enum TransliterationFlags HIRAGANA_KATAKANA
-include/i18nutil/transliteration.hxx:76
+include/i18nutil/transliteration.hxx:75
enum TransliterationFlags NON_IGNORE_MASK
-include/i18nutil/transliteration.hxx:77
+include/i18nutil/transliteration.hxx:76
enum TransliterationFlags IGNORE_MASK
-include/i18nutil/transliteration.hxx:82
- enum TransliterationFlags IGNORE_KANA
-include/i18nutil/transliteration.hxx:84
- enum TransliterationFlags IGNORE_WIDTH
-include/i18nutil/transliteration.hxx:86
+include/i18nutil/transliteration.hxx:85
enum TransliterationFlags ignoreTraditionalKanji_ja_JP
-include/i18nutil/transliteration.hxx:88
+include/i18nutil/transliteration.hxx:87
enum TransliterationFlags ignoreTraditionalKana_ja_JP
-include/i18nutil/transliteration.hxx:90
+include/i18nutil/transliteration.hxx:89
enum TransliterationFlags ignoreMinusSign_ja_JP
-include/i18nutil/transliteration.hxx:92
+include/i18nutil/transliteration.hxx:91
enum TransliterationFlags ignoreIterationMark_ja_JP
-include/i18nutil/transliteration.hxx:94
+include/i18nutil/transliteration.hxx:93
enum TransliterationFlags ignoreSeparator_ja_JP
-include/i18nutil/transliteration.hxx:96
+include/i18nutil/transliteration.hxx:95
enum TransliterationFlags ignoreZiZu_ja_JP
-include/i18nutil/transliteration.hxx:98
+include/i18nutil/transliteration.hxx:97
enum TransliterationFlags ignoreBaFa_ja_JP
-include/i18nutil/transliteration.hxx:100
+include/i18nutil/transliteration.hxx:99
enum TransliterationFlags ignoreTiJi_ja_JP
-include/i18nutil/transliteration.hxx:102
+include/i18nutil/transliteration.hxx:101
enum TransliterationFlags ignoreHyuByu_ja_JP
-include/i18nutil/transliteration.hxx:104
+include/i18nutil/transliteration.hxx:103
enum TransliterationFlags ignoreSeZe_ja_JP
-include/i18nutil/transliteration.hxx:106
+include/i18nutil/transliteration.hxx:105
enum TransliterationFlags ignoreIandEfollowedByYa_ja_JP
-include/i18nutil/transliteration.hxx:108
+include/i18nutil/transliteration.hxx:107
enum TransliterationFlags ignoreKiKuFollowedBySa_ja_JP
-include/i18nutil/transliteration.hxx:110
+include/i18nutil/transliteration.hxx:109
enum TransliterationFlags ignoreSize_ja_JP
-include/i18nutil/transliteration.hxx:112
+include/i18nutil/transliteration.hxx:111
enum TransliterationFlags ignoreProlongedSoundMark_ja_JP
-include/i18nutil/transliteration.hxx:114
+include/i18nutil/transliteration.hxx:113
enum TransliterationFlags ignoreMiddleDot_ja_JP
-include/i18nutil/transliteration.hxx:116
+include/i18nutil/transliteration.hxx:115
enum TransliterationFlags ignoreSpace_ja_JP
include/i18nutil/transliteration.hxx:122
enum TransliterationFlags IGNORE_DIACRITICS_CTL
-include/i18nutil/transliteration.hxx:123
+include/i18nutil/transliteration.hxx:124
enum TransliterationFlags IGNORE_KASHIDA_CTL
-include/jvmfwk/framework.hxx:195
+include/jvmfwk/framework.hxx:194
enum javaFrameworkError JFW_E_ERROR
-include/jvmfwk/framework.hxx:205
+include/jvmfwk/framework.hxx:204
enum javaFrameworkError JFW_E_CONFIGURATION
-include/LibreOfficeKit/LibreOfficeKitEnums.h:39
- LibreOfficeKitTileMode LOK_TILEMODE_BGRA
+include/LibreOfficeKit/LibreOfficeKitEnums.h:63
+ LibreOfficeKitOptionalFeatures LOK_FEATURE_DOCUMENT_PASSWORD
+include/LibreOfficeKit/LibreOfficeKitEnums.h:71
+ LibreOfficeKitOptionalFeatures LOK_FEATURE_DOCUMENT_PASSWORD_TO_MODIFY
include/linguistic/misc.hxx:68
enum linguistic::DictionaryError NOT_EXISTS
include/linguistic/misc.hxx:75
enum linguistic::CapType NOCAP
-include/oox/drawingml/shape.hxx:302
+include/oox/crypto/AgileEngine.hxx:74
+ enum oox::core::AgileEncryptionPreset AES_256_SHA512
+include/oox/drawingml/shape.hxx:305
enum oox::drawingml::Shape::FrameType FRAMETYPE_TABLE
include/oox/ole/axcontrol.hxx:165
enum oox::ole::ApiControlType API_CONTROL_TABSTRIP
@@ -1948,18 +1748,96 @@ include/oox/ole/axfontdata.hxx:35
enum AxFontFlags Bold
include/oox/ole/axfontdata.hxx:36
enum AxFontFlags Italic
-include/oox/ole/axfontdata.hxx:37
- enum AxFontFlags Underline
include/oox/ole/axfontdata.hxx:38
enum AxFontFlags Strikeout
-include/oox/ppt/animationspersist.hxx:45
- enum oox::ppt::(anonymous at include/oox/ppt/animationspersist.hxx:36:5) NP_DISPLAY
-include/oox/ppt/pptfilterhelpers.hxx:39
- enum oox::ppt::MS_AttributeNames MS_STYLEFONTFAMILY
-include/oox/token/relationship.hxx:18
+include/oox/ppt/pptfilterhelpers.hxx:40
+ enum oox::ppt::AnimationAttributeEnum STYLEFONTFAMILY
+include/oox/token/relationship.hxx:21
+ enum oox::Relationship ACTIVEXCONTROLBINARY
+include/oox/token/relationship.hxx:22
+ enum oox::Relationship CHART
+include/oox/token/relationship.hxx:23
+ enum oox::Relationship COMMENTS
+include/oox/token/relationship.hxx:24
+ enum oox::Relationship COMMENTAUTHORS
+include/oox/token/relationship.hxx:25
+ enum oox::Relationship CONTROL
+include/oox/token/relationship.hxx:26
+ enum oox::Relationship CUSTOMXML
+include/oox/token/relationship.hxx:27
+ enum oox::Relationship CUSTOMXMLPROPS
+include/oox/token/relationship.hxx:28
+ enum oox::Relationship DIAGRAMCOLORS
+include/oox/token/relationship.hxx:29
+ enum oox::Relationship DIAGRAMDATA
+include/oox/token/relationship.hxx:30
+ enum oox::Relationship DIAGRAMDRAWING
+include/oox/token/relationship.hxx:31
+ enum oox::Relationship DIAGRAMLAYOUT
+include/oox/token/relationship.hxx:32
+ enum oox::Relationship DIAGRAMQUICKSTYLE
+include/oox/token/relationship.hxx:33
+ enum oox::Relationship DRAWING
+include/oox/token/relationship.hxx:34
+ enum oox::Relationship ENDNOTES
+include/oox/token/relationship.hxx:35
+ enum oox::Relationship EXTERNALLINKPATH
+include/oox/token/relationship.hxx:36
+ enum oox::Relationship FONT
+include/oox/token/relationship.hxx:37
+ enum oox::Relationship FONTTABLE
+include/oox/token/relationship.hxx:38
+ enum oox::Relationship FOOTER
+include/oox/token/relationship.hxx:39
+ enum oox::Relationship FOOTNOTES
+include/oox/token/relationship.hxx:40
+ enum oox::Relationship GLOSSARYDOCUMENT
+include/oox/token/relationship.hxx:41
+ enum oox::Relationship HDPHOTO
+include/oox/token/relationship.hxx:42
+ enum oox::Relationship HEADER
+include/oox/token/relationship.hxx:43
enum oox::Relationship HYPERLINK
-include/registry/regtype.h:43
- enum RegAccessMode READONLY
+include/oox/token/relationship.hxx:44
+ enum oox::Relationship IMAGE
+include/oox/token/relationship.hxx:45
+ enum oox::Relationship MEDIA
+include/oox/token/relationship.hxx:46
+ enum oox::Relationship NOTESMASTER
+include/oox/token/relationship.hxx:47
+ enum oox::Relationship NOTESSLIDE
+include/oox/token/relationship.hxx:48
+ enum oox::Relationship NUMBERING
+include/oox/token/relationship.hxx:49
+ enum oox::Relationship OFFICEDOCUMENT
+include/oox/token/relationship.hxx:50
+ enum oox::Relationship OLEOBJECT
+include/oox/token/relationship.hxx:51
+ enum oox::Relationship PACKAGE
+include/oox/token/relationship.hxx:52
+ enum oox::Relationship SETTINGS
+include/oox/token/relationship.hxx:53
+ enum oox::Relationship SHAREDSTRINGS
+include/oox/token/relationship.hxx:54
+ enum oox::Relationship SLIDE
+include/oox/token/relationship.hxx:55
+ enum oox::Relationship SLIDELAYOUT
+include/oox/token/relationship.hxx:56
+ enum oox::Relationship SLIDEMASTER
+include/oox/token/relationship.hxx:57
+ enum oox::Relationship STYLES
+include/oox/token/relationship.hxx:58
+ enum oox::Relationship THEME
+include/oox/token/relationship.hxx:59
+ enum oox::Relationship VBAPROJECT
+include/oox/token/relationship.hxx:61
+ enum oox::Relationship AUDIO
+include/oox/token/relationship.hxx:62
+ enum oox::Relationship VMLDRAWING
+include/oox/token/relationship.hxx:63
+ enum oox::Relationship WORDVBADATA
+include/oox/token/relationship.hxx:64
+ enum oox::Relationship WORKSHEET
include/registry/regtype.h:44
enum RegAccessMode READWRITE
include/registry/regtype.h:86
@@ -1992,223 +1870,221 @@ include/sfx2/app.hxx:95
enum SfxToolsModule Writer
include/sfx2/app.hxx:96
enum SfxToolsModule Basic
-include/sfx2/bindings.hxx:61
- enum SfxCallMode ASYNCHRON
-include/sfx2/childwin.hxx:46
- enum SfxChildWindowFlags ZOOMIN
-include/sfx2/childwin.hxx:47
- enum SfxChildWindowFlags FORCEDOCK
-include/sfx2/childwin.hxx:48
- enum SfxChildWindowFlags TASK
-include/sfx2/childwin.hxx:49
- enum SfxChildWindowFlags CANTGETFOCUS
-include/sfx2/childwin.hxx:50
- enum SfxChildWindowFlags ALWAYSAVAILABLE
-include/sfx2/childwin.hxx:51
+include/sfx2/bindings.hxx:59
+ enum SfxCallMode MODAL
+include/sfx2/childwin.hxx:52
enum SfxChildWindowFlags NEVERHIDE
-include/sfx2/dispatch.hxx:62
+include/sfx2/dispatch.hxx:65
enum SfxDispatcherPopFlags POP_UNTIL
-include/sfx2/dispatch.hxx:63
+include/sfx2/dispatch.hxx:66
enum SfxDispatcherPopFlags POP_DELETE
-include/sfx2/dispatch.hxx:64
+include/sfx2/dispatch.hxx:67
enum SfxDispatcherPopFlags PUSH
-include/sfx2/docfile.hxx:164
+include/sfx2/docfile.hxx:168
+ enum SfxMedium::LockFileResult Failed
+include/sfx2/docfile.hxx:170
+ enum SfxMedium::LockFileResult Succeeded
+include/sfx2/docfile.hxx:297
enum SfxMedium::ShowLockResult NoLock
-include/sfx2/event.hxx:41
- enum SfxEventHintId CloseView
-include/sfx2/event.hxx:43
- enum SfxEventHintId DeactivateDoc
-include/sfx2/event.hxx:49
- enum SfxEventHintId PrepareCloseView
-include/sfx2/event.hxx:50
- enum SfxEventHintId PrintDoc
-include/sfx2/event.hxx:53
- enum SfxEventHintId SaveAsDocFailed
-include/sfx2/event.hxx:56
- enum SfxEventHintId SaveDocFailed
-include/sfx2/event.hxx:59
- enum SfxEventHintId SaveToDocFailed
-include/sfx2/event.hxx:62
- enum SfxEventHintId VisAreaChanged
-include/sfx2/event.hxx:64
- enum SfxEventHintId SwMailMerge
-include/sfx2/event.hxx:65
- enum SfxEventHintId SwMailMergeEnd
-include/sfx2/event.hxx:66
- enum SfxEventHintId SwEventPageCount
-include/sfx2/event.hxx:67
- enum SfxEventHintId SwEventFieldMerge
-include/sfx2/event.hxx:68
- enum SfxEventHintId SwEventFieldMergeFinished
-include/sfx2/filedlghelper.hxx:64
- enum FileDialogFlags Insert
-include/sfx2/filedlghelper.hxx:65
- enum FileDialogFlags Export
-include/sfx2/filedlghelper.hxx:66
- enum FileDialogFlags SaveACopy
-include/sfx2/filedlghelper.hxx:67
- enum FileDialogFlags MultiSelection
-include/sfx2/filedlghelper.hxx:68
- enum FileDialogFlags Graphic
-include/sfx2/filedlghelper.hxx:70
- enum FileDialogFlags SignPDF
-include/sfx2/filedlghelper.hxx:71
- enum FileDialogFlags InsertCompare
-include/sfx2/filedlghelper.hxx:72
- enum FileDialogFlags InsertMerge
-include/sfx2/filedlghelper.hxx:90
+include/sfx2/filedlghelper.hxx:89
enum sfx2::FileDialogHelper::Context SW_INSERT_GRAPHIC
-include/sfx2/frmdescr.hxx:49
+include/sfx2/frmdescr.hxx:43
enum ScrollingMode No
-include/sfx2/itemconnect.hxx:37
- enum ItemConnFlags HideUnknown
-include/sfx2/lnkbase.hxx:130
+include/sfx2/lnkbase.hxx:129
enum sfx2::SvBaseLink::UpdateResult ERROR_GENERAL
include/sfx2/mailmodelapi.hxx:43
enum SfxMailModel::SaveResult SAVE_ERROR
-include/sfx2/mailmodelapi.hxx:70
+include/sfx2/mailmodelapi.hxx:68
enum SfxMailModel::SendMailResult SEND_MAIL_CANCELLED
-include/sfx2/msg.hxx:37
- enum SfxSlotMode TOGGLE
include/sfx2/msg.hxx:38
- enum SfxSlotMode AUTOUPDATE
+ enum SfxSlotMode TOGGLE
include/sfx2/msg.hxx:39
+ enum SfxSlotMode AUTOUPDATE
+include/sfx2/msg.hxx:40
enum SfxSlotMode ASYNCHRON
-include/sfx2/msg.hxx:41
- enum SfxSlotMode NORECORD
include/sfx2/msg.hxx:42
- enum SfxSlotMode RECORDPERITEM
+ enum SfxSlotMode NORECORD
include/sfx2/msg.hxx:43
- enum SfxSlotMode RECORDPERSET
+ enum SfxSlotMode RECORDPERITEM
include/sfx2/msg.hxx:44
+ enum SfxSlotMode RECORDPERSET
+include/sfx2/msg.hxx:45
enum SfxSlotMode RECORDABSOLUTE
-include/sfx2/msg.hxx:46
+include/sfx2/msg.hxx:47
enum SfxSlotMode METHOD
-include/sfx2/msg.hxx:48
+include/sfx2/msg.hxx:49
enum SfxSlotMode FASTCALL
-include/sfx2/msg.hxx:50
- enum SfxSlotMode MENUCONFIG
include/sfx2/msg.hxx:51
- enum SfxSlotMode TOOLBOXCONFIG
+ enum SfxSlotMode MENUCONFIG
include/sfx2/msg.hxx:52
+ enum SfxSlotMode TOOLBOXCONFIG
+include/sfx2/msg.hxx:53
enum SfxSlotMode ACCELCONFIG
-include/sfx2/msg.hxx:54
- enum SfxSlotMode CONTAINER
include/sfx2/msg.hxx:55
- enum SfxSlotMode READONLYDOC
-include/sfx2/msg.hxx:87
+ enum SfxSlotMode CONTAINER
+include/sfx2/msg.hxx:88
enum SfxSlotKind Standard
-include/sfx2/new.hxx:44
+include/sfx2/new.hxx:46
enum SfxTemplateFlags LOAD_TEXT_STYLES
-include/sfx2/new.hxx:45
+include/sfx2/new.hxx:47
enum SfxTemplateFlags LOAD_FRAME_STYLES
-include/sfx2/new.hxx:46
+include/sfx2/new.hxx:48
enum SfxTemplateFlags LOAD_PAGE_STYLES
-include/sfx2/new.hxx:47
+include/sfx2/new.hxx:49
enum SfxTemplateFlags LOAD_NUM_STYLES
-include/sfx2/new.hxx:48
+include/sfx2/new.hxx:50
enum SfxTemplateFlags MERGE_STYLES
-include/sfx2/objsh.hxx:122
+include/sfx2/objface.hxx:49
+ enum StatusBarId GenericStatusBar
+include/sfx2/objface.hxx:50
+ enum StatusBarId WriterStatusBar
+include/sfx2/objface.hxx:51
+ enum StatusBarId MathStatusBar
+include/sfx2/objface.hxx:52
+ enum StatusBarId DrawStatusBar
+include/sfx2/objface.hxx:53
+ enum StatusBarId CalcStatusBar
+include/sfx2/objface.hxx:54
+ enum StatusBarId BasicIdeStatusBar
+include/sfx2/objsh.hxx:118
enum SfxObjectShellFlags STD_NORMAL
-include/sfx2/objsh.hxx:123
+include/sfx2/objsh.hxx:119
enum SfxObjectShellFlags HASMENU
-include/sfx2/objsh.hxx:124
- enum SfxObjectShellFlags DONTCLOSE
-include/sfx2/objsh.hxx:125
- enum SfxObjectShellFlags NODOCINFO
-include/sfx2/objsh.hxx:146
- enum SfxLoadedFlags MAINDOCUMENT
-include/sfx2/objsh.hxx:147
- enum SfxLoadedFlags IMAGES
-include/sfx2/objsh.hxx:158
- enum HiddenInformation RECORDEDCHANGES
-include/sfx2/objsh.hxx:159
- enum HiddenInformation NOTES
-include/sfx2/objsh.hxx:160
- enum HiddenInformation DOCUMENTVERSIONS
-include/sfx2/objsh.hxx:214
+include/sfx2/objsh.hxx:212
enum SfxObjectShell::TriState no
include/sfx2/passwd.hxx:37
- enum SfxShowExtras USER
-include/sfx2/passwd.hxx:38
- enum SfxShowExtras CONFIRM
-include/sfx2/passwd.hxx:39
- enum SfxShowExtras PASSWORD2
-include/sfx2/passwd.hxx:40
- enum SfxShowExtras CONFIRM2
-include/sfx2/passwd.hxx:41
enum SfxShowExtras ALL
-include/sfx2/recentdocsview.hxx:37
+include/sfx2/recentdocsview.hxx:35
enum sfx2::ApplicationType TYPE_WRITER
-include/sfx2/recentdocsview.hxx:38
+include/sfx2/recentdocsview.hxx:36
enum sfx2::ApplicationType TYPE_CALC
-include/sfx2/recentdocsview.hxx:39
+include/sfx2/recentdocsview.hxx:37
enum sfx2::ApplicationType TYPE_IMPRESS
-include/sfx2/recentdocsview.hxx:40
+include/sfx2/recentdocsview.hxx:38
enum sfx2::ApplicationType TYPE_DRAW
-include/sfx2/recentdocsview.hxx:41
+include/sfx2/recentdocsview.hxx:39
enum sfx2::ApplicationType TYPE_DATABASE
-include/sfx2/recentdocsview.hxx:42
+include/sfx2/recentdocsview.hxx:40
enum sfx2::ApplicationType TYPE_MATH
-include/sfx2/recentdocsview.hxx:43
+include/sfx2/recentdocsview.hxx:41
enum sfx2::ApplicationType TYPE_OTHER
-include/sfx2/sfxmodelfactory.hxx:32
- enum SfxModelFlags EMBEDDED_OBJECT
-include/sfx2/sfxmodelfactory.hxx:33
- enum SfxModelFlags EXTERNAL_LINK
-include/sfx2/sfxmodelfactory.hxx:34
- enum SfxModelFlags DISABLE_EMBEDDED_SCRIPTS
-include/sfx2/sfxmodelfactory.hxx:35
- enum SfxModelFlags DISABLE_DOCUMENT_RECOVERY
-include/sfx2/StylePreviewRenderer.hxx:34
+include/sfx2/StylePreviewRenderer.hxx:32
enum sfx2::StylePreviewRenderer::RenderAlign TOP
-include/sfx2/tabdlg.hxx:219
- enum DeactivateRC RefreshSet
-include/sfx2/viewsh.hxx:75
- enum SfxPrinterChangeFlags JOBSETUP
-include/sfx2/viewsh.hxx:98
+include/sfx2/toolbarids.hxx:20
+ enum ToolbarId FullScreenToolbox
+include/sfx2/toolbarids.hxx:21
+ enum ToolbarId EnvToolbox
+include/sfx2/toolbarids.hxx:24
+ enum ToolbarId Basicide_Objectbar
+include/sfx2/toolbarids.hxx:25
+ enum ToolbarId SvxTbx_Form_Navigation
+include/sfx2/toolbarids.hxx:26
+ enum ToolbarId SvxTbx_Form_Filter
+include/sfx2/toolbarids.hxx:27
+ enum ToolbarId SvxTbx_Text_Control_Attributes
+include/sfx2/toolbarids.hxx:28
+ enum ToolbarId SvxTbx_Controls
+include/sfx2/toolbarids.hxx:29
+ enum ToolbarId SvxTbx_MoreControls
+include/sfx2/toolbarids.hxx:30
+ enum ToolbarId SvxTbx_FormDesign
+include/sfx2/toolbarids.hxx:31
+ enum ToolbarId Math_Toolbox
+include/sfx2/toolbarids.hxx:32
+ enum ToolbarId Webtools_Toolbox
+include/sfx2/toolbarids.hxx:33
+ enum ToolbarId Webtext_Toolbox
+include/sfx2/toolbarids.hxx:34
+ enum ToolbarId Webframe_Toolbox
+include/sfx2/toolbarids.hxx:35
+ enum ToolbarId Webgraphic_Toolbox
+include/sfx2/toolbarids.hxx:36
+ enum ToolbarId Webole_Toolbox
+include/sfx2/toolbarids.hxx:37
+ enum ToolbarId Draw_Toolbox_Sd
+include/sfx2/toolbarids.hxx:38
+ enum ToolbarId Slide_Toolbox
+include/sfx2/toolbarids.hxx:39
+ enum ToolbarId Draw_Obj_Toolbox
+include/sfx2/toolbarids.hxx:40
+ enum ToolbarId Slide_Obj_Toolbox
+include/sfx2/toolbarids.hxx:43
+ enum ToolbarId Outline_Toolbox
+include/sfx2/toolbarids.hxx:45
+ enum ToolbarId Gluepoints_Toolbox
+include/sfx2/toolbarids.hxx:46
+ enum ToolbarId Draw_Options_Toolbox
+include/sfx2/toolbarids.hxx:47
+ enum ToolbarId Draw_CommonTask_Toolbox
+include/sfx2/toolbarids.hxx:49
+ enum ToolbarId Draw_Viewer_Toolbox
+include/sfx2/toolbarids.hxx:50
+ enum ToolbarId Graphic_Obj_Toolbox
+include/sfx2/toolbarids.hxx:53
+ enum ToolbarId Text_Toolbox_Sw
+include/sfx2/toolbarids.hxx:54
+ enum ToolbarId Table_Toolbox
+include/sfx2/toolbarids.hxx:55
+ enum ToolbarId Frame_Toolbox
+include/sfx2/toolbarids.hxx:56
+ enum ToolbarId Grafik_Toolbox
+include/sfx2/toolbarids.hxx:57
+ enum ToolbarId Draw_Toolbox_Sw
+include/sfx2/toolbarids.hxx:58
+ enum ToolbarId Draw_Text_Toolbox_Sw
+include/sfx2/toolbarids.hxx:59
+ enum ToolbarId Num_Toolbox
+include/sfx2/toolbarids.hxx:60
+ enum ToolbarId Ole_Toolbox
+include/sfx2/toolbarids.hxx:61
+ enum ToolbarId Tools_Toolbox
+include/sfx2/toolbarids.hxx:62
+ enum ToolbarId PView_Toolbox
+include/sfx2/toolbarids.hxx:63
+ enum ToolbarId Bezier_Toolbox_Sw
+include/sfx2/toolbarids.hxx:64
+ enum ToolbarId Module_Toolbox
+include/sfx2/toolbarids.hxx:65
+ enum ToolbarId Media_Toolbox
+include/sfx2/toolbarids.hxx:66
+ enum ToolbarId Objectbar_App
+include/sfx2/toolbarids.hxx:67
+ enum ToolbarId Objectbar_Format
+include/sfx2/toolbarids.hxx:68
+ enum ToolbarId Text_Toolbox_Sc
+include/sfx2/toolbarids.hxx:69
+ enum ToolbarId Objectbar_Preview
+include/sfx2/toolbarids.hxx:70
+ enum ToolbarId Objectbar_Tools
+include/sfx2/toolbarids.hxx:71
+ enum ToolbarId Draw_Objectbar
+include/sfx2/toolbarids.hxx:72
+ enum ToolbarId Graphic_Objectbar
+include/sfx2/toolbarids.hxx:73
+ enum ToolbarId Media_Objectbar
+include/sfx2/viewsh.hxx:100
enum SfxViewShellFlags HAS_PRINTOPTIONS
-include/sfx2/viewsh.hxx:99
+include/sfx2/viewsh.hxx:101
enum SfxViewShellFlags NO_SHOW
-include/sfx2/viewsh.hxx:100
+include/sfx2/viewsh.hxx:102
enum SfxViewShellFlags NO_NEWWINDOW
-include/sfx2/zoomitem.hxx:40
- enum SvxZoomEnableFlags N50
include/sfx2/zoomitem.hxx:41
enum SvxZoomEnableFlags N75
-include/sfx2/zoomitem.hxx:42
- enum SvxZoomEnableFlags N100
-include/sfx2/zoomitem.hxx:43
- enum SvxZoomEnableFlags N150
-include/sfx2/zoomitem.hxx:44
- enum SvxZoomEnableFlags N200
-include/sfx2/zoomitem.hxx:45
- enum SvxZoomEnableFlags OPTIMAL
-include/sfx2/zoomitem.hxx:46
- enum SvxZoomEnableFlags WHOLEPAGE
-include/sfx2/zoomitem.hxx:47
- enum SvxZoomEnableFlags PAGEWIDTH
include/sfx2/zoomitem.hxx:48
enum SvxZoomEnableFlags ALL
-include/sot/exchange.hxx:87
+include/sot/exchange.hxx:78
enum SotExchangeActionFlags KeepPosSize
-include/sot/exchange.hxx:88
- enum SotExchangeActionFlags InsertImageMap
-include/sot/exchange.hxx:89
- enum SotExchangeActionFlags ReplaceImageMap
-include/sot/exchange.hxx:90
+include/sot/exchange.hxx:81
enum SotExchangeActionFlags Fill
-include/sot/exchange.hxx:91
- enum SotExchangeActionFlags InsertTargetUrl
-include/sot/exchange.hxx:102
+include/sot/exchange.hxx:93
enum SotExchangeDest CHARTDOC_OLEOBJ
-include/sot/exchange.hxx:108
+include/sot/exchange.hxx:99
enum SotExchangeDest DOC_IMAPREGION
-include/sot/exchange.hxx:111
+include/sot/exchange.hxx:102
enum SotExchangeDest DOC_URLFIELD
-include/sot/exchange.hxx:114
+include/sot/exchange.hxx:105
enum SotExchangeDest SCDOC_FREE_AREA
-include/sot/exchange.hxx:115
+include/sot/exchange.hxx:106
enum SotExchangeDest SDDOC_FREE_AREA
include/store/types.h:77
storeError store_E_AccessViolation
@@ -2240,218 +2116,198 @@ include/store/types.h:96
storeError store_E_WrongVersion
include/store/types.h:97
storeError store_E_Unknown
-include/svl/hint.hxx:28
- enum SfxHintId NameChanged
-include/svl/hint.hxx:59
- enum SfxHintId BasicObjectChanged
-include/svl/IndexedStyleSheets.hxx:127
+include/svl/IndexedStyleSheets.hxx:123
enum svl::IndexedStyleSheets::SearchBehavior ReturnAll
-include/svl/inettype.hxx:130
+include/svl/inettype.hxx:128
+ enum INetContentType CONTENT_TYPE_APP_OCTSTREAM
+include/svl/inettype.hxx:129
enum INetContentType CONTENT_TYPE_APP_PDF
-include/svl/inettype.hxx:131
+include/svl/inettype.hxx:130
enum INetContentType CONTENT_TYPE_APP_RTF
-include/svl/inettype.hxx:132
+include/svl/inettype.hxx:131
enum INetContentType CONTENT_TYPE_APP_MSWORD
-include/svl/inettype.hxx:133
+include/svl/inettype.hxx:132
enum INetContentType CONTENT_TYPE_APP_MSWORD_TEMPL
-include/svl/inettype.hxx:134
+include/svl/inettype.hxx:133
enum INetContentType CONTENT_TYPE_APP_STARCALC
-include/svl/inettype.hxx:135
+include/svl/inettype.hxx:134
enum INetContentType CONTENT_TYPE_APP_STARCHART
-include/svl/inettype.hxx:136
+include/svl/inettype.hxx:135
enum INetContentType CONTENT_TYPE_APP_STARDRAW
-include/svl/inettype.hxx:137
+include/svl/inettype.hxx:136
enum INetContentType CONTENT_TYPE_APP_STARHELP
-include/svl/inettype.hxx:138
+include/svl/inettype.hxx:137
enum INetContentType CONTENT_TYPE_APP_STARIMAGE
-include/svl/inettype.hxx:139
+include/svl/inettype.hxx:138
enum INetContentType CONTENT_TYPE_APP_STARIMPRESS
-include/svl/inettype.hxx:140
+include/svl/inettype.hxx:139
enum INetContentType CONTENT_TYPE_APP_STARMATH
-include/svl/inettype.hxx:141
+include/svl/inettype.hxx:140
enum INetContentType CONTENT_TYPE_APP_STARWRITER
-include/svl/inettype.hxx:142
+include/svl/inettype.hxx:141
enum INetContentType CONTENT_TYPE_APP_ZIP
-include/svl/inettype.hxx:143
+include/svl/inettype.hxx:142
enum INetContentType CONTENT_TYPE_AUDIO_AIFF
-include/svl/inettype.hxx:144
+include/svl/inettype.hxx:143
enum INetContentType CONTENT_TYPE_AUDIO_BASIC
-include/svl/inettype.hxx:145
+include/svl/inettype.hxx:144
enum INetContentType CONTENT_TYPE_AUDIO_MIDI
-include/svl/inettype.hxx:146
+include/svl/inettype.hxx:145
enum INetContentType CONTENT_TYPE_AUDIO_VORBIS
-include/svl/inettype.hxx:147
+include/svl/inettype.hxx:146
enum INetContentType CONTENT_TYPE_AUDIO_WAV
-include/svl/inettype.hxx:148
+include/svl/inettype.hxx:147
enum INetContentType CONTENT_TYPE_AUDIO_WEBM
-include/svl/inettype.hxx:149
+include/svl/inettype.hxx:148
enum INetContentType CONTENT_TYPE_IMAGE_GIF
-include/svl/inettype.hxx:150
+include/svl/inettype.hxx:149
enum INetContentType CONTENT_TYPE_IMAGE_JPEG
-include/svl/inettype.hxx:151
+include/svl/inettype.hxx:150
enum INetContentType CONTENT_TYPE_IMAGE_PCX
-include/svl/inettype.hxx:152
+include/svl/inettype.hxx:151
enum INetContentType CONTENT_TYPE_IMAGE_PNG
-include/svl/inettype.hxx:153
+include/svl/inettype.hxx:152
enum INetContentType CONTENT_TYPE_IMAGE_TIFF
-include/svl/inettype.hxx:154
+include/svl/inettype.hxx:153
enum INetContentType CONTENT_TYPE_IMAGE_BMP
-include/svl/inettype.hxx:155
+include/svl/inettype.hxx:154
enum INetContentType CONTENT_TYPE_TEXT_HTML
-include/svl/inettype.hxx:156
+include/svl/inettype.hxx:155
enum INetContentType CONTENT_TYPE_TEXT_PLAIN
-include/svl/inettype.hxx:157
+include/svl/inettype.hxx:156
enum INetContentType CONTENT_TYPE_TEXT_URL
-include/svl/inettype.hxx:158
+include/svl/inettype.hxx:157
enum INetContentType CONTENT_TYPE_TEXT_VCARD
-include/svl/inettype.hxx:159
+include/svl/inettype.hxx:158
enum INetContentType CONTENT_TYPE_VIDEO_MSVIDEO
-include/svl/inettype.hxx:160
+include/svl/inettype.hxx:159
enum INetContentType CONTENT_TYPE_VIDEO_THEORA
-include/svl/inettype.hxx:161
+include/svl/inettype.hxx:160
enum INetContentType CONTENT_TYPE_VIDEO_VDO
-include/svl/inettype.hxx:162
+include/svl/inettype.hxx:161
enum INetContentType CONTENT_TYPE_VIDEO_WEBM
-include/svl/inettype.hxx:163
+include/svl/inettype.hxx:162
enum INetContentType CONTENT_TYPE_X_CNT_FSYSBOX
-include/svl/inettype.hxx:164
+include/svl/inettype.hxx:163
enum INetContentType CONTENT_TYPE_X_CNT_FSYSFOLDER
-include/svl/inettype.hxx:165
+include/svl/inettype.hxx:164
enum INetContentType CONTENT_TYPE_X_STARMAIL
-include/svl/inettype.hxx:166
+include/svl/inettype.hxx:165
enum INetContentType CONTENT_TYPE_X_VRML
-include/svl/inettype.hxx:167
+include/svl/inettype.hxx:166
enum INetContentType CONTENT_TYPE_APP_GALLERY
-include/svl/inettype.hxx:168
+include/svl/inettype.hxx:167
enum INetContentType CONTENT_TYPE_APP_GALLERY_THEME
-include/svl/inettype.hxx:169
+include/svl/inettype.hxx:168
enum INetContentType CONTENT_TYPE_APP_STARWRITER_GLOB
-include/svl/inettype.hxx:170
+include/svl/inettype.hxx:169
enum INetContentType CONTENT_TYPE_APP_STARMAIL_SDM
-include/svl/inettype.hxx:171
+include/svl/inettype.hxx:170
enum INetContentType CONTENT_TYPE_APP_STARMAIL_SMD
-include/svl/inettype.hxx:172
+include/svl/inettype.hxx:171
enum INetContentType CONTENT_TYPE_APP_VND_CALC
-include/svl/inettype.hxx:173
+include/svl/inettype.hxx:172
enum INetContentType CONTENT_TYPE_APP_VND_CHART
-include/svl/inettype.hxx:174
+include/svl/inettype.hxx:173
enum INetContentType CONTENT_TYPE_APP_VND_DRAW
-include/svl/inettype.hxx:175
+include/svl/inettype.hxx:174
enum INetContentType CONTENT_TYPE_APP_VND_IMAGE
-include/svl/inettype.hxx:176
+include/svl/inettype.hxx:175
enum INetContentType CONTENT_TYPE_APP_VND_IMPRESS
-include/svl/inettype.hxx:177
+include/svl/inettype.hxx:176
enum INetContentType CONTENT_TYPE_APP_VND_MAIL
-include/svl/inettype.hxx:178
+include/svl/inettype.hxx:177
enum INetContentType CONTENT_TYPE_APP_VND_MATH
-include/svl/inettype.hxx:179
+include/svl/inettype.hxx:178
enum INetContentType CONTENT_TYPE_APP_VND_WRITER
-include/svl/inettype.hxx:180
+include/svl/inettype.hxx:179
enum INetContentType CONTENT_TYPE_APP_VND_WRITER_GLOBAL
-include/svl/inettype.hxx:181
+include/svl/inettype.hxx:180
enum INetContentType CONTENT_TYPE_APP_VND_WRITER_WEB
-include/svl/inettype.hxx:182
+include/svl/inettype.hxx:181
enum INetContentType CONTENT_TYPE_APP_FRAMESET
-include/svl/inettype.hxx:183
+include/svl/inettype.hxx:182
enum INetContentType CONTENT_TYPE_APP_MACRO
-include/svl/inettype.hxx:184
+include/svl/inettype.hxx:183
enum INetContentType CONTENT_TYPE_X_CNT_FSYSSPECIALFOLDER
-include/svl/inettype.hxx:185
+include/svl/inettype.hxx:184
enum INetContentType CONTENT_TYPE_APP_VND_TEMPLATE
-include/svl/inettype.hxx:186
+include/svl/inettype.hxx:185
enum INetContentType CONTENT_TYPE_IMAGE_GENERIC
-include/svl/inettype.hxx:187
+include/svl/inettype.hxx:186
enum INetContentType CONTENT_TYPE_APP_VND_NEWS
-include/svl/inettype.hxx:188
+include/svl/inettype.hxx:187
enum INetContentType CONTENT_TYPE_APP_VND_OUTTRAY
-include/svl/inettype.hxx:189
+include/svl/inettype.hxx:188
enum INetContentType CONTENT_TYPE_APP_MSEXCEL
-include/svl/inettype.hxx:190
+include/svl/inettype.hxx:189
enum INetContentType CONTENT_TYPE_APP_MSEXCEL_TEMPL
-include/svl/inettype.hxx:191
+include/svl/inettype.hxx:190
enum INetContentType CONTENT_TYPE_APP_MSPPOINT
-include/svl/inettype.hxx:192
+include/svl/inettype.hxx:191
enum INetContentType CONTENT_TYPE_APP_MSPPOINT_TEMPL
-include/svl/inettype.hxx:193
+include/svl/inettype.hxx:192
enum INetContentType CONTENT_TYPE_TEXT_VCALENDAR
-include/svl/inettype.hxx:194
+include/svl/inettype.hxx:193
enum INetContentType CONTENT_TYPE_TEXT_ICALENDAR
-include/svl/inettype.hxx:195
+include/svl/inettype.hxx:194
enum INetContentType CONTENT_TYPE_TEXT_XMLICALENDAR
-include/svl/inettype.hxx:196
+include/svl/inettype.hxx:195
enum INetContentType CONTENT_TYPE_APP_CDE_CALENDAR_APP
-include/svl/inettype.hxx:197
+include/svl/inettype.hxx:196
enum INetContentType CONTENT_TYPE_INET_MESSAGE_RFC822
-include/svl/inettype.hxx:198
+include/svl/inettype.hxx:197
enum INetContentType CONTENT_TYPE_INET_MULTIPART_ALTERNATIVE
-include/svl/inettype.hxx:199
+include/svl/inettype.hxx:198
enum INetContentType CONTENT_TYPE_INET_MULTIPART_DIGEST
-include/svl/inettype.hxx:200
+include/svl/inettype.hxx:199
enum INetContentType CONTENT_TYPE_INET_MULTIPART_PARALLEL
-include/svl/inettype.hxx:201
+include/svl/inettype.hxx:200
enum INetContentType CONTENT_TYPE_INET_MULTIPART_RELATED
-include/svl/inettype.hxx:202
+include/svl/inettype.hxx:201
enum INetContentType CONTENT_TYPE_INET_MULTIPART_MIXED
-include/svl/inettype.hxx:203
+include/svl/inettype.hxx:202
enum INetContentType CONTENT_TYPE_APP_VND_IMPRESSPACKED
-include/svl/inettype.hxx:204
+include/svl/inettype.hxx:203
enum INetContentType CONTENT_TYPE_APP_JAR
-include/svl/inettype.hxx:205
+include/svl/inettype.hxx:204
enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_WRITER
-include/svl/inettype.hxx:206
+include/svl/inettype.hxx:205
enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_CALC
-include/svl/inettype.hxx:207
+include/svl/inettype.hxx:206
enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_IMPRESS
-include/svl/inettype.hxx:208
+include/svl/inettype.hxx:207
enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_DRAW
-include/svl/inettype.hxx:209
+include/svl/inettype.hxx:208
enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_CHART
-include/svl/inettype.hxx:210
+include/svl/inettype.hxx:209
enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_MATH
-include/svl/inettype.hxx:211
+include/svl/inettype.hxx:210
enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_WRITER_GLOBAL
-include/svl/inettype.hxx:212
+include/svl/inettype.hxx:211
enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_IMPRESSPACKED
-include/svl/lockfilecommon.hxx:38
- enum LockFileComponent SYSUSERNAME
-include/svl/lockfilecommon.hxx:38
- enum LockFileComponent OOOUSERNAME
-include/svl/lockfilecommon.hxx:38
- enum LockFileComponent EDITTIME
-include/svl/lockfilecommon.hxx:38
- enum LockFileComponent LOCALHOST
-include/svl/lockfilecommon.hxx:38
- enum LockFileComponent USERURL
+include/svl/lstner.hxx:36
+ enum DuplicateHandling Allow
include/svl/nfsymbol.hxx:48
enum svt::NfSymbolType NF_SYMBOLTYPE_CURRDEL
-include/svl/srchdefs.hxx:28
- enum SearchOptionFlags SEARCH
-include/svl/srchdefs.hxx:29
- enum SearchOptionFlags SEARCHALL
-include/svl/srchdefs.hxx:30
- enum SearchOptionFlags REPLACE
-include/svl/srchdefs.hxx:31
- enum SearchOptionFlags REPLACE_ALL
-include/svl/srchdefs.hxx:32
- enum SearchOptionFlags WHOLE_WORDS
-include/svl/srchdefs.hxx:33
- enum SearchOptionFlags BACKWARDS
-include/svl/srchdefs.hxx:34
- enum SearchOptionFlags REG_EXP
-include/svl/srchdefs.hxx:35
- enum SearchOptionFlags EXACT
-include/svl/srchdefs.hxx:36
- enum SearchOptionFlags SELECTION
-include/svl/srchdefs.hxx:37
- enum SearchOptionFlags FAMILIES
-include/svl/srchdefs.hxx:38
- enum SearchOptionFlags FORMAT
-include/svl/srchdefs.hxx:39
- enum SearchOptionFlags SIMILARITY
-include/svl/srchdefs.hxx:40
- enum SearchOptionFlags WILDCARD
+include/svl/sigstruct.hxx:78
+ enum svl::crypto::SignatureMethodAlgorithm RSA
include/svl/srchdefs.hxx:41
enum SearchOptionFlags ALL
+include/svl/style.hxx:56
+ enum SfxStyleSearchBits ScStandard
+include/svl/style.hxx:69
+ enum SfxStyleSearchBits ReadOnly
+include/svtools/borderline.hxx:46
+ enum BorderWidthImplFlags FIXED
+include/svtools/brwbox.hxx:58
+ enum BrowserMode COLUMNSELECTION
+include/svtools/brwbox.hxx:59
+ enum BrowserMode MULTISELECTION
+include/svtools/brwbox.hxx:60
+ enum BrowserMode THUMBDRAGGING
+include/svtools/brwbox.hxx:61
+ enum BrowserMode KEEPHIGHLIGHT
include/svtools/colorcfg.hxx:34
enum svtools::ColorConfigEntry DOCBOUNDARIES
include/svtools/colorcfg.hxx:36
@@ -2497,369 +2353,101 @@ include/svtools/colorcfg.hxx:62
include/svtools/colorcfg.hxx:63
enum svtools::ColorConfigEntry CALCNOTESBACKGROUND
include/svtools/colorcfg.hxx:64
- enum svtools::ColorConfigEntry DRAWGRID
+ enum svtools::ColorConfigEntry CALCVALUE
include/svtools/colorcfg.hxx:65
- enum svtools::ColorConfigEntry BASICIDENTIFIER
+ enum svtools::ColorConfigEntry CALCFORMULA
include/svtools/colorcfg.hxx:66
- enum svtools::ColorConfigEntry BASICCOMMENT
+ enum svtools::ColorConfigEntry CALCTEXT
include/svtools/colorcfg.hxx:67
- enum svtools::ColorConfigEntry BASICNUMBER
+ enum svtools::ColorConfigEntry CALCPROTECTEDBACKGROUND
include/svtools/colorcfg.hxx:68
- enum svtools::ColorConfigEntry BASICSTRING
+ enum svtools::ColorConfigEntry DRAWGRID
include/svtools/colorcfg.hxx:69
- enum svtools::ColorConfigEntry BASICOPERATOR
+ enum svtools::ColorConfigEntry BASICIDENTIFIER
include/svtools/colorcfg.hxx:70
- enum svtools::ColorConfigEntry BASICKEYWORD
+ enum svtools::ColorConfigEntry BASICCOMMENT
include/svtools/colorcfg.hxx:71
- enum svtools::ColorConfigEntry BASICERROR
+ enum svtools::ColorConfigEntry BASICNUMBER
include/svtools/colorcfg.hxx:72
- enum svtools::ColorConfigEntry SQLIDENTIFIER
+ enum svtools::ColorConfigEntry BASICSTRING
include/svtools/colorcfg.hxx:73
- enum svtools::ColorConfigEntry SQLNUMBER
+ enum svtools::ColorConfigEntry BASICOPERATOR
include/svtools/colorcfg.hxx:74
- enum svtools::ColorConfigEntry SQLSTRING
+ enum svtools::ColorConfigEntry BASICKEYWORD
include/svtools/colorcfg.hxx:75
- enum svtools::ColorConfigEntry SQLOPERATOR
+ enum svtools::ColorConfigEntry BASICERROR
include/svtools/colorcfg.hxx:76
- enum svtools::ColorConfigEntry SQLKEYWORD
+ enum svtools::ColorConfigEntry SQLIDENTIFIER
include/svtools/colorcfg.hxx:77
- enum svtools::ColorConfigEntry SQLPARAMETER
+ enum svtools::ColorConfigEntry SQLNUMBER
include/svtools/colorcfg.hxx:78
+ enum svtools::ColorConfigEntry SQLSTRING
+include/svtools/colorcfg.hxx:79
+ enum svtools::ColorConfigEntry SQLOPERATOR
+include/svtools/colorcfg.hxx:80
+ enum svtools::ColorConfigEntry SQLKEYWORD
+include/svtools/colorcfg.hxx:81
+ enum svtools::ColorConfigEntry SQLPARAMETER
+include/svtools/colorcfg.hxx:82
enum svtools::ColorConfigEntry SQLCOMMENT
include/svtools/colrdlg.hxx:32
- enum svtools::ColorPickerMode ColorPickerMode_MODIFY
+ enum svtools::ColorPickerMode Modify
include/svtools/colrdlg.hxx:32
- enum svtools::ColorPickerMode ColorPickerMode_SELECT
-include/svtools/ctrlbox.hxx:151
- enum BorderWidthImplFlags FIXED
-include/svtools/ctrlbox.hxx:152
- enum BorderWidthImplFlags CHANGE_LINE1
-include/svtools/ctrlbox.hxx:153
- enum BorderWidthImplFlags CHANGE_LINE2
-include/svtools/ctrlbox.hxx:154
- enum BorderWidthImplFlags CHANGE_DIST
-include/svtools/editbrowsebox.hxx:50
- enum EditBrowseBoxFlags NO_HANDLE_COLUMN_CONTENT
-include/svtools/editbrowsebox.hxx:53
- enum EditBrowseBoxFlags ACTIVATE_ON_BUTTONDOWN
-include/svtools/editbrowsebox.hxx:66
- enum EditBrowseBoxFlags SMART_TAB_TRAVEL
+ enum svtools::ColorPickerMode Select
include/svtools/editbrowsebox.hxx:431
enum svt::EditBrowseBox::BrowseInfo COLCHANGE
-include/svtools/filectrl.hxx:34
- enum FileControlMode_Internal INRESIZE
-include/svtools/filectrl.hxx:35
- enum FileControlMode_Internal ORIGINALBUTTONTEXT
-include/svtools/fmtfield.hxx:35
- enum FORMAT_CHANGE_TYPE CURRENCY_SYMBOL
-include/svtools/fmtfield.hxx:36
- enum FORMAT_CHANGE_TYPE CURRSYM_POSITION
-include/svtools/fmtfield.hxx:72
- enum FormattedField::valueState valueDirty
-include/svtools/grfmgr.hxx:31
- enum GraphicManagerDrawFlags CACHED
-include/svtools/grfmgr.hxx:32
- enum GraphicManagerDrawFlags SMOOTHSCALE
-include/svtools/grfmgr.hxx:33
- enum GraphicManagerDrawFlags USE_DRAWMODE_SETTINGS
-include/svtools/grfmgr.hxx:34
- enum GraphicManagerDrawFlags SUBSTITUTE
-include/svtools/grfmgr.hxx:35
- enum GraphicManagerDrawFlags NO_SUBSTITUTE
-include/svtools/grfmgr.hxx:36
- enum GraphicManagerDrawFlags STANDARD
-include/svtools/grfmgr.hxx:54
- enum GraphicAdjustmentFlags DRAWMODE
-include/svtools/grfmgr.hxx:55
- enum GraphicAdjustmentFlags COLORS
-include/svtools/grfmgr.hxx:56
- enum GraphicAdjustmentFlags MIRROR
-include/svtools/grfmgr.hxx:57
- enum GraphicAdjustmentFlags ROTATE
-include/svtools/grfmgr.hxx:58
- enum GraphicAdjustmentFlags TRANSPARENCY
-include/svtools/grfmgr.hxx:59
- enum GraphicAdjustmentFlags ALL
-include/svtools/headbar.hxx:185
+include/svtools/headbar.hxx:184
enum HeaderBarItemBits LEFT
-include/svtools/headbar.hxx:186
- enum HeaderBarItemBits CENTER
-include/svtools/headbar.hxx:187
- enum HeaderBarItemBits RIGHT
include/svtools/headbar.hxx:188
- enum HeaderBarItemBits TOP
-include/svtools/headbar.hxx:189
enum HeaderBarItemBits VCENTER
-include/svtools/headbar.hxx:190
- enum HeaderBarItemBits BOTTOM
-include/svtools/headbar.hxx:191
- enum HeaderBarItemBits LEFTIMAGE
-include/svtools/headbar.hxx:192
- enum HeaderBarItemBits RIGHTIMAGE
-include/svtools/headbar.hxx:193
- enum HeaderBarItemBits FIXED
-include/svtools/headbar.hxx:194
- enum HeaderBarItemBits FIXEDPOS
-include/svtools/headbar.hxx:195
- enum HeaderBarItemBits CLICKABLE
-include/svtools/headbar.hxx:196
- enum HeaderBarItemBits FLAT
-include/svtools/headbar.hxx:197
- enum HeaderBarItemBits DOWNARROW
-include/svtools/headbar.hxx:199
+include/svtools/headbar.hxx:198
enum HeaderBarItemBits STDSTYLE
-include/svtools/ivctrl.hxx:38
- enum SvxIconViewFlags POS_LOCKED
-include/svtools/ivctrl.hxx:39
- enum SvxIconViewFlags SELECTED
-include/svtools/ivctrl.hxx:40
- enum SvxIconViewFlags FOCUSED
-include/svtools/ivctrl.hxx:41
- enum SvxIconViewFlags CURSORED
+include/svtools/imagemgr.hxx:29
+ enum SvImageId START
include/svtools/ivctrl.hxx:42
- enum SvxIconViewFlags POS_MOVED
+ enum SvxIconViewFlags FOCUSED
include/svtools/ivctrl.hxx:43
+ enum SvxIconViewFlags CURSORED
+include/svtools/ivctrl.hxx:45
enum SvxIconViewFlags DROP_TARGET
-include/svtools/ivctrl.hxx:44
+include/svtools/ivctrl.hxx:46
enum SvxIconViewFlags BLOCK_EMPHASIS
-include/svtools/ivctrl.hxx:45
+include/svtools/ivctrl.hxx:47
enum SvxIconViewFlags PRED_SET
-include/svtools/ivctrl.hxx:55
+include/svtools/ivctrl.hxx:57
enum SvxIconChoiceCtrlTextMode Short
-include/svtools/ivctrl.hxx:60
+include/svtools/ivctrl.hxx:62
enum SvxIconChoiceCtrlPositionMode Free
-include/svtools/parhtml.hxx:46
+include/svtools/parhtml.hxx:48
enum HTMLTableFrame Void
-include/svtools/parhtml.hxx:56
+include/svtools/parhtml.hxx:58
enum HTMLInputType Range
-include/svtools/parhtml.hxx:57
+include/svtools/parhtml.hxx:59
enum HTMLInputType Scribble
-include/svtools/parhtml.hxx:69
+include/svtools/parhtml.hxx:71
enum HTMLScriptLanguage JavaScript
-include/svtools/parhtml.hxx:70
+include/svtools/parhtml.hxx:72
enum HTMLScriptLanguage Unknown
-include/svtools/ruler.hxx:470
+include/svtools/ruler.hxx:474
enum RulerExtra DontKnow
-include/svtools/ruler.hxx:490
- enum RulerMarginStyle Invisible
-include/svtools/ruler.hxx:498
- enum RulerBorderStyle Sizeable
-include/svtools/ruler.hxx:499
- enum RulerBorderStyle Moveable
-include/svtools/ruler.hxx:500
- enum RulerBorderStyle Variable
-include/svtools/ruler.hxx:501
+include/svtools/ruler.hxx:505
enum RulerBorderStyle Table
-include/svtools/ruler.hxx:502
- enum RulerBorderStyle Snap
-include/svtools/ruler.hxx:503
- enum RulerBorderStyle Margin
-include/svtools/ruler.hxx:504
- enum RulerBorderStyle Invisible
-include/svtools/ruler.hxx:520
+include/svtools/ruler.hxx:524
enum RulerIndentStyle Top
-include/svtools/svlbitm.hxx:35
- enum SvBmp UNCHECKED
-include/svtools/svlbitm.hxx:36
- enum SvBmp CHECKED
-include/svtools/svlbitm.hxx:37
- enum SvBmp TRISTATE
-include/svtools/svlbitm.hxx:38
- enum SvBmp HIUNCHECKED
-include/svtools/svlbitm.hxx:39
- enum SvBmp HICHECKED
-include/svtools/svlbitm.hxx:40
- enum SvBmp HITRISTATE
-include/svtools/svlbitm.hxx:50
- enum SvItemStateFlags HILIGHTED
-include/svtools/tabbar.hxx:281
+include/svtools/tabbar.hxx:298
enum TabBarAllowRenamingReturnCode TABBAR_RENAMING_CANCEL
-include/svtools/table/tablemodel.hxx:44
- enum ColumnAttributeGroup WIDTH
-include/svtools/table/tablemodel.hxx:46
- enum ColumnAttributeGroup APPEARANCE
include/svtools/table/tablemodel.hxx:67
enum svt::table::ScrollbarVisibility ScrollbarShowSmart
include/svtools/table/tablesort.hxx:35
enum svt::table::ColumnSortDirection ColumnSortDescending
-include/svtools/treelistbox.hxx:77
- enum SvLBoxTabFlags DYNAMIC
-include/svtools/treelistbox.hxx:78
- enum SvLBoxTabFlags ADJUST_RIGHT
-include/svtools/treelistbox.hxx:79
- enum SvLBoxTabFlags ADJUST_LEFT
-include/svtools/treelistbox.hxx:80
- enum SvLBoxTabFlags ADJUST_CENTER
-include/svtools/treelistbox.hxx:81
- enum SvLBoxTabFlags ADJUST_NUMERIC
-include/svtools/treelistbox.hxx:83
- enum SvLBoxTabFlags SHOW_SELECTION
-include/svtools/treelistbox.hxx:85
- enum SvLBoxTabFlags EDITABLE
-include/svtools/treelistbox.hxx:86
- enum SvLBoxTabFlags PUSHABLE
-include/svtools/treelistbox.hxx:87
- enum SvLBoxTabFlags INV_ALWAYS
-include/svtools/treelistbox.hxx:88
- enum SvLBoxTabFlags FORCE
-include/svtools/treelistbox.hxx:105
- enum SvTreeFlags USESEL
-include/svtools/treelistbox.hxx:106
- enum SvTreeFlags MANINS
-include/svtools/treelistbox.hxx:107
- enum SvTreeFlags RECALCTABS
-include/svtools/treelistbox.hxx:108
- enum SvTreeFlags FIXEDHEIGHT
-include/svtools/treelistbox.hxx:173
- enum DragDropMode CTRL_MOVE
-include/svtools/treelistbox.hxx:174
- enum DragDropMode CTRL_COPY
-include/svtools/treelistbox.hxx:175
- enum DragDropMode APP_MOVE
-include/svtools/treelistbox.hxx:176
- enum DragDropMode APP_COPY
-include/svtools/treelistbox.hxx:180
- enum DragDropMode ENABLE_TOP
-include/svtools/treelistbox.hxx:181
- enum DragDropMode ALL
-include/svtools/treelistbox.hxx:191
- enum SvTreeListBoxFlags IN_EDT
-include/svtools/treelistbox.hxx:192
- enum SvTreeListBoxFlags EDT_ENABLED
-include/svtools/treelistbox.hxx:195
- enum SvTreeListBoxFlags TARGEMPH_VIS
-include/svtools/treelistbox.hxx:196
- enum SvTreeListBoxFlags EDTEND_CALLED
-include/svtools/treelistentry.hxx:36
- enum SvTLEntryFlags CHILDREN_ON_DEMAND
-include/svtools/treelistentry.hxx:37
- enum SvTLEntryFlags DISABLE_DROP
-include/svtools/treelistentry.hxx:38
- enum SvTLEntryFlags IN_USE
-include/svtools/treelistentry.hxx:40
- enum SvTLEntryFlags NO_NODEBMP
-include/svtools/treelistentry.hxx:42
- enum SvTLEntryFlags HAD_CHILDREN
-include/svtools/treelistentry.hxx:43
- enum SvTLEntryFlags SEMITRANSPARENT
-include/svtools/wizardmachine.hxx:33
- enum WizardButtonFlags NEXT
-include/svtools/wizardmachine.hxx:34
- enum WizardButtonFlags PREVIOUS
-include/svtools/wizardmachine.hxx:35
- enum WizardButtonFlags FINISH
-include/svtools/wizardmachine.hxx:36
- enum WizardButtonFlags CANCEL
-include/svtools/wizardmachine.hxx:37
- enum WizardButtonFlags HELP
-include/svx/anchorid.hxx:27
- enum SvxAnchorIds Paragraph
-include/svx/anchorid.hxx:28
- enum SvxAnchorIds Character
-include/svx/anchorid.hxx:29
- enum SvxAnchorIds Page
-include/svx/anchorid.hxx:30
- enum SvxAnchorIds Fly
-include/svx/anchorid.hxx:33
- enum SvxAnchorIds NoResize
-include/svx/anchorid.hxx:36
- enum SvxAnchorIds NoProtect
-include/svx/cube3d.hxx:51
- enum CubeFaces Bottom
-include/svx/cube3d.hxx:52
- enum CubeFaces Back
-include/svx/cube3d.hxx:53
- enum CubeFaces Left
-include/svx/cube3d.hxx:54
- enum CubeFaces Top
-include/svx/cube3d.hxx:55
- enum CubeFaces Right
-include/svx/cube3d.hxx:56
- enum CubeFaces Front
-include/svx/cube3d.hxx:57
- enum CubeFaces Full
-include/svx/dataaccessdescriptor.hxx:35
- enum svx::DataAccessDescriptorProperty DataSource
-include/svx/dataaccessdescriptor.hxx:36
- enum svx::DataAccessDescriptorProperty DatabaseLocation
-include/svx/dataaccessdescriptor.hxx:37
- enum svx::DataAccessDescriptorProperty ConnectionResource
-include/svx/dataaccessdescriptor.hxx:38
- enum svx::DataAccessDescriptorProperty Connection
-include/svx/dataaccessdescriptor.hxx:40
- enum svx::DataAccessDescriptorProperty Command
-include/svx/dataaccessdescriptor.hxx:41
- enum svx::DataAccessDescriptorProperty CommandType
-include/svx/dataaccessdescriptor.hxx:42
- enum svx::DataAccessDescriptorProperty EscapeProcessing
include/svx/dataaccessdescriptor.hxx:43
enum svx::DataAccessDescriptorProperty Filter
-include/svx/dataaccessdescriptor.hxx:44
- enum svx::DataAccessDescriptorProperty Cursor
-include/svx/dataaccessdescriptor.hxx:46
- enum svx::DataAccessDescriptorProperty ColumnName
-include/svx/dataaccessdescriptor.hxx:47
- enum svx::DataAccessDescriptorProperty ColumnObject
-include/svx/dataaccessdescriptor.hxx:49
- enum svx::DataAccessDescriptorProperty Selection
-include/svx/dataaccessdescriptor.hxx:50
- enum svx::DataAccessDescriptorProperty BookmarkSelection
-include/svx/dataaccessdescriptor.hxx:52
- enum svx::DataAccessDescriptorProperty Component
-include/svx/dbaexchange.hxx:37
- enum ColumnTransferFormatFlags FIELD_DESCRIPTOR
-include/svx/dbaexchange.hxx:38
- enum ColumnTransferFormatFlags CONTROL_EXCHANGE
-include/svx/def3d.hxx:35
- enum E3dDragConstraint X
-include/svx/def3d.hxx:36
- enum E3dDragConstraint Y
include/svx/def3d.hxx:38
enum E3dDragConstraint XYZ
-include/svx/dlgctrl.hxx:62
- enum CTL_STATE NOHORZ
-include/svx/dlgctrl.hxx:63
- enum CTL_STATE NOVERT
-include/svx/EnhancedCustomShape2d.hxx:49
- enum HandleFlags MIRRORED_X
include/svx/EnhancedCustomShape2d.hxx:50
- enum HandleFlags MIRRORED_Y
+ enum HandleFlags MIRRORED_X
include/svx/EnhancedCustomShape2d.hxx:51
- enum HandleFlags SWITCHED
-include/svx/EnhancedCustomShape2d.hxx:52
- enum HandleFlags POLAR
-include/svx/EnhancedCustomShape2d.hxx:53
- enum HandleFlags RANGE_X_MINIMUM
-include/svx/EnhancedCustomShape2d.hxx:54
- enum HandleFlags RANGE_X_MAXIMUM
-include/svx/EnhancedCustomShape2d.hxx:55
- enum HandleFlags RANGE_Y_MINIMUM
-include/svx/EnhancedCustomShape2d.hxx:56
- enum HandleFlags RANGE_Y_MAXIMUM
-include/svx/EnhancedCustomShape2d.hxx:57
- enum HandleFlags RADIUS_RANGE_MINIMUM
-include/svx/EnhancedCustomShape2d.hxx:58
- enum HandleFlags RADIUS_RANGE_MAXIMUM
-include/svx/EnhancedCustomShape2d.hxx:59
- enum HandleFlags REFX
-include/svx/EnhancedCustomShape2d.hxx:60
- enum HandleFlags REFY
-include/svx/EnhancedCustomShape2d.hxx:61
- enum HandleFlags REFANGLE
-include/svx/EnhancedCustomShape2d.hxx:62
- enum HandleFlags REFR
-include/svx/EnhancedCustomShapeGeometry.hxx:46
- enum SvxMSDffHandleFlags MIRRORED_X
-include/svx/EnhancedCustomShapeGeometry.hxx:47
- enum SvxMSDffHandleFlags MIRRORED_Y
-include/svx/EnhancedCustomShapeGeometry.hxx:48
- enum SvxMSDffHandleFlags SWITCHED
-include/svx/EnhancedCustomShapeGeometry.hxx:49
- enum SvxMSDffHandleFlags POLAR
-include/svx/EnhancedCustomShapeGeometry.hxx:50
- enum SvxMSDffHandleFlags MAP
-include/svx/EnhancedCustomShapeGeometry.hxx:51
- enum SvxMSDffHandleFlags RANGE
+ enum HandleFlags MIRRORED_Y
include/svx/EnhancedCustomShapeGeometry.hxx:52
enum SvxMSDffHandleFlags RANGE_X_MIN_IS_SPECIAL
include/svx/EnhancedCustomShapeGeometry.hxx:53
@@ -2872,127 +2460,59 @@ include/svx/EnhancedCustomShapeGeometry.hxx:56
enum SvxMSDffHandleFlags CENTER_X_IS_SPECIAL
include/svx/EnhancedCustomShapeGeometry.hxx:57
enum SvxMSDffHandleFlags CENTER_Y_IS_SPECIAL
-include/svx/EnhancedCustomShapeGeometry.hxx:58
- enum SvxMSDffHandleFlags RADIUS_RANGE
include/svx/flagsdef.hxx:31
enum SwBorderModes FRAME
-include/svx/flagsdef.hxx:43
- enum SvxBackgroundTabFlags SHOW_SELECTOR
-include/svx/flagsdef.hxx:44
- enum SvxBackgroundTabFlags SHOW_TBLCTL
-include/svx/flagsdef.hxx:45
- enum SvxBackgroundTabFlags SHOW_HIGHLIGHTING
-include/svx/flagsdef.hxx:74
- enum SvxNumValCategory Standard
-include/svx/flagsdef.hxx:75
- enum SvxNumValCategory Percent
-include/svx/flagsdef.hxx:76
- enum SvxNumValCategory Currency
-include/svx/flagsdef.hxx:77
- enum SvxNumValCategory Date
-include/svx/flagsdef.hxx:78
- enum SvxNumValCategory Time
-include/svx/flagsdef.hxx:79
- enum SvxNumValCategory Scientific
-include/svx/flagsdef.hxx:80
- enum SvxNumValCategory Fraction
-include/svx/flagsdef.hxx:81
- enum SvxNumValCategory Boolean
-include/svx/flagsdef.hxx:82
- enum SvxNumValCategory NoValue
-include/svx/flagsdef.hxx:99
+include/svx/flagsdef.hxx:100
enum SvxModeType SVX_PAGE_MODE_STANDARD
-include/svx/flagsdef.hxx:109
- enum TabulatorDisableFlags TypeLeft
-include/svx/flagsdef.hxx:110
- enum TabulatorDisableFlags TypeRight
-include/svx/flagsdef.hxx:111
- enum TabulatorDisableFlags TypeCenter
-include/svx/flagsdef.hxx:112
- enum TabulatorDisableFlags TypeDecimal
-include/svx/flagsdef.hxx:113
- enum TabulatorDisableFlags TypeMask
-include/svx/flagsdef.hxx:116
- enum TabulatorDisableFlags FillPoint
-include/svx/flagsdef.hxx:117
- enum TabulatorDisableFlags FillDashLine
-include/svx/flagsdef.hxx:118
- enum TabulatorDisableFlags FillSolidLine
-include/svx/flagsdef.hxx:119
- enum TabulatorDisableFlags FillSpecial
-include/svx/flagsdef.hxx:120
- enum TabulatorDisableFlags FillMask
-include/svx/fmsrcimp.hxx:154
+include/svx/fmsrcimp.hxx:155
enum FmSearchEngine::SearchFor NotNull
-include/svx/frmsel.hxx:40
- enum FrameSelFlags Left
include/svx/frmsel.hxx:42
- enum FrameSelFlags Right
+ enum FrameSelFlags Left
include/svx/frmsel.hxx:44
- enum FrameSelFlags Top
+ enum FrameSelFlags Right
include/svx/frmsel.hxx:46
- enum FrameSelFlags Bottom
+ enum FrameSelFlags Top
include/svx/frmsel.hxx:48
- enum FrameSelFlags InnerHorizontal
+ enum FrameSelFlags Bottom
include/svx/frmsel.hxx:50
- enum FrameSelFlags InnerVertical
+ enum FrameSelFlags InnerHorizontal
include/svx/frmsel.hxx:52
- enum FrameSelFlags DiagonalTLBR
+ enum FrameSelFlags InnerVertical
include/svx/frmsel.hxx:54
+ enum FrameSelFlags DiagonalTLBR
+include/svx/frmsel.hxx:56
enum FrameSelFlags DiagonalBLTR
-include/svx/frmsel.hxx:57
+include/svx/frmsel.hxx:59
enum FrameSelFlags Outer
-include/svx/frmsel.hxx:60
+include/svx/frmsel.hxx:62
enum FrameSelFlags DontCare
-include/svx/galmisc.hxx:71
+include/svx/galmisc.hxx:70
enum GalleryGraphicImportRet IMPORT_FILE
-include/svx/galmisc.hxx:191
+include/svx/galmisc.hxx:172
enum GalleryHintType OBJECT_REMOVED
-include/svx/gridctrl.hxx:57
+include/svx/grfflt.hxx:27
+ enum SvxGraphicFilterResult UnsupportedGraphicType
+include/svx/grfflt.hxx:27
+ enum SvxGraphicFilterResult UnsupportedSlot
+include/svx/gridctrl.hxx:58
enum GridRowStatus Invalid
-include/svx/gridctrl.hxx:120
- enum InitWindowFacet Font
-include/svx/gridctrl.hxx:121
- enum InitWindowFacet Foreground
-include/svx/gridctrl.hxx:122
- enum InitWindowFacet Background
include/svx/gridctrl.hxx:123
- enum InitWindowFacet WritingMode
-include/svx/gridctrl.hxx:124
enum InitWindowFacet All
-include/svx/gridctrl.hxx:137
- enum DbGridControlOptions Insert
-include/svx/gridctrl.hxx:138
- enum DbGridControlOptions Update
-include/svx/gridctrl.hxx:139
- enum DbGridControlOptions Delete
-include/svx/langbox.hxx:33
- enum SvxLanguageListFlags ALL
-include/svx/langbox.hxx:34
- enum SvxLanguageListFlags WESTERN
include/svx/langbox.hxx:35
- enum SvxLanguageListFlags CTL
+ enum SvxLanguageListFlags ALL
include/svx/langbox.hxx:36
- enum SvxLanguageListFlags CJK
+ enum SvxLanguageListFlags WESTERN
include/svx/langbox.hxx:37
- enum SvxLanguageListFlags FBD_CHARS
+ enum SvxLanguageListFlags CTL
include/svx/langbox.hxx:38
- enum SvxLanguageListFlags SPELL_AVAIL
-include/svx/langbox.hxx:39
- enum SvxLanguageListFlags HYPH_AVAIL
-include/svx/langbox.hxx:40
- enum SvxLanguageListFlags THES_AVAIL
-include/svx/langbox.hxx:41
- enum SvxLanguageListFlags ONLY_KNOWN
-include/svx/langbox.hxx:42
- enum SvxLanguageListFlags SPELL_USED
-include/svx/langbox.hxx:43
- enum SvxLanguageListFlags HYPH_USED
-include/svx/langbox.hxx:44
- enum SvxLanguageListFlags THES_USED
-include/svx/langbox.hxx:45
+ enum SvxLanguageListFlags CJK
+include/svx/langbox.hxx:47
enum SvxLanguageListFlags ALSO_PRIMARY_ONLY
-include/svx/numvset.hxx:55
+include/svx/langbox.hxx:198
+ enum SvxLanguageComboBox::EditedAndValid No
+include/svx/langbox.hxx:199
+ enum SvxLanguageComboBox::EditedAndValid Valid
+include/svx/numvset.hxx:50
enum NumberingPageType BITMAP
include/svx/optgenrl.hxx:26
enum EditPosition COMPANY
@@ -3024,23 +2544,11 @@ include/svx/optgenrl.hxx:39
enum EditPosition FAX
include/svx/optgenrl.hxx:40
enum EditPosition EMAIL
-include/svx/papersizelistbox.hxx:30
+include/svx/papersizelistbox.hxx:31
enum PaperSizeApp Draw
-include/svx/ruler.hxx:47
+include/svx/ruler.hxx:53
enum SvxRulerDragFlags OBJECT
-include/svx/ruler.hxx:49
- enum SvxRulerDragFlags OBJECT_SIZE_LINEAR
-include/svx/ruler.hxx:50
- enum SvxRulerDragFlags OBJECT_SIZE_PROPORTIONAL
-include/svx/ruler.hxx:52
- enum SvxRulerDragFlags OBJECT_ACTLINE_ONLY
-include/svx/ruler.hxx:54
- enum SvxRulerDragFlags OBJECT_LEFT_INDENT_ONLY
-include/svx/ruler.hxx:64
- enum SvxRulerSupportFlags PARAGRAPH_MARGINS
-include/svx/ruler.hxx:69
- enum SvxRulerSupportFlags PARAGRAPH_MARGINS_VERTICAL
-include/svx/ruler.hxx:70
+include/svx/ruler.hxx:76
enum SvxRulerSupportFlags REDUCED_METRIC
include/svx/sdr/overlay/overlayselection.hxx:35
enum sdr::overlay::OverlayType Solid
@@ -3053,116 +2561,78 @@ include/svx/shapeproperty.hxx:35
include/svx/shapeproperty.hxx:37
enum svx::ShapeProperty CalcDocAnchor
include/svx/ShapeTypeHandler.hxx:81
- enum accessibility::ShapeTypeHandler::(anonymous at include/svx/ShapeTypeHandler.hxx:81:5) UNKNOWN_SHAPE_TYPE
-include/svx/srchdlg.hxx:84
+ enum accessibility::ShapeTypeHandler::(anonymous at /media/noel/disk2/libo6/include/svx/ShapeTypeHandler.hxx:81:5) UNKNOWN_SHAPE_TYPE
+include/svx/srchdlg.hxx:79
enum SearchLabel Empty
-include/svx/svdedtv.hxx:60
- enum SdrInsertFlags DONTMARK
-include/svx/svdedtv.hxx:61
- enum SdrInsertFlags ADDMARK
-include/svx/svdedtv.hxx:62
- enum SdrInsertFlags SETDEFATTR
-include/svx/svdedtv.hxx:63
- enum SdrInsertFlags SETDEFLAYER
-include/svx/svdedtv.hxx:64
- enum SdrInsertFlags NOBROADCAST
-include/svx/svdedxv.hxx:50
+include/svx/svddrgv.hxx:36
+ enum SdrDragView::(anonymous at /media/noel/disk2/libo6/include/svx/svddrgv.hxx:35:5) eDragXorPolyLimit
+include/svx/svddrgv.hxx:37
+ enum SdrDragView::(anonymous at /media/noel/disk2/libo6/include/svx/svddrgv.hxx:35:5) eDragXorPointLimit
+include/svx/svdedxv.hxx:51
enum SdrEndTextEditKind Changed
-include/svx/svdglue.hxx:43
+include/svx/svdglue.hxx:44
enum SdrEscapeDirection ALL
-include/svx/svdglue.hxx:56
+include/svx/svdglue.hxx:57
enum SdrAlign HORZ_DONTCARE
-include/svx/svdglue.hxx:60
+include/svx/svdglue.hxx:61
enum SdrAlign VERT_DONTCARE
-include/svx/svditer.hxx:36
+include/svx/svditer.hxx:37
enum SdrIterMode DeepWithGroups
-include/svx/svdmodel.hxx:95
+include/svx/svdmodel.hxx:102
enum SdrSwapGraphicsMode TEMP
-include/svx/svdmodel.hxx:96
+include/svx/svdmodel.hxx:103
enum SdrSwapGraphicsMode PURGE
-include/svx/svdmodel.hxx:97
+include/svx/svdmodel.hxx:104
enum SdrSwapGraphicsMode DEFAULT
-include/svx/svdmodel.hxx:116
+include/svx/svdmodel.hxx:123
enum SdrHintKind DefaultFontHeightChange
-include/svx/svdmrkv.hxx:36
- enum SdrSearchOptions DEEP
include/svx/svdmrkv.hxx:37
enum SdrSearchOptions ALSOONMASTER
include/svx/svdmrkv.hxx:38
enum SdrSearchOptions WHOLEPAGE
include/svx/svdmrkv.hxx:39
enum SdrSearchOptions TESTMARKABLE
-include/svx/svdmrkv.hxx:40
- enum SdrSearchOptions TESTMACRO
-include/svx/svdmrkv.hxx:41
- enum SdrSearchOptions TESTTEXTEDIT
-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:45
- enum SdrSearchOptions NEXT
-include/svx/svdmrkv.hxx:46
enum SdrSearchOptions MARKED
-include/svx/svdmrkv.hxx:47
+include/svx/svdmrkv.hxx:46
enum SdrSearchOptions PASS2BOUND
-include/svx/svdmrkv.hxx:48
+include/svx/svdmrkv.hxx:47
enum SdrSearchOptions PASS3NEAREST
-include/svx/svdmrkv.hxx:49
- enum SdrSearchOptions BEFOREMARK
include/svx/svdmrkv.hxx:51
- enum SdrSearchOptions IMPISMASTER
-include/svx/svdmrkv.hxx:52
enum SdrSearchOptions PICKMARKABLE
-include/svx/svdmrkv.hxx:53
+include/svx/svdmrkv.hxx:52
enum SdrSearchOptions PICKTEXTEDIT
-include/svx/svdmrkv.hxx:54
+include/svx/svdmrkv.hxx:53
enum SdrSearchOptions PICKMACRO
-include/svx/svdmrkv.hxx:64
+include/svx/svdmrkv.hxx:63
enum SdrHitKind Object
-include/svx/svdoashp.hxx:54
- enum CustomShapeHandleModes RESIZE_FIXED
-include/svx/svdoashp.hxx:55
- enum CustomShapeHandleModes CREATE_FIXED
-include/svx/svdoashp.hxx:56
- enum CustomShapeHandleModes RESIZE_ABSOLUTE_X
-include/svx/svdoashp.hxx:57
- enum CustomShapeHandleModes RESIZE_ABSOLUTE_Y
-include/svx/svdoashp.hxx:58
- enum CustomShapeHandleModes MOVE_SHAPE
include/svx/svdoashp.hxx:59
enum CustomShapeHandleModes ORTHO4
-include/svx/svdobj.hxx:148
+include/svx/svdobj.hxx:153
enum SdrInventor IMap
-include/svx/svdograf.hxx:48
+include/svx/svdograf.hxx:50
enum SdrGrafObjTransformsAttrs COLOR
-include/svx/svdograf.hxx:49
+include/svx/svdograf.hxx:51
enum SdrGrafObjTransformsAttrs MIRROR
-include/svx/svdograf.hxx:50
+include/svx/svdograf.hxx:52
enum SdrGrafObjTransformsAttrs ROTATE
-include/svx/svdograf.hxx:51
+include/svx/svdograf.hxx:53
enum SdrGrafObjTransformsAttrs ALL
include/svx/svdotable.hxx:56
enum sdr::table::TableHitKind HorizontalBorder
include/svx/svdotable.hxx:57
enum sdr::table::TableHitKind VerticallBorder
-include/svx/svdpntv.hxx:68
+include/svx/svdpntv.hxx:69
enum SdrAnimationMode Disable
include/svx/svdsnpv.hxx:73
enum SdrSnap NOTSNAPPED
-include/svx/svdsnpv.hxx:74
- enum SdrSnap XSNAPPED
-include/svx/svdsnpv.hxx:75
- enum SdrSnap YSNAPPED
-include/svx/svdtypes.hxx:67
- enum SdrObjListKind Unknown
-include/svx/svdtypes.hxx:83
+include/svx/svdtypes.hxx:71
enum SdrRepeatFunc Move
-include/svx/svdtypes.hxx:84
+include/svx/svdtypes.hxx:72
enum SdrRepeatFunc Resize
-include/svx/svdtypes.hxx:85
+include/svx/svdtypes.hxx:73
enum SdrRepeatFunc Rotate
include/svx/svdview.hxx:57
enum SdrViewContext GluePointEdit
@@ -3170,179 +2640,123 @@ include/svx/svdview.hxx:92
enum SdrMouseEventKind MOVE
include/svx/SvxShapeTypes.hxx:68
enum accessibility::SvxShapeTypes DRAWING_END
-include/svx/swframeposstrings.hxx:38
+include/svx/swframeposstrings.hxx:35
enum SvxSwFramePosString::StringId LEFT
-include/svx/swframeposstrings.hxx:39
+include/svx/swframeposstrings.hxx:36
enum SvxSwFramePosString::StringId RIGHT
-include/svx/swframeposstrings.hxx:41
+include/svx/swframeposstrings.hxx:38
enum SvxSwFramePosString::StringId MIR_LEFT
-include/svx/swframeposstrings.hxx:42
+include/svx/swframeposstrings.hxx:39
enum SvxSwFramePosString::StringId MIR_RIGHT
-include/svx/swframeposstrings.hxx:43
+include/svx/swframeposstrings.hxx:40
enum SvxSwFramePosString::StringId MIR_FROMLEFT
-include/svx/swframeposstrings.hxx:44
+include/svx/swframeposstrings.hxx:41
enum SvxSwFramePosString::StringId FRAME
-include/svx/swframeposstrings.hxx:45
+include/svx/swframeposstrings.hxx:42
enum SvxSwFramePosString::StringId PRTAREA
-include/svx/swframeposstrings.hxx:46
+include/svx/swframeposstrings.hxx:43
enum SvxSwFramePosString::StringId REL_PG_LEFT
-include/svx/swframeposstrings.hxx:47
+include/svx/swframeposstrings.hxx:44
enum SvxSwFramePosString::StringId REL_PG_RIGHT
-include/svx/swframeposstrings.hxx:48
+include/svx/swframeposstrings.hxx:45
enum SvxSwFramePosString::StringId REL_FRM_LEFT
-include/svx/swframeposstrings.hxx:49
+include/svx/swframeposstrings.hxx:46
enum SvxSwFramePosString::StringId REL_FRM_RIGHT
-include/svx/swframeposstrings.hxx:50
+include/svx/swframeposstrings.hxx:47
enum SvxSwFramePosString::StringId MIR_REL_PG_LEFT
-include/svx/swframeposstrings.hxx:51
+include/svx/swframeposstrings.hxx:48
enum SvxSwFramePosString::StringId MIR_REL_PG_RIGHT
-include/svx/swframeposstrings.hxx:52
+include/svx/swframeposstrings.hxx:49
enum SvxSwFramePosString::StringId MIR_REL_FRM_LEFT
-include/svx/swframeposstrings.hxx:53
+include/svx/swframeposstrings.hxx:50
enum SvxSwFramePosString::StringId MIR_REL_FRM_RIGHT
-include/svx/swframeposstrings.hxx:54
+include/svx/swframeposstrings.hxx:51
enum SvxSwFramePosString::StringId REL_PG_FRAME
-include/svx/swframeposstrings.hxx:55
+include/svx/swframeposstrings.hxx:52
enum SvxSwFramePosString::StringId REL_PG_PRTAREA
-include/svx/swframeposstrings.hxx:56
+include/svx/swframeposstrings.hxx:53
enum SvxSwFramePosString::StringId REL_BASE
-include/svx/swframeposstrings.hxx:57
+include/svx/swframeposstrings.hxx:54
enum SvxSwFramePosString::StringId REL_CHAR
-include/svx/swframeposstrings.hxx:58
+include/svx/swframeposstrings.hxx:55
enum SvxSwFramePosString::StringId REL_ROW
-include/svx/swframeposstrings.hxx:59
+include/svx/swframeposstrings.hxx:56
enum SvxSwFramePosString::StringId REL_BORDER
-include/svx/swframeposstrings.hxx:60
+include/svx/swframeposstrings.hxx:57
enum SvxSwFramePosString::StringId REL_PRTAREA
-include/svx/swframeposstrings.hxx:61
+include/svx/swframeposstrings.hxx:58
enum SvxSwFramePosString::StringId FLY_REL_PG_LEFT
-include/svx/swframeposstrings.hxx:62
+include/svx/swframeposstrings.hxx:59
enum SvxSwFramePosString::StringId FLY_REL_PG_RIGHT
-include/svx/swframeposstrings.hxx:63
+include/svx/swframeposstrings.hxx:60
enum SvxSwFramePosString::StringId FLY_REL_PG_FRAME
-include/svx/swframeposstrings.hxx:64
+include/svx/swframeposstrings.hxx:61
enum SvxSwFramePosString::StringId FLY_REL_PG_PRTAREA
-include/svx/swframeposstrings.hxx:65
+include/svx/swframeposstrings.hxx:62
enum SvxSwFramePosString::StringId FLY_MIR_REL_PG_LEFT
-include/svx/swframeposstrings.hxx:66
+include/svx/swframeposstrings.hxx:63
enum SvxSwFramePosString::StringId FLY_MIR_REL_PG_RIGHT
-include/svx/swframeposstrings.hxx:67
+include/svx/swframeposstrings.hxx:64
enum SvxSwFramePosString::StringId TOP
-include/svx/swframeposstrings.hxx:68
+include/svx/swframeposstrings.hxx:65
enum SvxSwFramePosString::StringId BOTTOM
-include/svx/swframeposstrings.hxx:69
+include/svx/swframeposstrings.hxx:66
enum SvxSwFramePosString::StringId CENTER_HORI
-include/svx/swframeposstrings.hxx:70
+include/svx/swframeposstrings.hxx:67
enum SvxSwFramePosString::StringId CENTER_VERT
-include/svx/swframeposstrings.hxx:72
+include/svx/swframeposstrings.hxx:69
enum SvxSwFramePosString::StringId FROMBOTTOM
-include/svx/swframeposstrings.hxx:73
+include/svx/swframeposstrings.hxx:70
enum SvxSwFramePosString::StringId BELOW
-include/svx/swframeposstrings.hxx:74
+include/svx/swframeposstrings.hxx:71
enum SvxSwFramePosString::StringId FROMRIGHT
-include/svx/swframeposstrings.hxx:75
+include/svx/swframeposstrings.hxx:72
enum SvxSwFramePosString::StringId REL_PG_TOP
-include/svx/swframeposstrings.hxx:76
+include/svx/swframeposstrings.hxx:73
enum SvxSwFramePosString::StringId REL_PG_BOTTOM
-include/svx/swframeposstrings.hxx:77
+include/svx/swframeposstrings.hxx:74
enum SvxSwFramePosString::StringId REL_FRM_TOP
-include/svx/swframeposstrings.hxx:78
+include/svx/swframeposstrings.hxx:75
enum SvxSwFramePosString::StringId REL_FRM_BOTTOM
-include/svx/swframeposstrings.hxx:79
+include/svx/swframeposstrings.hxx:76
enum SvxSwFramePosString::StringId REL_LINE
-include/svx/tabarea.hxx:27
- enum ChangeType MODIFIED
-include/svx/tabarea.hxx:28
- enum ChangeType CHANGED
include/svx/tabarea.hxx:29
enum ChangeType SAVED
include/svx/xenum.hxx:26
enum XFormTextShadow Slant
-include/svx/xoutbmp.hxx:31
- enum XOutFlags MirrorHorz
-include/svx/xoutbmp.hxx:32
- enum XOutFlags MirrorVert
-include/svx/xoutbmp.hxx:33
- enum XOutFlags ContourHorz
-include/svx/xoutbmp.hxx:34
- enum XOutFlags ContourVert
include/svx/xoutbmp.hxx:35
- enum XOutFlags ContourEdgeDetect
-include/svx/xoutbmp.hxx:36
- enum XOutFlags DontAddExtension
-include/svx/xoutbmp.hxx:37
- enum XOutFlags DontExpandFilename
-include/svx/xoutbmp.hxx:38
+ enum XOutFlags ContourHorz
+include/svx/xoutbmp.hxx:40
enum XOutFlags UseGifIfPossible
-include/svx/xoutbmp.hxx:39
+include/svx/xoutbmp.hxx:41
enum XOutFlags UseGifIfSensible
-include/svx/xoutbmp.hxx:40
- enum XOutFlags UseNativeIfPossible
-include/toolkit/awt/vclxgraphics.hxx:44
- enum InitOutDevFlags FONT
-include/toolkit/awt/vclxgraphics.hxx:45
- enum InitOutDevFlags COLORS
-include/toolkit/controls/unocontrols.hxx:761
+include/toolkit/controls/unocontrols.hxx:759
enum UnoControlListBoxModel::ConstructorMode ConstructWithoutProperties
-include/tools/date.hxx:60
+include/tools/date.hxx:63
enum Date::DateInitSystem SYSTEM
-include/tools/date.hxx:65
+include/tools/date.hxx:68
enum Date::DateInitEmpty EMPTY
include/tools/datetime.hxx:34
enum DateTime::DateTimeInitSystem SYSTEM
include/tools/datetime.hxx:39
enum DateTime::DateTimeInitEmpty EMPTY
-include/tools/errinf.hxx:47
- enum ErrorHandlerFlags ButtonsYesNo
-include/tools/inetmsg.hxx:66
- enum InetMessageMime VERSION
-include/tools/inetmsg.hxx:67
- enum InetMessageMime CONTENT_DISPOSITION
-include/tools/inetmsg.hxx:68
- enum InetMessageMime CONTENT_TYPE
-include/tools/inetmsg.hxx:69
- enum InetMessageMime CONTENT_TRANSFER_ENCODING
include/tools/mapunit.hxx:34
enum MapUnit LASTENUMDUMMY
-include/tools/poly.hxx:34
- enum PolyOptimizeFlags OPEN
-include/tools/poly.hxx:35
- enum PolyOptimizeFlags CLOSE
-include/tools/poly.hxx:36
- enum PolyOptimizeFlags NO_SAME
-include/tools/poly.hxx:37
- enum PolyOptimizeFlags REDUCE
-include/tools/stream.hxx:49
- enum StreamMode NOCREATE
-include/tools/stream.hxx:51
- enum StreamMode COPY_ON_SYMLINK
-include/tools/stream.hxx:54
- enum StreamMode SHARE_DENYREAD
-include/tools/stream.hxx:55
- enum StreamMode SHARE_DENYWRITE
-include/tools/stream.hxx:56
- enum StreamMode SHARE_DENYALL
include/tools/stream.hxx:58
- enum StreamMode READWRITE
-include/tools/stream.hxx:59
enum StreamMode STD_READ
-include/tools/stream.hxx:60
+include/tools/stream.hxx:59
enum StreamMode STD_WRITE
-include/tools/stream.hxx:61
+include/tools/stream.hxx:60
enum StreamMode STD_READWRITE
-include/tools/stream.hxx:75
- enum SvStreamCompressFlags ZBITMAP
-include/tools/stream.hxx:76
- enum SvStreamCompressFlags NATIVE
-include/tools/stream.hxx:98
+include/tools/stream.hxx:97
enum SvLockBytesStatFlag SVSTATFLAG_DEFAULT
include/tools/time.hxx:45
enum tools::Time::TimeInitSystem SYSTEM
include/tools/time.hxx:51
enum tools::Time::TimeInitEmpty EMPTY
-include/tools/urlobj.hxx:172
+include/tools/urlobj.hxx:173
enum FSysStyle Detect
-include/tools/urlobj.hxx:242
+include/tools/urlobj.hxx:243
enum INetURLObject::DecodeMechanism WithCharset
include/tools/urlobj.hxx:799
enum INetURLObject::Part PART_USER_PASSWORD
@@ -3378,492 +2792,278 @@ include/tools/urlobj.hxx:814
enum INetURLObject::Part PART_HTTP_QUERY
include/tools/wintypes.hxx:97
enum WindowType INTROWINDOW
-include/tools/wintypes.hxx:287
+include/tools/wintypes.hxx:241
enum SymbolAlign LEFT
-include/tools/wintypes.hxx:300
+include/tools/wintypes.hxx:254
enum StandardButtonType More
-include/tools/wintypes.hxx:303
+include/tools/wintypes.hxx:255
+ enum StandardButtonType Ignore
+include/tools/wintypes.hxx:256
+ enum StandardButtonType Abort
+include/tools/wintypes.hxx:257
enum StandardButtonType Less
-include/tools/wintypes.hxx:304
+include/tools/wintypes.hxx:258
enum StandardButtonType Count
-include/tools/wintypes.hxx:309
+include/tools/wintypes.hxx:263
enum ProminentEntry TOP
include/tools/zcodec.hxx:38
enum ZCodec::State STATE_DECOMPRESS
-include/ucbhelper/content.hxx:72
+include/ucbhelper/content.hxx:71
enum ucbhelper::ResultSetInclude INCLUDE_FOLDERS_AND_DOCUMENTS
include/ucbhelper/simpleauthenticationrequest.hxx:73
enum ucbhelper::SimpleAuthenticationRequest::EntityType ENTITY_FIXED
-include/ucbhelper/simpleinteractionrequest.hxx:36
- enum ContinuationFlags Abort
-include/ucbhelper/simpleinteractionrequest.hxx:38
- enum ContinuationFlags Retry
include/unotest/filters-test.hxx:22
enum test::filterStatus fail
include/unotest/filters-test.hxx:23
enum test::filterStatus pass
-include/unotools/bootstrap.hxx:61
+include/unotools/bootstrap.hxx:62
enum utl::Bootstrap::PathStatus DATA_UNKNOWN
-include/unotools/bootstrap.hxx:84
- enum utl::Bootstrap::Status MISSING_USER_INSTALL
include/unotools/bootstrap.hxx:85
- enum utl::Bootstrap::Status INVALID_USER_INSTALL
+ enum utl::Bootstrap::Status MISSING_USER_INSTALL
include/unotools/bootstrap.hxx:86
+ enum utl::Bootstrap::Status INVALID_USER_INSTALL
+include/unotools/bootstrap.hxx:87
enum utl::Bootstrap::Status INVALID_BASE_INSTALL
-include/unotools/configitem.hxx:48
+include/unotools/configitem.hxx:47
enum ConfigItemMode ImmediateUpdate
-include/unotools/configitem.hxx:49
+include/unotools/configitem.hxx:48
enum ConfigItemMode DelayedUpdate
-include/unotools/configitem.hxx:51
- enum ConfigItemMode ReleaseTree
-include/unotools/confignode.hxx:176
+include/unotools/confignode.hxx:170
enum utl::OConfigurationNode::NAMEORIGIN NO_CONFIGURATION
-include/unotools/confignode.hxx:207
+include/unotools/confignode.hxx:201
enum utl::OConfigurationTreeRoot::CREATION_MODE CM_UPDATABLE
-include/unotools/eventcfg.hxx:36
+include/unotools/eventcfg.hxx:31
enum GlobalEventId DOCCREATED
-include/unotools/eventcfg.hxx:37
+include/unotools/eventcfg.hxx:32
enum GlobalEventId CREATEDOC
-include/unotools/eventcfg.hxx:38
+include/unotools/eventcfg.hxx:33
enum GlobalEventId LOADFINISHED
-include/unotools/eventcfg.hxx:39
+include/unotools/eventcfg.hxx:34
enum GlobalEventId OPENDOC
-include/unotools/eventcfg.hxx:40
+include/unotools/eventcfg.hxx:35
enum GlobalEventId PREPARECLOSEDOC
-include/unotools/eventcfg.hxx:41
+include/unotools/eventcfg.hxx:36
enum GlobalEventId CLOSEDOC
-include/unotools/eventcfg.hxx:42
+include/unotools/eventcfg.hxx:37
enum GlobalEventId SAVEDOC
-include/unotools/eventcfg.hxx:43
+include/unotools/eventcfg.hxx:38
enum GlobalEventId SAVEDOCDONE
-include/unotools/eventcfg.hxx:44
+include/unotools/eventcfg.hxx:39
enum GlobalEventId SAVEDOCFAILED
-include/unotools/eventcfg.hxx:45
+include/unotools/eventcfg.hxx:40
enum GlobalEventId SAVEASDOC
-include/unotools/eventcfg.hxx:46
+include/unotools/eventcfg.hxx:41
enum GlobalEventId SAVEASDOCDONE
-include/unotools/eventcfg.hxx:47
+include/unotools/eventcfg.hxx:42
enum GlobalEventId SAVEASDOCFAILED
-include/unotools/eventcfg.hxx:48
+include/unotools/eventcfg.hxx:43
enum GlobalEventId SAVETODOC
-include/unotools/eventcfg.hxx:49
+include/unotools/eventcfg.hxx:44
enum GlobalEventId SAVETODOCDONE
-include/unotools/eventcfg.hxx:50
+include/unotools/eventcfg.hxx:45
enum GlobalEventId SAVETODOCFAILED
-include/unotools/eventcfg.hxx:51
+include/unotools/eventcfg.hxx:46
enum GlobalEventId ACTIVATEDOC
-include/unotools/eventcfg.hxx:52
+include/unotools/eventcfg.hxx:47
enum GlobalEventId DEACTIVATEDOC
-include/unotools/eventcfg.hxx:53
+include/unotools/eventcfg.hxx:48
enum GlobalEventId PRINTDOC
-include/unotools/eventcfg.hxx:54
+include/unotools/eventcfg.hxx:49
enum GlobalEventId VIEWCREATED
-include/unotools/eventcfg.hxx:55
+include/unotools/eventcfg.hxx:50
enum GlobalEventId PREPARECLOSEVIEW
-include/unotools/eventcfg.hxx:56
+include/unotools/eventcfg.hxx:51
enum GlobalEventId CLOSEVIEW
-include/unotools/eventcfg.hxx:57
+include/unotools/eventcfg.hxx:52
enum GlobalEventId MODIFYCHANGED
-include/unotools/eventcfg.hxx:58
+include/unotools/eventcfg.hxx:53
enum GlobalEventId TITLECHANGED
-include/unotools/eventcfg.hxx:59
+include/unotools/eventcfg.hxx:54
enum GlobalEventId VISAREACHANGED
-include/unotools/eventcfg.hxx:60
+include/unotools/eventcfg.hxx:55
enum GlobalEventId MODECHANGED
-include/unotools/eventcfg.hxx:61
+include/unotools/eventcfg.hxx:56
enum GlobalEventId STORAGECHANGED
include/unotools/extendedsecurityoptions.hxx:52
enum SvtExtendedSecurityOptions::OpenHyperlinkMode OPEN_WITHSECURITYCHECK
-include/unotools/fontcfg.hxx:49
- enum ImplFontAttrs Default
-include/unotools/fontcfg.hxx:50
- enum ImplFontAttrs Standard
-include/unotools/fontcfg.hxx:51
- enum ImplFontAttrs Normal
-include/unotools/fontcfg.hxx:52
- enum ImplFontAttrs Symbol
-include/unotools/fontcfg.hxx:53
- enum ImplFontAttrs Fixed
-include/unotools/fontcfg.hxx:54
- enum ImplFontAttrs SansSerif
-include/unotools/fontcfg.hxx:55
- enum ImplFontAttrs Serif
-include/unotools/fontcfg.hxx:56
- enum ImplFontAttrs Decorative
-include/unotools/fontcfg.hxx:57
- enum ImplFontAttrs Special
-include/unotools/fontcfg.hxx:58
- enum ImplFontAttrs Italic
-include/unotools/fontcfg.hxx:59
- enum ImplFontAttrs Titling
-include/unotools/fontcfg.hxx:60
- enum ImplFontAttrs Capitals
-include/unotools/fontcfg.hxx:61
- enum ImplFontAttrs CJK
-include/unotools/fontcfg.hxx:62
- enum ImplFontAttrs CJK_JP
-include/unotools/fontcfg.hxx:63
- enum ImplFontAttrs CJK_SC
include/unotools/fontcfg.hxx:64
- enum ImplFontAttrs CJK_TC
+ enum ImplFontAttrs CJK_JP
include/unotools/fontcfg.hxx:65
- enum ImplFontAttrs CJK_KR
+ enum ImplFontAttrs CJK_SC
include/unotools/fontcfg.hxx:66
- enum ImplFontAttrs CTL
+ enum ImplFontAttrs CJK_TC
include/unotools/fontcfg.hxx:67
- enum ImplFontAttrs NoneLatin
-include/unotools/fontcfg.hxx:68
- enum ImplFontAttrs Full
-include/unotools/fontcfg.hxx:69
- enum ImplFontAttrs Outline
-include/unotools/fontcfg.hxx:70
- enum ImplFontAttrs Shadow
-include/unotools/fontcfg.hxx:71
- enum ImplFontAttrs Rounded
-include/unotools/fontcfg.hxx:72
- enum ImplFontAttrs Typewriter
-include/unotools/fontcfg.hxx:73
- enum ImplFontAttrs Script
-include/unotools/fontcfg.hxx:74
- enum ImplFontAttrs Handwriting
+ enum ImplFontAttrs CJK_KR
include/unotools/fontcfg.hxx:75
- enum ImplFontAttrs Chancery
+ enum ImplFontAttrs Script
include/unotools/fontcfg.hxx:76
- enum ImplFontAttrs Comic
+ enum ImplFontAttrs Handwriting
include/unotools/fontcfg.hxx:77
- enum ImplFontAttrs BrushScript
+ enum ImplFontAttrs Chancery
include/unotools/fontcfg.hxx:78
- enum ImplFontAttrs Gothic
-include/unotools/fontcfg.hxx:79
- enum ImplFontAttrs Schoolbook
-include/unotools/fontcfg.hxx:80
- enum ImplFontAttrs OtherStyle
-include/unotools/fontcfg.hxx:81
- enum ImplFontAttrs CJK_AllLang
-include/unotools/fontcfg.hxx:82
- enum ImplFontAttrs AllScript
-include/unotools/fontcfg.hxx:83
- enum ImplFontAttrs AllSubscript
-include/unotools/fontcfg.hxx:84
- enum ImplFontAttrs AllSerifStyle
+ enum ImplFontAttrs Comic
include/unotools/fontcvt.hxx:31
- enum FontToSubsFontFlags IMPORT
-include/unotools/fontcvt.hxx:32
enum FontToSubsFontFlags EXPORT
-include/unotools/fontcvt.hxx:33
- enum FontToSubsFontFlags ONLYOLDSOSYMBOLFONTS
-include/unotools/fontdefs.hxx:36
- enum SubsFontFlags ONLYONE
-include/unotools/fontdefs.hxx:37
- enum SubsFontFlags MS
-include/unotools/fontdefs.hxx:38
- enum SubsFontFlags PS
-include/unotools/fontdefs.hxx:39
- enum SubsFontFlags HTML
-include/unotools/moduleoptions.hxx:83
- enum SvtModuleOptions::EFactory STARTMODULE
-include/unotools/options.hxx:32
- enum ConfigurationHints Locale
-include/unotools/options.hxx:33
- enum ConfigurationHints Currency
include/unotools/options.hxx:34
enum ConfigurationHints UiLocale
-include/unotools/options.hxx:35
- enum ConfigurationHints DecSep
-include/unotools/options.hxx:36
- enum ConfigurationHints DatePatterns
include/unotools/options.hxx:37
enum ConfigurationHints IgnoreLang
include/unotools/options.hxx:38
enum ConfigurationHints CtlSettingsChanged
include/unotools/readwritemutexguard.hxx:27
enum ReadWriteGuardMode ReadOnly
-include/unotools/readwritemutexguard.hxx:28
- enum ReadWriteGuardMode Write
-include/unotools/readwritemutexguard.hxx:29
- enum ReadWriteGuardMode CriticalChange
-include/unotools/readwritemutexguard.hxx:30
- enum ReadWriteGuardMode BlockCritical
include/unotools/sharedunocomponent.hxx:149
enum utl::SharedUNOComponent<class com::sun::star::frame::XModel, class utl::CloseableComponent>::AssignmentMode NoTakeOwnership
include/unotools/sharedunocomponent.hxx:149
- enum utl::SharedUNOComponent<class com::sun::star::sdbc::XConnection, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership
-include/unotools/sharedunocomponent.hxx:149
enum utl::SharedUNOComponent<class com::sun::star::sdbc::XResultSet, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership
include/unotools/sharedunocomponent.hxx:149
+ enum utl::SharedUNOComponent<class com::sun::star::sdbc::XConnection, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership
+include/unotools/sharedunocomponent.hxx:149
enum utl::SharedUNOComponent<class com::sun::star::awt::XControl, class utl::DisposableComponent>::AssignmentMode NoTakeOwnership
-include/unotools/useroptions.hxx:31
- enum UserOptToken City
include/unotools/useroptions.hxx:32
- enum UserOptToken Company
+ enum UserOptToken City
include/unotools/useroptions.hxx:33
- enum UserOptToken Country
+ enum UserOptToken Company
include/unotools/useroptions.hxx:34
- enum UserOptToken Email
+ enum UserOptToken Country
include/unotools/useroptions.hxx:35
- enum UserOptToken Fax
+ enum UserOptToken Email
include/unotools/useroptions.hxx:36
+ enum UserOptToken Fax
+include/unotools/useroptions.hxx:37
enum UserOptToken FirstName
include/unotools/useroptions.hxx:38
- enum UserOptToken Position
+ enum UserOptToken LastName
include/unotools/useroptions.hxx:39
- enum UserOptToken State
+ enum UserOptToken Position
include/unotools/useroptions.hxx:40
- enum UserOptToken Street
+ enum UserOptToken State
include/unotools/useroptions.hxx:41
- enum UserOptToken TelephoneHome
+ enum UserOptToken Street
include/unotools/useroptions.hxx:42
- enum UserOptToken TelephoneWork
+ enum UserOptToken TelephoneHome
include/unotools/useroptions.hxx:43
+ enum UserOptToken TelephoneWork
+include/unotools/useroptions.hxx:44
enum UserOptToken Title
-include/unotools/useroptions.hxx:45
- enum UserOptToken Zip
include/unotools/useroptions.hxx:46
- enum UserOptToken FathersName
+ enum UserOptToken Zip
include/unotools/useroptions.hxx:47
+ enum UserOptToken FathersName
+include/unotools/useroptions.hxx:48
enum UserOptToken Apartment
-include/vcl/bitmap.hxx:36
- enum BmpMirrorFlags Horizontal
-include/vcl/bitmap.hxx:37
- enum BmpMirrorFlags Vertical
-include/vcl/bitmap.hxx:62
- enum BmpDitherFlags Matrix
-include/vcl/bitmap.hxx:63
- enum BmpDitherFlags Floyd
-include/vcl/bitmap.hxx:64
- enum BmpDitherFlags Floyd16
-include/vcl/bitmap.hxx:110
- enum BmpFilter Unknown
-include/vcl/btndlg.hxx:39
- enum ButtonDialogFlags Default
-include/vcl/btndlg.hxx:40
- enum ButtonDialogFlags OK
-include/vcl/btndlg.hxx:41
- enum ButtonDialogFlags Cancel
-include/vcl/btndlg.hxx:42
- enum ButtonDialogFlags Help
-include/vcl/btndlg.hxx:43
- enum ButtonDialogFlags Focus
-include/vcl/decoview.hxx:37
- enum DrawSymbolFlags Mono
-include/vcl/decoview.hxx:38
- enum DrawSymbolFlags Disable
+include/unotools/useroptions.hxx:49
+ enum UserOptToken SigningKey
+include/unotools/useroptions.hxx:50
+ enum UserOptToken EncryptionKey
+include/unotools/useroptions.hxx:51
+ enum UserOptToken EncryptToSelf
include/vcl/decoview.hxx:59
enum DrawFrameFlags Menu
include/vcl/decoview.hxx:60
enum DrawFrameFlags WindowBorder
include/vcl/decoview.hxx:61
enum DrawFrameFlags BorderWindowBorder
-include/vcl/decoview.hxx:62
- enum DrawFrameFlags Mono
-include/vcl/decoview.hxx:63
- enum DrawFrameFlags NoDraw
include/vcl/decoview.hxx:74
enum DrawHighlightFrameStyle Out
-include/vcl/decoview.hxx:81
- enum DrawButtonFlags Default
-include/vcl/decoview.hxx:82
- enum DrawButtonFlags NoLightBorder
-include/vcl/decoview.hxx:83
- enum DrawButtonFlags Pressed
-include/vcl/decoview.hxx:84
- enum DrawButtonFlags Checked
-include/vcl/decoview.hxx:85
- enum DrawButtonFlags DontKnow
-include/vcl/decoview.hxx:86
- enum DrawButtonFlags Mono
-include/vcl/decoview.hxx:87
- enum DrawButtonFlags NoFill
-include/vcl/decoview.hxx:88
- enum DrawButtonFlags Disabled
-include/vcl/decoview.hxx:89
- enum DrawButtonFlags Highlight
-include/vcl/decoview.hxx:91
- enum DrawButtonFlags NoLeftLightBorder
-include/vcl/decoview.hxx:92
- enum DrawButtonFlags NoText
-include/vcl/decoview.hxx:93
- enum DrawButtonFlags NoImage
-include/vcl/dialog.hxx:36
+include/vcl/dialog.hxx:42
enum Dialog::InitFlag Default
include/vcl/EnumContext.hxx:43
enum vcl::EnumContext::Application Chart
-include/vcl/EnumContext.hxx:56
+include/vcl/EnumContext.hxx:58
enum vcl::EnumContext::Application Any
-include/vcl/EnumContext.hxx:68
+include/vcl/EnumContext.hxx:70
enum vcl::EnumContext::Context Auditing
-include/vcl/EnumContext.hxx:69
+include/vcl/EnumContext.hxx:71
enum vcl::EnumContext::Context Axis
-include/vcl/EnumContext.hxx:72
+include/vcl/EnumContext.hxx:74
enum vcl::EnumContext::Context ChartElements
-include/vcl/EnumContext.hxx:75
+include/vcl/EnumContext.hxx:77
enum vcl::EnumContext::Context DrawPage
-include/vcl/EnumContext.hxx:78
- enum vcl::EnumContext::Context ErrorBar
include/vcl/EnumContext.hxx:80
- enum vcl::EnumContext::Context Frame
+ enum vcl::EnumContext::Context ErrorBar
include/vcl/EnumContext.hxx:82
+ enum vcl::EnumContext::Context Frame
+include/vcl/EnumContext.hxx:84
enum vcl::EnumContext::Context Grid
-include/vcl/EnumContext.hxx:83
+include/vcl/EnumContext.hxx:85
enum vcl::EnumContext::Context HandoutPage
-include/vcl/EnumContext.hxx:84
+include/vcl/EnumContext.hxx:86
enum vcl::EnumContext::Context MasterPage
-include/vcl/EnumContext.hxx:87
+include/vcl/EnumContext.hxx:89
enum vcl::EnumContext::Context NotesPage
-include/vcl/EnumContext.hxx:91
+include/vcl/EnumContext.hxx:93
+ enum vcl::EnumContext::Context Printpreview
+include/vcl/EnumContext.hxx:94
enum vcl::EnumContext::Context Series
-include/vcl/EnumContext.hxx:92
+include/vcl/EnumContext.hxx:95
enum vcl::EnumContext::Context SlidesorterPage
-include/vcl/EnumContext.hxx:96
+include/vcl/EnumContext.hxx:99
enum vcl::EnumContext::Context Trendline
+include/vcl/errcode.hxx:62
+ enum WarningFlag Yes
include/vcl/event.hxx:88
- enum MouseEventModifiers SIMPLEMOVE
-include/vcl/event.hxx:89
enum MouseEventModifiers DRAGMOVE
-include/vcl/event.hxx:90
+include/vcl/event.hxx:89
enum MouseEventModifiers DRAGCOPY
-include/vcl/event.hxx:91
+include/vcl/event.hxx:90
enum MouseEventModifiers ENTERWINDOW
-include/vcl/event.hxx:92
+include/vcl/event.hxx:91
enum MouseEventModifiers LEAVEWINDOW
-include/vcl/event.hxx:93
+include/vcl/event.hxx:92
enum MouseEventModifiers SYNTHETIC
-include/vcl/event.hxx:94
- enum MouseEventModifiers MODIFIERCHANGED
-include/vcl/event.hxx:96
- enum MouseEventModifiers SIMPLECLICK
-include/vcl/event.hxx:97
- enum MouseEventModifiers SELECT
-include/vcl/event.hxx:98
- enum MouseEventModifiers MULTISELECT
-include/vcl/event.hxx:99
- enum MouseEventModifiers RANGESELECT
-include/vcl/event.hxx:181
- enum HelpEventMode CONTEXT
-include/vcl/event.hxx:182
- enum HelpEventMode EXTENDED
-include/vcl/event.hxx:184
- enum HelpEventMode QUICK
-include/vcl/event.hxx:289
+include/vcl/event.hxx:288
enum MouseNotifyEvent DESTROY
-include/vcl/event.hxx:291
+include/vcl/event.hxx:290
enum MouseNotifyEvent INPUTDISABLE
-include/vcl/event.hxx:348
+include/vcl/event.hxx:347
enum DataChangedEventType USER
-include/vcl/field.hxx:361
- enum TimeFormatter::TimeFormat Hour24
-include/vcl/filter/pdfdocument.hxx:215
+include/vcl/filter/pdfdocument.hxx:238
enum vcl::filter::TokenizeMode END_OF_STREAM
-include/vcl/filter/pdfdocument.hxx:221
+include/vcl/filter/pdfdocument.hxx:244
enum vcl::filter::TokenizeMode STORED_OBJECT
-include/vcl/floatwin.hxx:34
- enum FloatWinPopupFlags AllowTearOff
-include/vcl/floatwin.hxx:39
- enum FloatWinPopupFlags NoKeyClose
-include/vcl/floatwin.hxx:40
- enum FloatWinPopupFlags AllMouseButtonClose
-include/vcl/floatwin.hxx:41
- enum FloatWinPopupFlags NoAppFocusClose
-include/vcl/floatwin.hxx:42
- enum FloatWinPopupFlags NewLevel
-include/vcl/floatwin.hxx:43
- enum FloatWinPopupFlags NoMouseUpClose
-include/vcl/floatwin.hxx:44
- enum FloatWinPopupFlags GrabFocus
-include/vcl/floatwin.hxx:45
- enum FloatWinPopupFlags NoHorzPlacement
-include/vcl/floatwin.hxx:55
- enum FloatWinPopupEndFlags Cancel
include/vcl/floatwin.hxx:56
- enum FloatWinPopupEndFlags TearOff
+ enum FloatWinPopupEndFlags Cancel
include/vcl/floatwin.hxx:57
- enum FloatWinPopupEndFlags DontCallHdl
-include/vcl/floatwin.hxx:58
- enum FloatWinPopupEndFlags CloseAll
-include/vcl/floatwin.hxx:67
+ enum FloatWinPopupEndFlags TearOff
+include/vcl/floatwin.hxx:68
enum FloatWinTitleType Unknown
-include/vcl/floatwin.hxx:76
- enum HitTest HITTEST_OUTSIDE
include/vcl/floatwin.hxx:77
+ enum HitTest HITTEST_OUTSIDE
+include/vcl/floatwin.hxx:78
enum HitTest HITTEST_WINDOW
+include/vcl/fmtfield.hxx:36
+ enum FORMAT_CHANGE_TYPE CURRENCY_SYMBOL
+include/vcl/fmtfield.hxx:37
+ enum FORMAT_CHANGE_TYPE CURRSYM_POSITION
+include/vcl/fmtfield.hxx:74
+ enum FormattedField::valueState valueDirty
include/vcl/fntstyle.hxx:31
enum FontKerning FontSpecific
-include/vcl/fntstyle.hxx:32
- enum FontKerning Asian
-include/vcl/fontcapabilities.hxx:162
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1252
-include/vcl/fontcapabilities.hxx:163
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1250
-include/vcl/fontcapabilities.hxx:164
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1251
-include/vcl/fontcapabilities.hxx:165
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1253
-include/vcl/fontcapabilities.hxx:166
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1254
-include/vcl/fontcapabilities.hxx:167
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1255
-include/vcl/fontcapabilities.hxx:168
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1256
-include/vcl/fontcapabilities.hxx:169
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1257
-include/vcl/fontcapabilities.hxx:170
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1258
-include/vcl/fontcapabilities.hxx:171
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP874
-include/vcl/fontcapabilities.hxx:172
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP932
-include/vcl/fontcapabilities.hxx:173
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP936
-include/vcl/fontcapabilities.hxx:174
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP949
-include/vcl/fontcapabilities.hxx:175
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP950
-include/vcl/fontcapabilities.hxx:176
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP1361
-include/vcl/fontcapabilities.hxx:177
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP869
-include/vcl/fontcapabilities.hxx:178
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP866
-include/vcl/fontcapabilities.hxx:179
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP865
-include/vcl/fontcapabilities.hxx:180
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP864
-include/vcl/fontcapabilities.hxx:181
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP863
-include/vcl/fontcapabilities.hxx:182
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP862
-include/vcl/fontcapabilities.hxx:183
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP861
-include/vcl/fontcapabilities.hxx:184
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP860
-include/vcl/fontcapabilities.hxx:185
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP857
-include/vcl/fontcapabilities.hxx:186
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP855
-include/vcl/fontcapabilities.hxx:187
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP852
-include/vcl/fontcapabilities.hxx:188
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP775
-include/vcl/fontcapabilities.hxx:189
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP737
-include/vcl/fontcapabilities.hxx:190
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP780
-include/vcl/fontcapabilities.hxx:191
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP850
-include/vcl/fontcapabilities.hxx:192
- enum vcl::CodePageCoverage::CodePageCoverageEnum CP437
+include/vcl/font/Feature.hxx:34
+ enum vcl::font::FeatureParameterType BOOL
+include/vcl/font/Feature.hxx:40
+ enum vcl::font::FeatureType OpenType
+include/vcl/font/Feature.hxx:41
+ enum vcl::font::FeatureType Graphite
include/vcl/fontcapabilities.hxx:193
enum vcl::CodePageCoverage::CodePageCoverageEnum MAX_CP_ENUM
-include/vcl/gdimtf.hxx:49
+include/vcl/gdimtf.hxx:48
enum MtfConversion N8BitGreys
include/vcl/graphicfilter.hxx:55
enum GraphicFilterImportFlags SetLogsizeForJpeg
-include/vcl/graphicfilter.hxx:56
- enum GraphicFilterImportFlags DontSetLogsizeForJpeg
-include/vcl/graphicfilter.hxx:57
- enum GraphicFilterImportFlags ForPreview
include/vcl/graphicfilter.hxx:58
enum GraphicFilterImportFlags AllowPartialStreamRead
+include/vcl/graphicfilter.hxx:60
+ enum GraphicFilterImportFlags OnlyCreateBitmap
+include/vcl/GraphicObject.hxx:34
+ enum GraphicManagerDrawFlags CACHED
+include/vcl/GraphicObject.hxx:35
+ enum GraphicManagerDrawFlags SMOOTHSCALE
+include/vcl/GraphicObject.hxx:37
+ enum GraphicManagerDrawFlags STANDARD
+include/vcl/GraphicObject.hxx:60
+ enum GraphicAdjustmentFlags ALL
include/vcl/graphictools.hxx:216
enum SvtGraphicFill::FillRule fillNonZero
include/vcl/graphictools.hxx:241
@@ -3875,298 +3075,60 @@ include/vcl/graphictools.hxx:248
include/vcl/graphictools.hxx:251
enum SvtGraphicFill::GradientType Rectangular
include/vcl/graphictools.hxx:253
- enum SvtGraphicFill::(anonymous at include/vcl/graphictools.hxx:253:5) gradientStepsInfinite
-include/vcl/help.hxx:36
- enum QuickHelpFlags Left
+ enum SvtGraphicFill::(anonymous at /media/noel/disk2/libo6/include/vcl/graphictools.hxx:253:5) gradientStepsInfinite
include/vcl/help.hxx:37
enum QuickHelpFlags Center
-include/vcl/help.hxx:38
- enum QuickHelpFlags Right
-include/vcl/help.hxx:39
- enum QuickHelpFlags Top
include/vcl/help.hxx:40
enum QuickHelpFlags VCenter
-include/vcl/help.hxx:41
- enum QuickHelpFlags Bottom
-include/vcl/help.hxx:42
- enum QuickHelpFlags NoAutoPos
-include/vcl/help.hxx:43
- enum QuickHelpFlags CtrlText
-include/vcl/help.hxx:45
- enum QuickHelpFlags NoDelay
include/vcl/help.hxx:47
enum QuickHelpFlags TipStyleBalloon
-include/vcl/help.hxx:48
- enum QuickHelpFlags NoEvadePointer
-include/vcl/help.hxx:49
- enum QuickHelpFlags BiDiRtl
-include/vcl/image.hxx:46
+include/vcl/image.hxx:45
enum vcl::ImageType Small
-include/vcl/ImageTree.hxx:30
- enum ImageLoadFlags IgnoreScalingFactor
-include/vcl/ImageTree.hxx:31
- enum ImageLoadFlags IgnoreDarkTheme
-include/vcl/inputctx.hxx:32
- enum InputContextFlags Text
include/vcl/inputctx.hxx:33
enum InputContextFlags ExtText
-include/vcl/inputtypes.hxx:27
- enum VclInputFlags MOUSE
-include/vcl/inputtypes.hxx:28
- enum VclInputFlags KEYBOARD
-include/vcl/inputtypes.hxx:29
- enum VclInputFlags PAINT
-include/vcl/inputtypes.hxx:30
- enum VclInputFlags TIMER
-include/vcl/inputtypes.hxx:31
- enum VclInputFlags OTHER
-include/vcl/inputtypes.hxx:32
- enum VclInputFlags APPEVENT
-include/vcl/keycodes.hxx:158
+include/vcl/keycod.hxx:29
+ enum KeyFuncType NEW
+include/vcl/keycodes.hxx:165
enum ModKeyFlags LeftShift
-include/vcl/keycodes.hxx:159
+include/vcl/keycodes.hxx:166
enum ModKeyFlags RightShift
-include/vcl/keycodes.hxx:160
+include/vcl/keycodes.hxx:167
enum ModKeyFlags LeftMod1
-include/vcl/keycodes.hxx:161
+include/vcl/keycodes.hxx:168
enum ModKeyFlags RightMod1
-include/vcl/keycodes.hxx:162
+include/vcl/keycodes.hxx:169
enum ModKeyFlags LeftMod2
-include/vcl/keycodes.hxx:163
+include/vcl/keycodes.hxx:170
enum ModKeyFlags RightMod2
-include/vcl/keycodes.hxx:164
+include/vcl/keycodes.hxx:171
enum ModKeyFlags LeftMod3
-include/vcl/keycodes.hxx:165
+include/vcl/keycodes.hxx:172
enum ModKeyFlags RightMod3
-include/vcl/keycodes.hxx:166
+include/vcl/keycodes.hxx:173
enum ModKeyFlags Mod1Msk
-include/vcl/keycodes.hxx:167
+include/vcl/keycodes.hxx:174
enum ModKeyFlags Mod2Msk
-include/vcl/keycodes.hxx:175
+include/vcl/keycodes.hxx:182
enum KeyIndicatorState CAPSLOCK
-include/vcl/keycodes.hxx:176
+include/vcl/keycodes.hxx:183
enum KeyIndicatorState NUMLOCK
-include/vcl/keycodes.hxx:177
- enum KeyIndicatorState SCROLLLOCK
-include/vcl/layout.hxx:191
+include/vcl/layout.hxx:193
enum VclButtonBoxStyle Edge
-include/vcl/lstbox.hxx:48
- enum ListBoxEntryFlags DisableSelection
-include/vcl/lstbox.hxx:55
- enum ListBoxEntryFlags MultiLine
-include/vcl/lstbox.hxx:60
- enum ListBoxEntryFlags DrawDisabled
-include/vcl/menu.hxx:68
- enum PopupMenuFlags ExecuteDown
-include/vcl/menu.hxx:69
- enum PopupMenuFlags ExecuteUp
-include/vcl/menu.hxx:70
- enum PopupMenuFlags ExecuteLeft
-include/vcl/menu.hxx:71
- enum PopupMenuFlags ExecuteRight
-include/vcl/menu.hxx:72
- enum PopupMenuFlags NoMouseUpClose
-include/vcl/menu.hxx:78
- enum PopupMenuFlags NoHorzPlacement
-include/vcl/menu.hxx:89
- enum MenuFlags NoAutoMnemonics
-include/vcl/menu.hxx:90
- enum MenuFlags HideDisabledEntries
-include/vcl/menu.hxx:92
- enum MenuFlags AlwaysShowDisabledEntries
-include/vcl/outdev.hxx:132
- enum SalLayoutFlags BiDiRtl
-include/vcl/outdev.hxx:133
- enum SalLayoutFlags BiDiStrong
-include/vcl/outdev.hxx:134
- enum SalLayoutFlags RightAlign
-include/vcl/outdev.hxx:135
- enum SalLayoutFlags DisableKerning
-include/vcl/outdev.hxx:136
- enum SalLayoutFlags KerningAsian
-include/vcl/outdev.hxx:137
- enum SalLayoutFlags Vertical
-include/vcl/outdev.hxx:138
- enum SalLayoutFlags EnableLigatures
-include/vcl/outdev.hxx:139
- enum SalLayoutFlags SubstituteDigits
-include/vcl/outdev.hxx:140
- enum SalLayoutFlags KashidaJustification
-include/vcl/outdev.hxx:141
- enum SalLayoutFlags ForFallback
-include/vcl/outdev.hxx:156
- enum DrawTextFlags Disable
-include/vcl/outdev.hxx:157
- enum DrawTextFlags Mnemonic
-include/vcl/outdev.hxx:158
- enum DrawTextFlags Mono
-include/vcl/outdev.hxx:159
- enum DrawTextFlags Clip
-include/vcl/outdev.hxx:160
- enum DrawTextFlags Left
-include/vcl/outdev.hxx:161
- enum DrawTextFlags Center
-include/vcl/outdev.hxx:162
- enum DrawTextFlags Right
-include/vcl/outdev.hxx:163
- enum DrawTextFlags Top
-include/vcl/outdev.hxx:164
- enum DrawTextFlags VCenter
-include/vcl/outdev.hxx:165
- enum DrawTextFlags Bottom
-include/vcl/outdev.hxx:166
- enum DrawTextFlags EndEllipsis
-include/vcl/outdev.hxx:167
- enum DrawTextFlags PathEllipsis
-include/vcl/outdev.hxx:168
- enum DrawTextFlags MultiLine
-include/vcl/outdev.hxx:169
- enum DrawTextFlags WordBreak
-include/vcl/outdev.hxx:170
- enum DrawTextFlags NewsEllipsis
-include/vcl/outdev.hxx:173
- enum DrawTextFlags HideMnemonic
-include/vcl/outdev.hxx:185
- enum DrawImageFlags Highlight
-include/vcl/outdev.hxx:186
- enum DrawImageFlags Deactive
-include/vcl/outdev.hxx:187
- enum DrawImageFlags ColorTransform
-include/vcl/outdev.hxx:188
- enum DrawImageFlags SemiTransparent
-include/vcl/outdev.hxx:199
- enum DrawGridFlags Dots
-include/vcl/outdev.hxx:200
- enum DrawGridFlags HorzLines
-include/vcl/outdev.hxx:201
- enum DrawGridFlags VertLines
-include/vcl/outdev.hxx:211
- enum DrawModeFlags Default
-include/vcl/outdev.hxx:212
- enum DrawModeFlags BlackLine
-include/vcl/outdev.hxx:213
- enum DrawModeFlags BlackFill
-include/vcl/outdev.hxx:214
- enum DrawModeFlags BlackText
-include/vcl/outdev.hxx:215
- enum DrawModeFlags BlackBitmap
include/vcl/outdev.hxx:216
- enum DrawModeFlags BlackGradient
-include/vcl/outdev.hxx:217
- enum DrawModeFlags GrayLine
-include/vcl/outdev.hxx:218
- enum DrawModeFlags GrayFill
-include/vcl/outdev.hxx:219
- enum DrawModeFlags GrayText
-include/vcl/outdev.hxx:220
- enum DrawModeFlags GrayBitmap
-include/vcl/outdev.hxx:221
- enum DrawModeFlags GrayGradient
-include/vcl/outdev.hxx:222
- enum DrawModeFlags NoFill
-include/vcl/outdev.hxx:223
- enum DrawModeFlags NoBitmap
-include/vcl/outdev.hxx:224
- enum DrawModeFlags NoGradient
-include/vcl/outdev.hxx:225
- enum DrawModeFlags GhostedLine
-include/vcl/outdev.hxx:226
- enum DrawModeFlags GhostedFill
-include/vcl/outdev.hxx:227
- enum DrawModeFlags GhostedText
-include/vcl/outdev.hxx:228
- enum DrawModeFlags GhostedBitmap
-include/vcl/outdev.hxx:229
- enum DrawModeFlags GhostedGradient
-include/vcl/outdev.hxx:230
- enum DrawModeFlags WhiteLine
-include/vcl/outdev.hxx:231
- enum DrawModeFlags WhiteFill
-include/vcl/outdev.hxx:232
- enum DrawModeFlags WhiteText
-include/vcl/outdev.hxx:233
- enum DrawModeFlags WhiteBitmap
-include/vcl/outdev.hxx:234
- enum DrawModeFlags WhiteGradient
-include/vcl/outdev.hxx:235
- enum DrawModeFlags SettingsLine
-include/vcl/outdev.hxx:236
- enum DrawModeFlags SettingsFill
-include/vcl/outdev.hxx:237
- enum DrawModeFlags SettingsText
-include/vcl/outdev.hxx:238
- enum DrawModeFlags SettingsGradient
-include/vcl/outdev.hxx:239
- enum DrawModeFlags NoTransparency
-include/vcl/outdev.hxx:250
+ enum DrawModeFlags Default
+include/vcl/outdev.hxx:255
enum AntialiasingFlags DisableText
-include/vcl/outdev.hxx:251
- enum AntialiasingFlags EnableB2dDraw
-include/vcl/outdev.hxx:252
+include/vcl/outdev.hxx:257
enum AntialiasingFlags PixelSnapHairline
-include/vcl/outdev.hxx:263
+include/vcl/outdev.hxx:268
enum AddFontSubstituteFlags ALWAYS
-include/vcl/outdev.hxx:264
+include/vcl/outdev.hxx:269
enum AddFontSubstituteFlags ScreenOnly
-include/vcl/outdev.hxx:275
- enum GetDefaultFontFlags OnlyOne
-include/vcl/outdev.hxx:286
- enum InvertFlags Highlight
-include/vcl/outdev.hxx:287
- enum InvertFlags N50
-include/vcl/outdev.hxx:294
- enum OutDevType OUTDEV_DONTKNOW
-include/vcl/outdev.hxx:296
- enum OutDevViewType DontKnow
-include/vcl/outdev.hxx:296
+include/vcl/outdev.hxx:302
enum OutDevViewType SlideShow
-include/vcl/outdevstate.hxx:37
- enum PushFlags LINECOLOR
-include/vcl/outdevstate.hxx:38
- enum PushFlags FILLCOLOR
-include/vcl/outdevstate.hxx:39
- enum PushFlags FONT
-include/vcl/outdevstate.hxx:40
- enum PushFlags TEXTCOLOR
-include/vcl/outdevstate.hxx:41
- enum PushFlags MAPMODE
-include/vcl/outdevstate.hxx:42
- enum PushFlags CLIPREGION
-include/vcl/outdevstate.hxx:43
- enum PushFlags RASTEROP
-include/vcl/outdevstate.hxx:44
- enum PushFlags TEXTFILLCOLOR
-include/vcl/outdevstate.hxx:45
- enum PushFlags TEXTALIGN
-include/vcl/outdevstate.hxx:46
- enum PushFlags REFPOINT
-include/vcl/outdevstate.hxx:47
- enum PushFlags TEXTLINECOLOR
-include/vcl/outdevstate.hxx:48
- enum PushFlags TEXTLAYOUTMODE
-include/vcl/outdevstate.hxx:49
- enum PushFlags TEXTLANGUAGE
-include/vcl/outdevstate.hxx:50
- enum PushFlags OVERLINECOLOR
-include/vcl/outdevstate.hxx:68
- enum ComplexTextLayoutFlags TextOriginLeft
-include/vcl/outdevstate.hxx:69
- enum ComplexTextLayoutFlags TextOriginRight
-include/vcl/pdfwriter.hxx:119
- enum vcl::PDFWriter::StructElement Division
-include/vcl/pdfwriter.hxx:119
- enum vcl::PDFWriter::StructElement Section
-include/vcl/pdfwriter.hxx:119
- enum vcl::PDFWriter::StructElement Part
-include/vcl/pdfwriter.hxx:119
- enum vcl::PDFWriter::StructElement Article
-include/vcl/pdfwriter.hxx:120
- enum vcl::PDFWriter::StructElement TOCI
-include/vcl/pdfwriter.hxx:120
- enum vcl::PDFWriter::StructElement TOC
-include/vcl/pdfwriter.hxx:120
- enum vcl::PDFWriter::StructElement Index
-include/vcl/pdfwriter.hxx:542
+include/vcl/outdev.hxx:302
+ enum OutDevViewType DontKnow
+include/vcl/pdfwriter.hxx:545
enum vcl::PDFWriter::ColorMode DrawColor
include/vcl/ppdparser.hxx:41
enum psp::PPDValueType eSymbol
@@ -4174,78 +3136,16 @@ include/vcl/ppdparser.hxx:41
enum psp::PPDValueType eString
include/vcl/ppdparser.hxx:41
enum psp::PPDValueType eQuoted
-include/vcl/ppdparser.hxx:76
- enum psp::PPDKey::UIType PickMany
-include/vcl/ppdparser.hxx:76
- enum psp::PPDKey::UIType PickOne
-include/vcl/ppdparser.hxx:76
- enum psp::PPDKey::UIType Boolean
include/vcl/ppdparser.hxx:77
enum psp::PPDKey::SetupType Prolog
include/vcl/ppdparser.hxx:77
enum psp::PPDKey::SetupType JCLSetup
include/vcl/ppdparser.hxx:77
enum psp::PPDKey::SetupType ExitServer
-include/vcl/prntypes.hxx:38
- enum PrintQueueFlags Ready
-include/vcl/prntypes.hxx:39
- enum PrintQueueFlags Paused
-include/vcl/prntypes.hxx:40
- enum PrintQueueFlags PendingDeletion
-include/vcl/prntypes.hxx:41
- enum PrintQueueFlags Busy
-include/vcl/prntypes.hxx:42
- enum PrintQueueFlags Initializing
-include/vcl/prntypes.hxx:43
- enum PrintQueueFlags Waiting
-include/vcl/prntypes.hxx:44
- enum PrintQueueFlags WarmingUp
-include/vcl/prntypes.hxx:45
- enum PrintQueueFlags Processing
-include/vcl/prntypes.hxx:46
- enum PrintQueueFlags Printing
-include/vcl/prntypes.hxx:47
- enum PrintQueueFlags Offline
-include/vcl/prntypes.hxx:48
- enum PrintQueueFlags Error
-include/vcl/prntypes.hxx:49
- enum PrintQueueFlags StatusUnknown
-include/vcl/prntypes.hxx:50
- enum PrintQueueFlags PaperJam
-include/vcl/prntypes.hxx:51
- enum PrintQueueFlags PaperOut
-include/vcl/prntypes.hxx:52
- enum PrintQueueFlags ManualFeed
-include/vcl/prntypes.hxx:53
- enum PrintQueueFlags PaperProblem
-include/vcl/prntypes.hxx:54
- enum PrintQueueFlags IOActive
-include/vcl/prntypes.hxx:55
- enum PrintQueueFlags OutputBinFull
-include/vcl/prntypes.hxx:56
- enum PrintQueueFlags TonerLow
-include/vcl/prntypes.hxx:57
- enum PrintQueueFlags NoToner
-include/vcl/prntypes.hxx:58
- enum PrintQueueFlags PagePunt
-include/vcl/prntypes.hxx:59
- enum PrintQueueFlags UserIntervention
-include/vcl/prntypes.hxx:60
- enum PrintQueueFlags OutOfMemory
-include/vcl/prntypes.hxx:61
- enum PrintQueueFlags DoorOpen
-include/vcl/prntypes.hxx:62
- enum PrintQueueFlags PowerSave
-include/vcl/salgtype.hxx:28
+include/vcl/salgtype.hxx:31
enum DeviceFormat DEFAULT
-include/vcl/salgtype.hxx:80
+include/vcl/salgtype.hxx:87
enum SalInvert Highlight
-include/vcl/salgtype.hxx:81
- enum SalInvert N50
-include/vcl/salgtype.hxx:82
- enum SalInvert TrackFrame
-include/vcl/salnativewidgets.hxx:95
- enum ControlType IntroProgress
include/vcl/salnativewidgets.hxx:132
enum ControlPart TrackHorzLeft
include/vcl/salnativewidgets.hxx:133
@@ -4258,6316 +3158,5396 @@ include/vcl/salnativewidgets.hxx:194
enum ControlPart BackgroundWindow
include/vcl/salnativewidgets.hxx:195
enum ControlPart BackgroundDialog
-include/vcl/salnativewidgets.hxx:215
- enum ControlState ENABLED
-include/vcl/salnativewidgets.hxx:216
- enum ControlState FOCUSED
-include/vcl/salnativewidgets.hxx:217
- enum ControlState PRESSED
-include/vcl/salnativewidgets.hxx:218
- enum ControlState ROLLOVER
-include/vcl/salnativewidgets.hxx:219
- enum ControlState DEFAULT
-include/vcl/salnativewidgets.hxx:220
- enum ControlState SELECTED
-include/vcl/salnativewidgets.hxx:221
- enum ControlState DOUBLEBUFFERING
-include/vcl/salnativewidgets.hxx:222
- enum ControlState CACHING_ALLOWED
include/vcl/salnativewidgets.hxx:236
enum ButtonValue DontKnow
-include/vcl/salnativewidgets.hxx:340
+include/vcl/salnativewidgets.hxx:355
enum TabitemFlags LeftAligned
-include/vcl/salnativewidgets.hxx:341
+include/vcl/salnativewidgets.hxx:356
enum TabitemFlags RightAligned
-include/vcl/salnativewidgets.hxx:342
+include/vcl/salnativewidgets.hxx:357
enum TabitemFlags FirstInGroup
-include/vcl/salnativewidgets.hxx:343
+include/vcl/salnativewidgets.hxx:358
enum TabitemFlags LastInGroup
-include/vcl/scheduler.hxx:66
- enum TaskPriority HIGHEST
-include/vcl/scheduler.hxx:67
- enum TaskPriority HIGH
-include/vcl/scheduler.hxx:68
- enum TaskPriority RESIZE
-include/vcl/scheduler.hxx:69
- enum TaskPriority REPAINT
-include/vcl/scheduler.hxx:70
- enum TaskPriority MEDIUM
-include/vcl/scheduler.hxx:71
- enum TaskPriority POST_PAINT
-include/vcl/scheduler.hxx:72
- enum TaskPriority DEFAULT_IDLE
-include/vcl/seleng.hxx:63
- enum SelectionEngineFlags DRG_ENAB
-include/vcl/seleng.hxx:64
- enum SelectionEngineFlags IN_SEL
-include/vcl/seleng.hxx:65
- enum SelectionEngineFlags IN_ADD
-include/vcl/seleng.hxx:66
- enum SelectionEngineFlags ADD_ALW
-include/vcl/seleng.hxx:67
- enum SelectionEngineFlags HAS_ANCH
-include/vcl/seleng.hxx:68
- enum SelectionEngineFlags CMDEVT
-include/vcl/seleng.hxx:69
- enum SelectionEngineFlags WAIT_UPEVT
-include/vcl/seleng.hxx:70
- enum SelectionEngineFlags EXPANDONMOVE
-include/vcl/splitwin.hxx:33
- enum SplitWindowItemFlags Fixed
-include/vcl/splitwin.hxx:34
- enum SplitWindowItemFlags RelativeSize
-include/vcl/splitwin.hxx:35
- enum SplitWindowItemFlags PercentSize
include/vcl/splitwin.hxx:36
enum SplitWindowItemFlags ColSet
-include/vcl/splitwin.hxx:37
- enum SplitWindowItemFlags Invisible
-include/vcl/status.hxx:39
- enum StatusBarItemBits Left
-include/vcl/status.hxx:40
- enum StatusBarItemBits Center
-include/vcl/status.hxx:41
- enum StatusBarItemBits Right
-include/vcl/status.hxx:42
- enum StatusBarItemBits In
-include/vcl/status.hxx:43
- enum StatusBarItemBits Out
-include/vcl/status.hxx:44
- enum StatusBarItemBits Flat
-include/vcl/status.hxx:45
- enum StatusBarItemBits AutoSize
-include/vcl/status.hxx:46
- enum StatusBarItemBits UserDraw
-include/vcl/svgdata.hxx:72
- enum SvgData::State PARSED
-include/vcl/syswin.hxx:49
- enum WindowStateMask X
-include/vcl/syswin.hxx:50
- enum WindowStateMask Y
-include/vcl/syswin.hxx:51
- enum WindowStateMask Width
-include/vcl/syswin.hxx:52
- enum WindowStateMask Height
-include/vcl/syswin.hxx:53
- enum WindowStateMask State
-include/vcl/syswin.hxx:54
- enum WindowStateMask Minimized
+include/vcl/svimpbox.hxx:110
+ enum SvImpLBox::ImageType NodeExpanded
+include/vcl/svimpbox.hxx:111
+ enum SvImpLBox::ImageType NodeCollapsed
+include/vcl/svimpbox.hxx:112
+ enum SvImpLBox::ImageType NodeDontKnow
+include/vcl/svimpbox.hxx:113
+ enum SvImpLBox::ImageType EntryDefExpanded
+include/vcl/svimpbox.hxx:114
+ enum SvImpLBox::ImageType EntryDefCollapsed
+include/vcl/svlbitm.hxx:37
+ enum SvBmp CHECKED
+include/vcl/svlbitm.hxx:38
+ enum SvBmp TRISTATE
+include/vcl/svlbitm.hxx:39
+ enum SvBmp HIUNCHECKED
+include/vcl/svlbitm.hxx:40
+ enum SvBmp HICHECKED
+include/vcl/svlbitm.hxx:41
+ enum SvBmp HITRISTATE
include/vcl/syswin.hxx:55
- enum WindowStateMask MaximizedX
-include/vcl/syswin.hxx:56
- enum WindowStateMask MaximizedY
-include/vcl/syswin.hxx:57
- enum WindowStateMask MaximizedWidth
-include/vcl/syswin.hxx:58
- enum WindowStateMask MaximizedHeight
-include/vcl/syswin.hxx:59
- enum WindowStateMask Pos
-include/vcl/syswin.hxx:60
- enum WindowStateMask All
-include/vcl/syswin.hxx:69
- enum WindowStateState Normal
-include/vcl/syswin.hxx:70
- enum WindowStateState Minimized
-include/vcl/syswin.hxx:71
- enum WindowStateState Maximized
-include/vcl/syswin.hxx:72
- enum WindowStateState Rollup
-include/vcl/syswin.hxx:73
- enum WindowStateState MaximizedHorz
-include/vcl/syswin.hxx:74
- enum WindowStateState MaximizedVert
-include/vcl/syswin.hxx:75
enum WindowStateState SystemMask
-include/vcl/syswin.hxx:137
+include/vcl/syswin.hxx:117
enum MenuBarMode Normal
-include/vcl/toolbox.hxx:51
- enum ToolBoxMenuType ClippedItems
+include/vcl/task.hxx:32
+ enum TaskPriority HIGHEST
+include/vcl/task.hxx:33
+ enum TaskPriority DEFAULT
+include/vcl/task.hxx:34
+ enum TaskPriority HIGH_IDLE
+include/vcl/task.hxx:35
+ enum TaskPriority RESIZE
+include/vcl/task.hxx:36
+ enum TaskPriority REPAINT
+include/vcl/task.hxx:37
+ enum TaskPriority POST_PAINT
include/vcl/toolbox.hxx:52
- enum ToolBoxMenuType Customize
-include/vcl/toolbox.hxx:73
+ enum ToolBoxMenuType ClippedItems
+include/vcl/toolbox.hxx:74
enum ToolBoxLayoutMode Normal
-include/vcl/vclenum.hxx:56
+include/vcl/treelistbox.hxx:79
+ enum SvLBoxTabFlags ADJUST_LEFT
+include/vcl/treelistbox.hxx:81
+ enum SvLBoxTabFlags ADJUST_NUMERIC
+include/vcl/treelistbox.hxx:83
+ enum SvLBoxTabFlags SHOW_SELECTION
+include/vcl/treelistbox.hxx:85
+ enum SvLBoxTabFlags EDITABLE
+include/vcl/treelistbox.hxx:86
+ enum SvLBoxTabFlags PUSHABLE
+include/vcl/treelistbox.hxx:87
+ enum SvLBoxTabFlags INV_ALWAYS
+include/vcl/treelistbox.hxx:171
+ enum DragDropMode ALL
+include/vcl/treelistbox.hxx:181
+ enum SvTreeListBoxFlags IN_EDT
+include/vcl/treelistbox.hxx:182
+ enum SvTreeListBoxFlags EDT_ENABLED
+include/vcl/treelistbox.hxx:183
+ enum SvTreeListBoxFlags IS_EXPANDING
+include/vcl/treelistbox.hxx:184
+ enum SvTreeListBoxFlags IS_TRAVELSELECT
+include/vcl/treelistentry.hxx:36
+ enum SvTLEntryFlags CHILDREN_ON_DEMAND
+include/vcl/treelistentry.hxx:38
+ enum SvTLEntryFlags IN_USE
+include/vcl/treelistentry.hxx:43
+ enum SvTLEntryFlags SEMITRANSPARENT
+include/vcl/vclenum.hxx:36
+ enum MenuItemBits HELP
+include/vcl/vclenum.hxx:40
+ enum MenuItemBits ICON
+include/vcl/vclenum.hxx:55
+ enum ToolBoxItemBits AUTOSIZE
+include/vcl/vclenum.hxx:67
+ enum ToolBoxItemType DONTKNOW
+include/vcl/vclenum.hxx:69
+ enum ButtonType SYMBOLTEXT
+include/vcl/vclenum.hxx:101
+ enum SymbolType MENU
+include/vcl/vclenum.hxx:109
+ enum WindowBorderStyle NORMAL
+include/vcl/vclenum.hxx:134
+ enum WindowStateMask All
+include/vcl/vclenum.hxx:143
+ enum TimeFormat Hour24
+include/vcl/vclenum.hxx:175
enum HatchStyle Single
-include/vcl/vclenum.hxx:72
- enum FontAutoHint Yes
-include/vcl/vclenum.hxx:72
- enum FontAutoHint No
-include/vcl/vclenum.hxx:72
- enum FontAutoHint DontKnow
-include/vcl/vclenum.hxx:74
- enum FontHinting No
-include/vcl/vclenum.hxx:74
- enum FontHinting DontKnow
-include/vcl/vclenum.hxx:74
- enum FontHinting Yes
-include/vcl/vclenum.hxx:76
- enum FontHintStyle Medium
-include/vcl/vclenum.hxx:76
- enum FontHintStyle Slight
-include/vcl/vclenum.hxx:76
- enum FontHintStyle Full
-include/vcl/vclenum.hxx:123
- enum VclResponseType RET_IGNORE
-include/vcl/vclenum.hxx:124
- enum VclResponseType RET_CLOSE
-include/vcl/vclevent.hxx:62
- enum VclEventId ListboxFocus
-include/vcl/vclevent.hxx:67
+include/vcl/vclevent.hxx:72
enum VclEventId ListboxStateUpdate
-include/vcl/vclevent.hxx:91
+include/vcl/vclevent.hxx:96
enum VclEventId ScrollbarEndScroll
-include/vcl/vclevent.hxx:100
+include/vcl/vclevent.hxx:105
enum VclEventId StatusbarClick
-include/vcl/vclevent.hxx:101
+include/vcl/vclevent.hxx:106
enum VclEventId StatusbarDoubleClick
-include/vcl/vclevent.hxx:141
+include/vcl/vclevent.hxx:146
enum VclEventId WindowChildCreated
-include/vcl/virdev.hxx:42
+include/vcl/vectorgraphicdata.hxx:97
+ enum VectorGraphicData::State PARSED
+include/vcl/virdev.hxx:44
enum VirtualDevice::RefDevMode Custom
-include/vcl/window.hxx:112
+include/vcl/window.hxx:116
enum TrackingEventFlags Cancel
-include/vcl/window.hxx:113
+include/vcl/window.hxx:117
enum TrackingEventFlags Key
-include/vcl/window.hxx:114
+include/vcl/window.hxx:118
enum TrackingEventFlags Focus
-include/vcl/window.hxx:115
+include/vcl/window.hxx:119
enum TrackingEventFlags Repeat
-include/vcl/window.hxx:116
+include/vcl/window.hxx:120
enum TrackingEventFlags End
-include/vcl/window.hxx:117
- enum TrackingEventFlags DontCallHdl
-include/vcl/window.hxx:149
- enum PosSizeFlags X
-include/vcl/window.hxx:150
- enum PosSizeFlags Y
-include/vcl/window.hxx:151
- enum PosSizeFlags Width
-include/vcl/window.hxx:152
- enum PosSizeFlags Height
-include/vcl/window.hxx:153
- enum PosSizeFlags Pos
-include/vcl/window.hxx:154
- enum PosSizeFlags Size
-include/vcl/window.hxx:155
+include/vcl/window.hxx:159
enum PosSizeFlags PosSize
-include/vcl/window.hxx:156
+include/vcl/window.hxx:160
enum PosSizeFlags All
-include/vcl/window.hxx:168
- enum ShowFlags NoParentUpdate
-include/vcl/window.hxx:169
- enum ShowFlags NoFocusChange
-include/vcl/window.hxx:170
- enum ShowFlags NoActivate
-include/vcl/window.hxx:171
+include/vcl/window.hxx:175
enum ShowFlags ForegroundTask
-include/vcl/window.hxx:182
- enum ZOrderFlags Before
-include/vcl/window.hxx:183
- enum ZOrderFlags Behind
-include/vcl/window.hxx:184
- enum ZOrderFlags First
-include/vcl/window.hxx:185
- enum ZOrderFlags Last
-include/vcl/window.hxx:196
- enum ActivateModeFlags GrabFocus
-include/vcl/window.hxx:207
- enum ToTopFlags RestoreWhenMin
-include/vcl/window.hxx:208
- enum ToTopFlags ForegroundTask
-include/vcl/window.hxx:209
- enum ToTopFlags NoGrabFocus
-include/vcl/window.hxx:210
- enum ToTopFlags GrabFocusOnly
-include/vcl/window.hxx:222
- enum InvalidateFlags Children
-include/vcl/window.hxx:223
- enum InvalidateFlags NoChildren
-include/vcl/window.hxx:224
- enum InvalidateFlags NoErase
-include/vcl/window.hxx:225
- enum InvalidateFlags Update
-include/vcl/window.hxx:226
- enum InvalidateFlags Transparent
-include/vcl/window.hxx:227
- enum InvalidateFlags NoTransparent
-include/vcl/window.hxx:228
- enum InvalidateFlags NoClipChildren
-include/vcl/window.hxx:239
- enum ValidateFlags Children
-include/vcl/window.hxx:240
- enum ValidateFlags NoChildren
-include/vcl/window.hxx:251
- enum ScrollFlags Clip
-include/vcl/window.hxx:252
- enum ScrollFlags Children
-include/vcl/window.hxx:253
- enum ScrollFlags NoChildren
-include/vcl/window.hxx:254
- enum ScrollFlags UseClipRegion
-include/vcl/window.hxx:255
- enum ScrollFlags Update
-include/vcl/window.hxx:266
- enum ParentClipMode Clip
-include/vcl/window.hxx:267
- enum ParentClipMode NoClip
-include/vcl/window.hxx:277
- enum ShowTrackFlags Small
include/vcl/window.hxx:281
+ enum ShowTrackFlags Small
+include/vcl/window.hxx:285
enum ShowTrackFlags StyleMask
-include/vcl/window.hxx:282
- enum ShowTrackFlags TrackWindow
-include/vcl/window.hxx:283
- enum ShowTrackFlags Clip
-include/vcl/window.hxx:294
- enum StartTrackingFlags KeyInput
-include/vcl/window.hxx:295
- enum StartTrackingFlags KeyMod
-include/vcl/window.hxx:296
- enum StartTrackingFlags NoKeyCancel
-include/vcl/window.hxx:297
- enum StartTrackingFlags ScrollRepeat
-include/vcl/window.hxx:298
- enum StartTrackingFlags ButtonRepeat
include/vcl/window.hxx:299
- enum StartTrackingFlags MouseButtonDown
-include/vcl/window.hxx:300
- enum StartTrackingFlags FocusCancel
-include/vcl/window.hxx:312
+ enum StartTrackingFlags KeyMod
+include/vcl/window.hxx:316
enum StartAutoScrollFlags Vert
-include/vcl/window.hxx:313
+include/vcl/window.hxx:317
enum StartAutoScrollFlags Horz
-include/vcl/window.hxx:336
+include/vcl/window.hxx:340
enum StateChangedType ExtendedStyle
-include/vcl/window.hxx:338
+include/vcl/window.hxx:342
enum StateChangedType Layout
-include/vcl/window.hxx:347
- enum GetFocusFlags Tab
-include/vcl/window.hxx:348
- enum GetFocusFlags CURSOR
-include/vcl/window.hxx:349
- enum GetFocusFlags Mnemonic
-include/vcl/window.hxx:350
- enum GetFocusFlags F6
-include/vcl/window.hxx:351
- enum GetFocusFlags Forward
-include/vcl/window.hxx:352
- enum GetFocusFlags Backward
-include/vcl/window.hxx:353
+include/vcl/window.hxx:357
enum GetFocusFlags Around
-include/vcl/window.hxx:354
- enum GetFocusFlags UniqueMnemonic
-include/vcl/window.hxx:355
- enum GetFocusFlags Init
-include/vcl/window.hxx:356
+include/vcl/window.hxx:360
enum GetFocusFlags FloatWinPopupModeEndCancel
-include/vcl/window.hxx:368
- enum DrawFlags Mono
-include/vcl/window.hxx:369
- enum DrawFlags NoBorder
-include/vcl/window.hxx:370
- enum DrawFlags NoControls
-include/vcl/window.hxx:371
- enum DrawFlags NoDisable
-include/vcl/window.hxx:372
- enum DrawFlags NoMnemonic
-include/vcl/window.hxx:373
+include/vcl/window.hxx:377
enum DrawFlags NoSelection
-include/vcl/window.hxx:374
- enum DrawFlags NoBackground
-include/vcl/window.hxx:386
- enum DialogControlFlags Return
-include/vcl/window.hxx:387
- enum DialogControlFlags WantFocus
-include/vcl/window.hxx:388
- enum DialogControlFlags FloatWinPopupModeEndCancel
-include/vcl/window.hxx:399
+include/vcl/window.hxx:402
enum EndExtTextInputFlags Complete
-include/vcl/window.hxx:459
- enum WindowHitTest Inside
-include/vcl/window.hxx:460
- enum WindowHitTest Transparent
-include/vcl/wrkwin.hxx:36
- enum PresentationFlags HideAllApps
-include/vcl/wrkwin.hxx:37
- enum PresentationFlags NoFullScreen
-include/vcl/wrkwin.hxx:38
- enum PresentationFlags NoAutoShow
-include/xmloff/shapeexport.hxx:50
- enum XMLShapeExportFlags X
-include/xmloff/shapeexport.hxx:51
- enum XMLShapeExportFlags Y
-include/xmloff/shapeexport.hxx:52
- enum XMLShapeExportFlags POSITION
-include/xmloff/shapeexport.hxx:53
- enum XMLShapeExportFlags WIDTH
-include/xmloff/shapeexport.hxx:54
- enum XMLShapeExportFlags HEIGHT
+include/vcl/window.hxx:479
+ enum WindowExtendedStyle DocHidden
include/xmloff/shapeexport.hxx:55
enum XMLShapeExportFlags SIZE
include/xmloff/shapeexport.hxx:57
enum XMLShapeExportFlags NO_CHART_DATA
-include/xmloff/shapeexport.hxx:60
- enum XMLShapeExportFlags NO_WS
include/xmloff/txtimp.hxx:106
enum XMLTextPElemTokens XML_TOK_TEXT_SOFT_PAGE_BREAK
include/xmloff/txtimp.hxx:298
enum XMLTextFrameAttrTokens XML_TOK_TEXT_FRAME_CLASS_ID
include/xmloff/txtimp.hxx:348
enum XMLTextType Footnote
-include/xmloff/txtparae.hxx:69
+include/xmloff/txtparae.hxx:74
enum TextPNS ODF
-include/xmloff/txtparae.hxx:112
+include/xmloff/txtparae.hxx:119
enum XMLTextParagraphExport::FieldmarkType CHECK
-include/xmloff/xmlerror.hxx:81
- enum SvXMLErrorFlags ERROR_OCCURRED
include/xmloff/xmlerror.hxx:82
enum SvXMLErrorFlags WARNING_OCCURRED
-include/xmloff/xmlexp.hxx:94
- enum SvXMLExportFlags MASTERSTYLES
-include/xmloff/xmlexp.hxx:95
- enum SvXMLExportFlags AUTOSTYLES
-include/xmloff/xmlexp.hxx:97
- enum SvXMLExportFlags SCRIPTS
-include/xmloff/xmlexp.hxx:99
- enum SvXMLExportFlags FONTDECLS
-include/xmloff/xmlexp.hxx:100
- enum SvXMLExportFlags EMBEDDED
-include/xmloff/xmlexp.hxx:102
- enum SvXMLExportFlags SAVEBACKWARDCOMPATIBLE
-include/xmloff/xmlexp.hxx:103
- enum SvXMLExportFlags OASIS
-include/xmloff/xmlexp.hxx:104
+include/xmloff/xmlexp.hxx:107
enum SvXMLExportFlags ALL
-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/xmlexppr.hxx:40
- enum SvXmlExportFlags IGN_WS
-include/xmloff/xmlimp.hxx:100
- enum SvXMLImportFlags META
-include/xmloff/xmlimp.hxx:101
- enum SvXMLImportFlags STYLES
-include/xmloff/xmlimp.hxx:102
- enum SvXMLImportFlags MASTERSTYLES
-include/xmloff/xmlimp.hxx:103
- enum SvXMLImportFlags AUTOSTYLES
-include/xmloff/xmlimp.hxx:104
- enum SvXMLImportFlags CONTENT
-include/xmloff/xmlimp.hxx:105
- enum SvXMLImportFlags SCRIPTS
-include/xmloff/xmlimp.hxx:106
- enum SvXMLImportFlags SETTINGS
-include/xmloff/xmlimp.hxx:107
- enum SvXMLImportFlags FONTDECLS
-include/xmloff/xmlimp.hxx:108
- enum SvXMLImportFlags EMBEDDED
-include/xmloff/xmlnumfi.hxx:51
- enum SvXMLDateElementAttributes XML_DEA_SHORT
include/xmloff/xmlnumfi.hxx:52
- enum SvXMLDateElementAttributes XML_DEA_LONG
+ enum SvXMLDateElementAttributes XML_DEA_SHORT
include/xmloff/xmlnumfi.hxx:53
- enum SvXMLDateElementAttributes XML_DEA_TEXTSHORT
+ enum SvXMLDateElementAttributes XML_DEA_LONG
include/xmloff/xmlnumfi.hxx:54
+ enum SvXMLDateElementAttributes XML_DEA_TEXTSHORT
+include/xmloff/xmlnumfi.hxx:55
enum SvXMLDateElementAttributes XML_DEA_TEXTLONG
-include/xmloff/xmltoken.hxx:53
- enum xmloff::token::XMLTokenEnum XML_CDATA
+include/xmloff/xmltoken.hxx:50
+ enum xmloff::token::XMLTokenEnum XML_TOKEN_START
include/xmloff/xmltoken.hxx:54
- enum xmloff::token::XMLTokenEnum XML_WS
+ enum xmloff::token::XMLTokenEnum XML_CDATA
include/xmloff/xmltoken.hxx:55
- enum xmloff::token::XMLTokenEnum XML_XML
+ enum xmloff::token::XMLTokenEnum XML_WS
include/xmloff/xmltoken.hxx:56
- enum xmloff::token::XMLTokenEnum XML_XMLNS
+ enum xmloff::token::XMLTokenEnum XML_XML
include/xmloff/xmltoken.hxx:57
- enum xmloff::token::XMLTokenEnum XML_XML_PI
+ enum xmloff::token::XMLTokenEnum XML_XMLNS
include/xmloff/xmltoken.hxx:58
- enum xmloff::token::XMLTokenEnum XML_XML_DOCTYPE_PREFIX
+ enum xmloff::token::XMLTokenEnum XML_XML_PI
include/xmloff/xmltoken.hxx:59
+ enum xmloff::token::XMLTokenEnum XML_XML_DOCTYPE_PREFIX
+include/xmloff/xmltoken.hxx:60
enum xmloff::token::XMLTokenEnum XML_XML_DOCTYPE_SUFFIX
-include/xmloff/xmltoken.hxx:62
- enum xmloff::token::XMLTokenEnum XML_N_XML
include/xmloff/xmltoken.hxx:63
- enum xmloff::token::XMLTokenEnum XML_NP_OFFICE
-include/xmloff/xmltoken.hxx:64
- enum xmloff::token::XMLTokenEnum XML_N_OFFICE
-include/xmloff/xmltoken.hxx:65
- enum xmloff::token::XMLTokenEnum XML_N_OFFICE_OLD
-include/xmloff/xmltoken.hxx:66
- enum xmloff::token::XMLTokenEnum XML_NP_META
-include/xmloff/xmltoken.hxx:67
- enum xmloff::token::XMLTokenEnum XML_N_META
-include/xmloff/xmltoken.hxx:68
- enum xmloff::token::XMLTokenEnum XML_N_META_OLD
-include/xmloff/xmltoken.hxx:69
- enum xmloff::token::XMLTokenEnum XML_NP_STYLE
-include/xmloff/xmltoken.hxx:70
- enum xmloff::token::XMLTokenEnum XML_N_STYLE
-include/xmloff/xmltoken.hxx:71
- enum xmloff::token::XMLTokenEnum XML_N_STYLE_OLD
-include/xmloff/xmltoken.hxx:72
- enum xmloff::token::XMLTokenEnum XML_NP_NUMBER
-include/xmloff/xmltoken.hxx:73
- enum xmloff::token::XMLTokenEnum XML_N_NUMBER
-include/xmloff/xmltoken.hxx:74
- enum xmloff::token::XMLTokenEnum XML_N_NUMBER_OLD
-include/xmloff/xmltoken.hxx:75
- enum xmloff::token::XMLTokenEnum XML_NP_TEXT
-include/xmloff/xmltoken.hxx:76
- enum xmloff::token::XMLTokenEnum XML_N_TEXT
-include/xmloff/xmltoken.hxx:77
- enum xmloff::token::XMLTokenEnum XML_N_TEXT_OLD
-include/xmloff/xmltoken.hxx:78
- enum xmloff::token::XMLTokenEnum XML_NP_TABLE
-include/xmloff/xmltoken.hxx:79
- enum xmloff::token::XMLTokenEnum XML_N_TABLE
-include/xmloff/xmltoken.hxx:80
- enum xmloff::token::XMLTokenEnum XML_N_TABLE_OLD
-include/xmloff/xmltoken.hxx:81
- enum xmloff::token::XMLTokenEnum XML_NP_DRAW
-include/xmloff/xmltoken.hxx:82
- enum xmloff::token::XMLTokenEnum XML_N_DRAW
-include/xmloff/xmltoken.hxx:83
- enum xmloff::token::XMLTokenEnum XML_NP_DR3D
-include/xmloff/xmltoken.hxx:84
- enum xmloff::token::XMLTokenEnum XML_N_DR3D
-include/xmloff/xmltoken.hxx:85
- enum xmloff::token::XMLTokenEnum XML_N_DRAW_OLD
-include/xmloff/xmltoken.hxx:86
- enum xmloff::token::XMLTokenEnum XML_NP_PRESENTATION
-include/xmloff/xmltoken.hxx:87
- enum xmloff::token::XMLTokenEnum XML_N_PRESENTATION
-include/xmloff/xmltoken.hxx:88
- enum xmloff::token::XMLTokenEnum XML_N_PRESENTATION_OLD
-include/xmloff/xmltoken.hxx:89
- enum xmloff::token::XMLTokenEnum XML_NP_CHART
-include/xmloff/xmltoken.hxx:90
- enum xmloff::token::XMLTokenEnum XML_N_CHART
-include/xmloff/xmltoken.hxx:91
- enum xmloff::token::XMLTokenEnum XML_NP_CONFIG
-include/xmloff/xmltoken.hxx:92
- enum xmloff::token::XMLTokenEnum XML_N_CONFIG
-include/xmloff/xmltoken.hxx:93
- enum xmloff::token::XMLTokenEnum XML_N_CHART_OLD
-include/xmloff/xmltoken.hxx:94
- enum xmloff::token::XMLTokenEnum XML_NP_FO
-include/xmloff/xmltoken.hxx:95
- enum xmloff::token::XMLTokenEnum XML_N_FO_OLD
-include/xmloff/xmltoken.hxx:96
- enum xmloff::token::XMLTokenEnum XML_N_FO
-include/xmloff/xmltoken.hxx:97
- enum xmloff::token::XMLTokenEnum XML_NP_XLINK
-include/xmloff/xmltoken.hxx:98
- enum xmloff::token::XMLTokenEnum XML_N_XLINK
-include/xmloff/xmltoken.hxx:99
- enum xmloff::token::XMLTokenEnum XML_N_XLINK_OLD
-include/xmloff/xmltoken.hxx:100
- enum xmloff::token::XMLTokenEnum XML_NP_DC
-include/xmloff/xmltoken.hxx:101
- enum xmloff::token::XMLTokenEnum XML_N_DC
-include/xmloff/xmltoken.hxx:102
- enum xmloff::token::XMLTokenEnum XML_NP_SVG
-include/xmloff/xmltoken.hxx:103
- enum xmloff::token::XMLTokenEnum XML_N_SVG
-include/xmloff/xmltoken.hxx:104
- enum xmloff::token::XMLTokenEnum XML_NP_FORM
-include/xmloff/xmltoken.hxx:105
- enum xmloff::token::XMLTokenEnum XML_N_FORM
-include/xmloff/xmltoken.hxx:106
- enum xmloff::token::XMLTokenEnum XML_NP_SCRIPT
-include/xmloff/xmltoken.hxx:107
- enum xmloff::token::XMLTokenEnum XML_N_SCRIPT
-include/xmloff/xmltoken.hxx:108
- enum xmloff::token::XMLTokenEnum XML_NP_XFORMS_1_0
-include/xmloff/xmltoken.hxx:109
- enum xmloff::token::XMLTokenEnum XML_N_XFORMS_1_0
-include/xmloff/xmltoken.hxx:110
- enum xmloff::token::XMLTokenEnum XML_NP_XSD
-include/xmloff/xmltoken.hxx:111
- enum xmloff::token::XMLTokenEnum XML_N_XSD
-include/xmloff/xmltoken.hxx:112
- enum xmloff::token::XMLTokenEnum XML_NP_XSI
-include/xmloff/xmltoken.hxx:113
- enum xmloff::token::XMLTokenEnum XML_N_XSI
-include/xmloff/xmltoken.hxx:115
- enum xmloff::token::XMLTokenEnum XML_NP_BLOCK_LIST
-include/xmloff/xmltoken.hxx:116
- enum xmloff::token::XMLTokenEnum XML_N_BLOCK_LIST
-include/xmloff/xmltoken.hxx:118
- enum xmloff::token::XMLTokenEnum XML_NP_MATH
-include/xmloff/xmltoken.hxx:119
- enum xmloff::token::XMLTokenEnum XML_N_MATH
-include/xmloff/xmltoken.hxx:121
- enum xmloff::token::XMLTokenEnum XML_NP_VERSIONS_LIST
-include/xmloff/xmltoken.hxx:122
- enum xmloff::token::XMLTokenEnum XML_N_VERSIONS_LIST
-include/xmloff/xmltoken.hxx:125
- enum xmloff::token::XMLTokenEnum XML_NP_OF
-include/xmloff/xmltoken.hxx:126
- enum xmloff::token::XMLTokenEnum XML_N_OF
-include/xmloff/xmltoken.hxx:129
- enum xmloff::token::XMLTokenEnum XML_NP_XHTML
-include/xmloff/xmltoken.hxx:130
- enum xmloff::token::XMLTokenEnum XML_N_XHTML
-include/xmloff/xmltoken.hxx:131
- enum xmloff::token::XMLTokenEnum XML_NP_GRDDL
-include/xmloff/xmltoken.hxx:132
- enum xmloff::token::XMLTokenEnum XML_N_GRDDL
-include/xmloff/xmltoken.hxx:135
- enum xmloff::token::XMLTokenEnum XML_NP_OFFICE_EXT
-include/xmloff/xmltoken.hxx:136
- enum xmloff::token::XMLTokenEnum XML_N_OFFICE_EXT
-include/xmloff/xmltoken.hxx:139
- enum xmloff::token::XMLTokenEnum XML_NP_FORMX
-include/xmloff/xmltoken.hxx:140
- enum xmloff::token::XMLTokenEnum XML_N_FORMX
-include/xmloff/xmltoken.hxx:142
- enum xmloff::token::XMLTokenEnum XML_NP_TABLE_EXT
-include/xmloff/xmltoken.hxx:143
- enum xmloff::token::XMLTokenEnum XML_N_TABLE_EXT
-include/xmloff/xmltoken.hxx:145
- enum xmloff::token::XMLTokenEnum XML_NP_DRAW_EXT
-include/xmloff/xmltoken.hxx:146
- enum xmloff::token::XMLTokenEnum XML_N_DRAW_EXT
-include/xmloff/xmltoken.hxx:149
- enum xmloff::token::XMLTokenEnum XML_NP_CSS3TEXT
-include/xmloff/xmltoken.hxx:150
- enum xmloff::token::XMLTokenEnum XML_N_CSS3TEXT
-include/xmloff/xmltoken.hxx:153
- enum xmloff::token::XMLTokenEnum XML_NP_CALC_EXT
-include/xmloff/xmltoken.hxx:154
- enum xmloff::token::XMLTokenEnum XML_N_CALC_EXT
-include/xmloff/xmltoken.hxx:156
- enum xmloff::token::XMLTokenEnum XML_NP_LO_EXT
-include/xmloff/xmltoken.hxx:157
- enum xmloff::token::XMLTokenEnum XML_N_LO_EXT
-include/xmloff/xmltoken.hxx:160
- enum xmloff::token::XMLTokenEnum XML_UNIT_MM
+ enum xmloff::token::XMLTokenEnum XML_N_XML
include/xmloff/xmltoken.hxx:161
- enum xmloff::token::XMLTokenEnum XML_UNIT_M
+ enum xmloff::token::XMLTokenEnum XML_UNIT_MM
include/xmloff/xmltoken.hxx:162
- enum xmloff::token::XMLTokenEnum XML_UNIT_KM
+ enum xmloff::token::XMLTokenEnum XML_UNIT_M
include/xmloff/xmltoken.hxx:163
- enum xmloff::token::XMLTokenEnum XML_UNIT_CM
+ enum xmloff::token::XMLTokenEnum XML_UNIT_KM
include/xmloff/xmltoken.hxx:164
- enum xmloff::token::XMLTokenEnum XML_UNIT_PT
+ enum xmloff::token::XMLTokenEnum XML_UNIT_CM
include/xmloff/xmltoken.hxx:165
- enum xmloff::token::XMLTokenEnum XML_UNIT_PC
+ enum xmloff::token::XMLTokenEnum XML_UNIT_PT
include/xmloff/xmltoken.hxx:166
- enum xmloff::token::XMLTokenEnum XML_UNIT_FOOT
+ enum xmloff::token::XMLTokenEnum XML_UNIT_PC
include/xmloff/xmltoken.hxx:167
- enum xmloff::token::XMLTokenEnum XML_UNIT_MILES
+ enum xmloff::token::XMLTokenEnum XML_UNIT_FOOT
include/xmloff/xmltoken.hxx:168
+ enum xmloff::token::XMLTokenEnum XML_UNIT_MILES
+include/xmloff/xmltoken.hxx:169
enum xmloff::token::XMLTokenEnum XML_UNIT_INCH
-include/xmloff/xmltoken.hxx:171
- enum xmloff::token::XMLTokenEnum XML_1
include/xmloff/xmltoken.hxx:172
- enum xmloff::token::XMLTokenEnum XML_10
+ enum xmloff::token::XMLTokenEnum XML_1
include/xmloff/xmltoken.hxx:173
- enum xmloff::token::XMLTokenEnum XML_2
+ enum xmloff::token::XMLTokenEnum XML_10
include/xmloff/xmltoken.hxx:174
- enum xmloff::token::XMLTokenEnum XML_3
+ enum xmloff::token::XMLTokenEnum XML_2
include/xmloff/xmltoken.hxx:175
- enum xmloff::token::XMLTokenEnum XML_4
+ enum xmloff::token::XMLTokenEnum XML_3
include/xmloff/xmltoken.hxx:176
- enum xmloff::token::XMLTokenEnum XML_5
+ enum xmloff::token::XMLTokenEnum XML_4
include/xmloff/xmltoken.hxx:177
- enum xmloff::token::XMLTokenEnum XML_6
+ enum xmloff::token::XMLTokenEnum XML_5
include/xmloff/xmltoken.hxx:178
- enum xmloff::token::XMLTokenEnum XML_7
+ enum xmloff::token::XMLTokenEnum XML_6
include/xmloff/xmltoken.hxx:179
- enum xmloff::token::XMLTokenEnum XML_8
+ enum xmloff::token::XMLTokenEnum XML_7
include/xmloff/xmltoken.hxx:180
- enum xmloff::token::XMLTokenEnum XML_9
+ enum xmloff::token::XMLTokenEnum XML_8
include/xmloff/xmltoken.hxx:181
- enum xmloff::token::XMLTokenEnum XML_A_UPCASE
+ enum xmloff::token::XMLTokenEnum XML_9
include/xmloff/xmltoken.hxx:182
- enum xmloff::token::XMLTokenEnum XML_I_UPCASE
+ enum xmloff::token::XMLTokenEnum XML_A_UPCASE
include/xmloff/xmltoken.hxx:183
- enum xmloff::token::XMLTokenEnum XML_IBM437
+ enum xmloff::token::XMLTokenEnum XML_I_UPCASE
include/xmloff/xmltoken.hxx:184
- enum xmloff::token::XMLTokenEnum XML_IBM850
+ enum xmloff::token::XMLTokenEnum XML_IBM437
include/xmloff/xmltoken.hxx:185
- enum xmloff::token::XMLTokenEnum XML_IBM860
+ enum xmloff::token::XMLTokenEnum XML_IBM850
include/xmloff/xmltoken.hxx:186
- enum xmloff::token::XMLTokenEnum XML_IBM861
+ enum xmloff::token::XMLTokenEnum XML_IBM860
include/xmloff/xmltoken.hxx:187
- enum xmloff::token::XMLTokenEnum XML_IBM863
+ enum xmloff::token::XMLTokenEnum XML_IBM861
include/xmloff/xmltoken.hxx:188
- enum xmloff::token::XMLTokenEnum XML_IBM865
+ enum xmloff::token::XMLTokenEnum XML_IBM863
include/xmloff/xmltoken.hxx:189
- enum xmloff::token::XMLTokenEnum XML_ISO_8859_1
+ enum xmloff::token::XMLTokenEnum XML_IBM865
include/xmloff/xmltoken.hxx:190
- enum xmloff::token::XMLTokenEnum XML_OLE2
+ enum xmloff::token::XMLTokenEnum XML_ISO_8859_1
include/xmloff/xmltoken.hxx:191
- enum xmloff::token::XMLTokenEnum XML__COLON
+ enum xmloff::token::XMLTokenEnum XML_OLE2
include/xmloff/xmltoken.hxx:192
- enum xmloff::token::XMLTokenEnum XML__EMPTY
+ enum xmloff::token::XMLTokenEnum XML__COLON
include/xmloff/xmltoken.hxx:193
+ enum xmloff::token::XMLTokenEnum XML__EMPTY
+include/xmloff/xmltoken.hxx:194
enum xmloff::token::XMLTokenEnum XML__UNKNOWN_
-include/xmloff/xmltoken.hxx:195
- enum xmloff::token::XMLTokenEnum XML_A
-include/xmloff/xmltoken.hxx:196
- enum xmloff::token::XMLTokenEnum XML_ABBREVIATED_NAME
include/xmloff/xmltoken.hxx:197
- enum xmloff::token::XMLTokenEnum XML_ABOVE
+ enum xmloff::token::XMLTokenEnum XML_ABBREVIATED_NAME
include/xmloff/xmltoken.hxx:198
- enum xmloff::token::XMLTokenEnum XML_ABS
+ enum xmloff::token::XMLTokenEnum XML_ABOVE
include/xmloff/xmltoken.hxx:199
- enum xmloff::token::XMLTokenEnum XML_ACCENT
+ enum xmloff::token::XMLTokenEnum XML_ABS
include/xmloff/xmltoken.hxx:200
- enum xmloff::token::XMLTokenEnum XML_ACCENTUNDER
+ enum xmloff::token::XMLTokenEnum XML_ACCENT
include/xmloff/xmltoken.hxx:201
- enum xmloff::token::XMLTokenEnum XML_ACCEPTANCE_STATE
-include/xmloff/xmltoken.hxx:202
+ enum xmloff::token::XMLTokenEnum XML_ACCENTUNDER
+include/xmloff/xmltoken.hxx:203
enum xmloff::token::XMLTokenEnum XML_ACCEPTED
-include/xmloff/xmltoken.hxx:204
- enum xmloff::token::XMLTokenEnum XML_ACTIVE
include/xmloff/xmltoken.hxx:205
- enum xmloff::token::XMLTokenEnum XML_ACTIVE_SPLIT_RANGE
+ enum xmloff::token::XMLTokenEnum XML_ACTIVE
include/xmloff/xmltoken.hxx:206
- enum xmloff::token::XMLTokenEnum XML_ACTIVE_TABLE
+ enum xmloff::token::XMLTokenEnum XML_ACTIVE_SPLIT_RANGE
include/xmloff/xmltoken.hxx:207
+ enum xmloff::token::XMLTokenEnum XML_ACTIVE_TABLE
+include/xmloff/xmltoken.hxx:208
enum xmloff::token::XMLTokenEnum XML_ACTUATE
-include/xmloff/xmltoken.hxx:209
- enum xmloff::token::XMLTokenEnum XML_ADD_IN_NAME
include/xmloff/xmltoken.hxx:210
- enum xmloff::token::XMLTokenEnum XML_ADDRESS
+ enum xmloff::token::XMLTokenEnum XML_ADD_IN_NAME
include/xmloff/xmltoken.hxx:211
- enum xmloff::token::XMLTokenEnum XML_ADJUSTMENT
+ enum xmloff::token::XMLTokenEnum XML_ADDRESS
include/xmloff/xmltoken.hxx:212
- enum xmloff::token::XMLTokenEnum XML_ALGORITHM
-include/xmloff/xmltoken.hxx:213
- enum xmloff::token::XMLTokenEnum XML_ALIGN
+ enum xmloff::token::XMLTokenEnum XML_ADJUSTMENT
include/xmloff/xmltoken.hxx:214
- enum xmloff::token::XMLTokenEnum XML_ALL
+ enum xmloff::token::XMLTokenEnum XML_ALIGN
include/xmloff/xmltoken.hxx:215
- enum xmloff::token::XMLTokenEnum XML_ALLOW_EMPTY_CELL
-include/xmloff/xmltoken.hxx:216
- enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX
+ enum xmloff::token::XMLTokenEnum XML_ALL
include/xmloff/xmltoken.hxx:217
- enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_AUTO_MARK_FILE
+ enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX
include/xmloff/xmltoken.hxx:218
- enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_ENTRY_TEMPLATE
+ enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_AUTO_MARK_FILE
include/xmloff/xmltoken.hxx:219
- enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_MARK
+ enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_ENTRY_TEMPLATE
include/xmloff/xmltoken.hxx:220
- enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_MARK_END
+ enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_MARK
include/xmloff/xmltoken.hxx:221
- enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_MARK_START
+ enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_MARK_END
include/xmloff/xmltoken.hxx:222
- enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_SOURCE
+ enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_MARK_START
include/xmloff/xmltoken.hxx:223
- enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_SEPARATORS
+ enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_INDEX_SOURCE
include/xmloff/xmltoken.hxx:224
- enum xmloff::token::XMLTokenEnum XML_ALTERNATE
+ enum xmloff::token::XMLTokenEnum XML_ALPHABETICAL_SEPARATORS
include/xmloff/xmltoken.hxx:225
- enum xmloff::token::XMLTokenEnum XML_AM_PM
+ enum xmloff::token::XMLTokenEnum XML_ALTERNATE
include/xmloff/xmltoken.hxx:226
- enum xmloff::token::XMLTokenEnum XML_AMBIENT_COLOR
+ enum xmloff::token::XMLTokenEnum XML_AM_PM
include/xmloff/xmltoken.hxx:227
- enum xmloff::token::XMLTokenEnum XML_ANCHOR_PAGE_NUMBER
+ enum xmloff::token::XMLTokenEnum XML_AMBIENT_COLOR
include/xmloff/xmltoken.hxx:228
- enum xmloff::token::XMLTokenEnum XML_ANCHOR_TYPE
+ enum xmloff::token::XMLTokenEnum XML_ANCHOR_PAGE_NUMBER
include/xmloff/xmltoken.hxx:229
- enum xmloff::token::XMLTokenEnum XML_AND
+ enum xmloff::token::XMLTokenEnum XML_ANCHOR_TYPE
include/xmloff/xmltoken.hxx:230
- enum xmloff::token::XMLTokenEnum XML_ANIMATION
+ enum xmloff::token::XMLTokenEnum XML_AND
include/xmloff/xmltoken.hxx:231
- enum xmloff::token::XMLTokenEnum XML_ANIMATION_DELAY
+ enum xmloff::token::XMLTokenEnum XML_ANIMATION
include/xmloff/xmltoken.hxx:232
- enum xmloff::token::XMLTokenEnum XML_ANIMATION_DIRECTION
+ enum xmloff::token::XMLTokenEnum XML_ANIMATION_DELAY
include/xmloff/xmltoken.hxx:233
- enum xmloff::token::XMLTokenEnum XML_ANIMATION_REPEAT
+ enum xmloff::token::XMLTokenEnum XML_ANIMATION_DIRECTION
include/xmloff/xmltoken.hxx:234
- enum xmloff::token::XMLTokenEnum XML_ANIMATION_START_INSIDE
+ enum xmloff::token::XMLTokenEnum XML_ANIMATION_REPEAT
include/xmloff/xmltoken.hxx:235
- enum xmloff::token::XMLTokenEnum XML_ANIMATION_STEPS
+ enum xmloff::token::XMLTokenEnum XML_ANIMATION_START_INSIDE
include/xmloff/xmltoken.hxx:236
- enum xmloff::token::XMLTokenEnum XML_ANIMATION_STOP_INSIDE
+ enum xmloff::token::XMLTokenEnum XML_ANIMATION_STEPS
include/xmloff/xmltoken.hxx:237
- enum xmloff::token::XMLTokenEnum XML_ANIMATIONS
+ enum xmloff::token::XMLTokenEnum XML_ANIMATION_STOP_INSIDE
include/xmloff/xmltoken.hxx:238
- enum xmloff::token::XMLTokenEnum XML_ANNOTATION
+ enum xmloff::token::XMLTokenEnum XML_ANIMATIONS
include/xmloff/xmltoken.hxx:239
- enum xmloff::token::XMLTokenEnum XML_ANNOTATION_END
+ enum xmloff::token::XMLTokenEnum XML_ANNOTATION
include/xmloff/xmltoken.hxx:240
- enum xmloff::token::XMLTokenEnum XML_ANNOTATIONS
+ enum xmloff::token::XMLTokenEnum XML_ANNOTATION_END
include/xmloff/xmltoken.hxx:241
- enum xmloff::token::XMLTokenEnum XML_ANNOTE
+ enum xmloff::token::XMLTokenEnum XML_ANNOTATIONS
include/xmloff/xmltoken.hxx:242
- enum xmloff::token::XMLTokenEnum XML_APPEAR
+ enum xmloff::token::XMLTokenEnum XML_ANNOTE
include/xmloff/xmltoken.hxx:243
- enum xmloff::token::XMLTokenEnum XML_APPLET
+ enum xmloff::token::XMLTokenEnum XML_APPEAR
include/xmloff/xmltoken.hxx:244
- enum xmloff::token::XMLTokenEnum XML_APPLET_NAME
+ enum xmloff::token::XMLTokenEnum XML_APPLET
include/xmloff/xmltoken.hxx:245
- enum xmloff::token::XMLTokenEnum XML_APPLICATION_DATA
-include/xmloff/xmltoken.hxx:246
- enum xmloff::token::XMLTokenEnum XML_APPLICATION_XML
+ enum xmloff::token::XMLTokenEnum XML_APPLET_NAME
include/xmloff/xmltoken.hxx:247
- enum xmloff::token::XMLTokenEnum XML_APPLY
+ enum xmloff::token::XMLTokenEnum XML_APPLICATION_XML
include/xmloff/xmltoken.hxx:248
- enum xmloff::token::XMLTokenEnum XML_APPLY_DESIGN_MODE
+ enum xmloff::token::XMLTokenEnum XML_APPLY
include/xmloff/xmltoken.hxx:249
- enum xmloff::token::XMLTokenEnum XML_APPLY_STYLE_NAME
-include/xmloff/xmltoken.hxx:250
- enum xmloff::token::XMLTokenEnum XML_AQUA
+ enum xmloff::token::XMLTokenEnum XML_APPLY_DESIGN_MODE
include/xmloff/xmltoken.hxx:251
- enum xmloff::token::XMLTokenEnum XML_ARC
+ enum xmloff::token::XMLTokenEnum XML_AQUA
include/xmloff/xmltoken.hxx:252
- enum xmloff::token::XMLTokenEnum XML_ARCCOS
+ enum xmloff::token::XMLTokenEnum XML_ARC
include/xmloff/xmltoken.hxx:253
- enum xmloff::token::XMLTokenEnum XML_ARCHIVE
+ enum xmloff::token::XMLTokenEnum XML_ARCCOS
include/xmloff/xmltoken.hxx:254
- enum xmloff::token::XMLTokenEnum XML_ARCSIN
+ enum xmloff::token::XMLTokenEnum XML_ARCHIVE
include/xmloff/xmltoken.hxx:255
- enum xmloff::token::XMLTokenEnum XML_ARCTAN
+ enum xmloff::token::XMLTokenEnum XML_ARCSIN
include/xmloff/xmltoken.hxx:256
+ enum xmloff::token::XMLTokenEnum XML_ARCTAN
+include/xmloff/xmltoken.hxx:257
enum xmloff::token::XMLTokenEnum XML_AREA
-include/xmloff/xmltoken.hxx:260
- enum xmloff::token::XMLTokenEnum XML_ARTICLE
include/xmloff/xmltoken.hxx:261
- enum xmloff::token::XMLTokenEnum XML_AS_CHAR
+ enum xmloff::token::XMLTokenEnum XML_ARTICLE
include/xmloff/xmltoken.hxx:262
- enum xmloff::token::XMLTokenEnum XML_ASCENDING
+ enum xmloff::token::XMLTokenEnum XML_AS_CHAR
include/xmloff/xmltoken.hxx:263
- enum xmloff::token::XMLTokenEnum XML_ATTACHED_AXIS
+ enum xmloff::token::XMLTokenEnum XML_ASCENDING
include/xmloff/xmltoken.hxx:264
- enum xmloff::token::XMLTokenEnum XML_ATTRACTIVE
+ enum xmloff::token::XMLTokenEnum XML_ATTACHED_AXIS
include/xmloff/xmltoken.hxx:265
- enum xmloff::token::XMLTokenEnum XML_AUTHOR
+ enum xmloff::token::XMLTokenEnum XML_ATTRACTIVE
include/xmloff/xmltoken.hxx:266
- enum xmloff::token::XMLTokenEnum XML_AUTHOR_INITIALS
+ enum xmloff::token::XMLTokenEnum XML_AUTHOR
include/xmloff/xmltoken.hxx:267
- enum xmloff::token::XMLTokenEnum XML_AUTHOR_NAME
+ enum xmloff::token::XMLTokenEnum XML_AUTHOR_INITIALS
include/xmloff/xmltoken.hxx:268
- enum xmloff::token::XMLTokenEnum XML_AUTO
+ enum xmloff::token::XMLTokenEnum XML_AUTHOR_NAME
include/xmloff/xmltoken.hxx:269
- enum xmloff::token::XMLTokenEnum XML_AUTO_GROW_HEIGHT
+ enum xmloff::token::XMLTokenEnum XML_AUTO
include/xmloff/xmltoken.hxx:270
- enum xmloff::token::XMLTokenEnum XML_AUTO_GROW_WIDTH
+ enum xmloff::token::XMLTokenEnum XML_AUTO_COMPLETE
include/xmloff/xmltoken.hxx:271
- enum xmloff::token::XMLTokenEnum XML_AUTO_RELOAD
+ enum xmloff::token::XMLTokenEnum XML_AUTO_GROW_HEIGHT
include/xmloff/xmltoken.hxx:272
- enum xmloff::token::XMLTokenEnum XML_AUTO_TEXT
+ enum xmloff::token::XMLTokenEnum XML_AUTO_GROW_WIDTH
include/xmloff/xmltoken.hxx:273
- enum xmloff::token::XMLTokenEnum XML_AUTO_TEXT_EVENTS
+ enum xmloff::token::XMLTokenEnum XML_AUTO_RELOAD
include/xmloff/xmltoken.hxx:274
- enum xmloff::token::XMLTokenEnum XML_AUTO_TEXT_GROUP
+ enum xmloff::token::XMLTokenEnum XML_AUTO_TEXT
include/xmloff/xmltoken.hxx:275
- enum xmloff::token::XMLTokenEnum XML_AUTO_TEXT_INDENT
+ enum xmloff::token::XMLTokenEnum XML_AUTO_TEXT_EVENTS
include/xmloff/xmltoken.hxx:276
- enum xmloff::token::XMLTokenEnum XML_AUTO_UPDATE
+ enum xmloff::token::XMLTokenEnum XML_AUTO_TEXT_GROUP
include/xmloff/xmltoken.hxx:277
- enum xmloff::token::XMLTokenEnum XML_AUTOMATIC
+ enum xmloff::token::XMLTokenEnum XML_AUTO_TEXT_INDENT
include/xmloff/xmltoken.hxx:278
- enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_FIND_LABELS
+ enum xmloff::token::XMLTokenEnum XML_AUTO_UPDATE
include/xmloff/xmltoken.hxx:279
- enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_FOCUS
-include/xmloff/xmltoken.hxx:280
- enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_ORDER
+ enum xmloff::token::XMLTokenEnum XML_AUTOMATIC
include/xmloff/xmltoken.hxx:281
- enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_STYLES
+ enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_FOCUS
include/xmloff/xmltoken.hxx:282
- enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_UPDATE
+ enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_ORDER
include/xmloff/xmltoken.hxx:283
- enum xmloff::token::XMLTokenEnum XML_AUTOSIZE
+ enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_STYLES
include/xmloff/xmltoken.hxx:284
- enum xmloff::token::XMLTokenEnum XML_AVERAGE
+ enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_UPDATE
include/xmloff/xmltoken.hxx:285
- enum xmloff::token::XMLTokenEnum XML_AXIS
+ enum xmloff::token::XMLTokenEnum XML_AUTOSIZE
include/xmloff/xmltoken.hxx:286
- enum xmloff::token::XMLTokenEnum XML_AXIS_COLOR
+ enum xmloff::token::XMLTokenEnum XML_AVERAGE
include/xmloff/xmltoken.hxx:287
- enum xmloff::token::XMLTokenEnum XML_BACK_SCALE
-include/xmloff/xmltoken.hxx:288
- enum xmloff::token::XMLTokenEnum XML_BACKFACE_CULLING
+ enum xmloff::token::XMLTokenEnum XML_AXIS
include/xmloff/xmltoken.hxx:289
- enum xmloff::token::XMLTokenEnum XML_BACKGROUND
+ enum xmloff::token::XMLTokenEnum XML_BACK_SCALE
include/xmloff/xmltoken.hxx:290
- enum xmloff::token::XMLTokenEnum XML_BACKGROUND_COLOR
+ enum xmloff::token::XMLTokenEnum XML_BACKFACE_CULLING
include/xmloff/xmltoken.hxx:291
- enum xmloff::token::XMLTokenEnum XML_BACKGROUND_IMAGE
+ enum xmloff::token::XMLTokenEnum XML_BACKGROUND
include/xmloff/xmltoken.hxx:292
- enum xmloff::token::XMLTokenEnum XML_BACKGROUND_NO_REPEAT
+ enum xmloff::token::XMLTokenEnum XML_BACKGROUND_COLOR
include/xmloff/xmltoken.hxx:293
- enum xmloff::token::XMLTokenEnum XML_BACKGROUND_REPEAT
+ enum xmloff::token::XMLTokenEnum XML_BACKGROUND_IMAGE
include/xmloff/xmltoken.hxx:294
- enum xmloff::token::XMLTokenEnum XML_BACKGROUND_STRETCH
+ enum xmloff::token::XMLTokenEnum XML_BACKGROUND_NO_REPEAT
include/xmloff/xmltoken.hxx:295
- enum xmloff::token::XMLTokenEnum XML_BAR
+ enum xmloff::token::XMLTokenEnum XML_BACKGROUND_REPEAT
include/xmloff/xmltoken.hxx:296
- enum xmloff::token::XMLTokenEnum XML_BASE64BINARY
+ enum xmloff::token::XMLTokenEnum XML_BACKGROUND_STRETCH
include/xmloff/xmltoken.hxx:297
- enum xmloff::token::XMLTokenEnum XML_BASE_CELL_ADDRESS
+ enum xmloff::token::XMLTokenEnum XML_BAR
include/xmloff/xmltoken.hxx:298
- enum xmloff::token::XMLTokenEnum XML_BASELINE
-include/xmloff/xmltoken.hxx:299
- enum xmloff::token::XMLTokenEnum XML_BEFORE_DATE_TIME
+ enum xmloff::token::XMLTokenEnum XML_BASE64BINARY
include/xmloff/xmltoken.hxx:300
- enum xmloff::token::XMLTokenEnum XML_BELOW
+ enum xmloff::token::XMLTokenEnum XML_BASELINE
include/xmloff/xmltoken.hxx:301
- enum xmloff::token::XMLTokenEnum XML_BETWEEN_DATE_TIMES
+ enum xmloff::token::XMLTokenEnum XML_BEFORE_DATE_TIME
include/xmloff/xmltoken.hxx:302
- enum xmloff::token::XMLTokenEnum XML_BEVEL
+ enum xmloff::token::XMLTokenEnum XML_BELOW
include/xmloff/xmltoken.hxx:303
- enum xmloff::token::XMLTokenEnum XML_BEVELLED
+ enum xmloff::token::XMLTokenEnum XML_BETWEEN_DATE_TIMES
include/xmloff/xmltoken.hxx:304
- enum xmloff::token::XMLTokenEnum XML_BIBILIOGRAPHIC_TYPE
+ enum xmloff::token::XMLTokenEnum XML_BEVEL
include/xmloff/xmltoken.hxx:305
- enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY
+ enum xmloff::token::XMLTokenEnum XML_BEVELLED
include/xmloff/xmltoken.hxx:306
- enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_CONFIGURATION
+ enum xmloff::token::XMLTokenEnum XML_BIBILIOGRAPHIC_TYPE
include/xmloff/xmltoken.hxx:307
- enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_DATA_FIELD
+ enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY
include/xmloff/xmltoken.hxx:308
- enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_ENTRY_TEMPLATE
+ enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_CONFIGURATION
include/xmloff/xmltoken.hxx:309
- enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_MARK
+ enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_DATA_FIELD
include/xmloff/xmltoken.hxx:310
- enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_SOURCE
+ enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_ENTRY_TEMPLATE
include/xmloff/xmltoken.hxx:311
- enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_TYPE
+ enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_MARK
include/xmloff/xmltoken.hxx:312
- enum xmloff::token::XMLTokenEnum XML_BIND_STYLES_TO_CONTENT
+ enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_SOURCE
include/xmloff/xmltoken.hxx:313
+ enum xmloff::token::XMLTokenEnum XML_BIBLIOGRAPHY_TYPE
+include/xmloff/xmltoken.hxx:315
enum xmloff::token::XMLTokenEnum XML_BITMAP
-include/xmloff/xmltoken.hxx:314
+include/xmloff/xmltoken.hxx:316
enum xmloff::token::XMLTokenEnum XML_BLACK
-include/xmloff/xmltoken.hxx:315
+include/xmloff/xmltoken.hxx:317
enum xmloff::token::XMLTokenEnum XML_BLEND
-include/xmloff/xmltoken.hxx:316
+include/xmloff/xmltoken.hxx:318
enum xmloff::token::XMLTokenEnum XML_BLINKING
-include/xmloff/xmltoken.hxx:317
+include/xmloff/xmltoken.hxx:319
enum xmloff::token::XMLTokenEnum XML_BLOCK
-include/xmloff/xmltoken.hxx:318
+include/xmloff/xmltoken.hxx:320
enum xmloff::token::XMLTokenEnum XML_BLOCK_LIST
-include/xmloff/xmltoken.hxx:319
+include/xmloff/xmltoken.hxx:321
enum xmloff::token::XMLTokenEnum XML_BLUE
-include/xmloff/xmltoken.hxx:320
- enum xmloff::token::XMLTokenEnum XML_BODY
-include/xmloff/xmltoken.hxx:322
+include/xmloff/xmltoken.hxx:324
enum xmloff::token::XMLTokenEnum XML_BOOK
-include/xmloff/xmltoken.hxx:323
+include/xmloff/xmltoken.hxx:325
enum xmloff::token::XMLTokenEnum XML_BOOKLET
-include/xmloff/xmltoken.hxx:324
+include/xmloff/xmltoken.hxx:326
enum xmloff::token::XMLTokenEnum XML_BOOKMARK
-include/xmloff/xmltoken.hxx:325
+include/xmloff/xmltoken.hxx:327
enum xmloff::token::XMLTokenEnum XML_BOOKMARK_END
-include/xmloff/xmltoken.hxx:326
+include/xmloff/xmltoken.hxx:328
enum xmloff::token::XMLTokenEnum XML_BOOKMARK_REF
-include/xmloff/xmltoken.hxx:327
+include/xmloff/xmltoken.hxx:329
enum xmloff::token::XMLTokenEnum XML_BOOKMARK_START
-include/xmloff/xmltoken.hxx:328
- enum xmloff::token::XMLTokenEnum XML_BOOKTITLE
include/xmloff/xmltoken.hxx:330
+ enum xmloff::token::XMLTokenEnum XML_BOOKTITLE
+include/xmloff/xmltoken.hxx:332
enum xmloff::token::XMLTokenEnum XML_BOOLEAN_STYLE
-include/xmloff/xmltoken.hxx:331
- enum xmloff::token::XMLTokenEnum XML_BOOLEAN_VALUE
-include/xmloff/xmltoken.hxx:333
- enum xmloff::token::XMLTokenEnum XML_BORDER_BOTTOM
include/xmloff/xmltoken.hxx:334
- enum xmloff::token::XMLTokenEnum XML_BORDER_COLOR
+ enum xmloff::token::XMLTokenEnum XML_BORDER
include/xmloff/xmltoken.hxx:335
+ enum xmloff::token::XMLTokenEnum XML_BORDER_BOTTOM
+include/xmloff/xmltoken.hxx:337
enum xmloff::token::XMLTokenEnum XML_BORDER_LEFT
-include/xmloff/xmltoken.hxx:336
+include/xmloff/xmltoken.hxx:338
enum xmloff::token::XMLTokenEnum XML_BORDER_LINE_WIDTH
-include/xmloff/xmltoken.hxx:337
+include/xmloff/xmltoken.hxx:339
enum xmloff::token::XMLTokenEnum XML_BORDER_LINE_WIDTH_BOTTOM
-include/xmloff/xmltoken.hxx:338
+include/xmloff/xmltoken.hxx:340
enum xmloff::token::XMLTokenEnum XML_BORDER_LINE_WIDTH_LEFT
-include/xmloff/xmltoken.hxx:339
+include/xmloff/xmltoken.hxx:341
enum xmloff::token::XMLTokenEnum XML_BORDER_LINE_WIDTH_RIGHT
-include/xmloff/xmltoken.hxx:340
+include/xmloff/xmltoken.hxx:342
enum xmloff::token::XMLTokenEnum XML_BORDER_LINE_WIDTH_TOP
-include/xmloff/xmltoken.hxx:341
+include/xmloff/xmltoken.hxx:343
enum xmloff::token::XMLTokenEnum XML_BORDER_RIGHT
-include/xmloff/xmltoken.hxx:342
- enum xmloff::token::XMLTokenEnum XML_BORDER_TOP
include/xmloff/xmltoken.hxx:344
- enum xmloff::token::XMLTokenEnum XML_BOTTOM
-include/xmloff/xmltoken.hxx:345
- enum xmloff::token::XMLTokenEnum XML_BOTTOM_LEFT
+ enum xmloff::token::XMLTokenEnum XML_BORDER_TOP
include/xmloff/xmltoken.hxx:346
- enum xmloff::token::XMLTokenEnum XML_BOTTOM_PERCENT
+ enum xmloff::token::XMLTokenEnum XML_BOTTOM
include/xmloff/xmltoken.hxx:347
- enum xmloff::token::XMLTokenEnum XML_BOTTOM_RIGHT
+ enum xmloff::token::XMLTokenEnum XML_BOTTOM_LEFT
include/xmloff/xmltoken.hxx:348
- enum xmloff::token::XMLTokenEnum XML_BOTTOM_VALUES
+ enum xmloff::token::XMLTokenEnum XML_BOTTOM_PERCENT
include/xmloff/xmltoken.hxx:349
- enum xmloff::token::XMLTokenEnum XML_BOTTOMARC
+ enum xmloff::token::XMLTokenEnum XML_BOTTOM_RIGHT
include/xmloff/xmltoken.hxx:350
- enum xmloff::token::XMLTokenEnum XML_BOTTOMCIRCLE
+ enum xmloff::token::XMLTokenEnum XML_BOTTOM_VALUES
include/xmloff/xmltoken.hxx:351
- enum xmloff::token::XMLTokenEnum XML_BREAK_AFTER
+ enum xmloff::token::XMLTokenEnum XML_BOTTOMARC
include/xmloff/xmltoken.hxx:352
- enum xmloff::token::XMLTokenEnum XML_BREAK_BEFORE
+ enum xmloff::token::XMLTokenEnum XML_BOTTOMCIRCLE
include/xmloff/xmltoken.hxx:353
- enum xmloff::token::XMLTokenEnum XML_BREAK_INSIDE
+ enum xmloff::token::XMLTokenEnum XML_BOUND_COLUMN
include/xmloff/xmltoken.hxx:354
- enum xmloff::token::XMLTokenEnum XML_BUBBLE
+ enum xmloff::token::XMLTokenEnum XML_BREAK_AFTER
include/xmloff/xmltoken.hxx:355
- enum xmloff::token::XMLTokenEnum XML_BULLET_CHAR
+ enum xmloff::token::XMLTokenEnum XML_BREAK_BEFORE
include/xmloff/xmltoken.hxx:356
- enum xmloff::token::XMLTokenEnum XML_BULLET_RELATIVE_SIZE
+ enum xmloff::token::XMLTokenEnum XML_BREAK_INSIDE
include/xmloff/xmltoken.hxx:357
- enum xmloff::token::XMLTokenEnum XML_BUTT
+ enum xmloff::token::XMLTokenEnum XML_BUBBLE
include/xmloff/xmltoken.hxx:358
- enum xmloff::token::XMLTokenEnum XML_BUTTON1
+ enum xmloff::token::XMLTokenEnum XML_BULLET_CHAR
include/xmloff/xmltoken.hxx:359
- enum xmloff::token::XMLTokenEnum XML_BUTTON2
+ enum xmloff::token::XMLTokenEnum XML_BULLET_RELATIVE_SIZE
include/xmloff/xmltoken.hxx:360
- enum xmloff::token::XMLTokenEnum XML_BUTTON3
+ enum xmloff::token::XMLTokenEnum XML_BUTT
include/xmloff/xmltoken.hxx:361
- enum xmloff::token::XMLTokenEnum XML_BUTTON4
+ enum xmloff::token::XMLTokenEnum XML_BUTTON1
include/xmloff/xmltoken.hxx:362
- enum xmloff::token::XMLTokenEnum XML_BUTTONS
+ enum xmloff::token::XMLTokenEnum XML_BUTTON2
include/xmloff/xmltoken.hxx:363
- enum xmloff::token::XMLTokenEnum XML_BVAR
+ enum xmloff::token::XMLTokenEnum XML_BUTTON3
include/xmloff/xmltoken.hxx:364
- enum xmloff::token::XMLTokenEnum XML_C
-include/xmloff/xmltoken.hxx:365
- enum xmloff::token::XMLTokenEnum XML_CALCULATION_SETTINGS
+ enum xmloff::token::XMLTokenEnum XML_BUTTON4
include/xmloff/xmltoken.hxx:366
- enum xmloff::token::XMLTokenEnum XML_CALENDAR
-include/xmloff/xmltoken.hxx:367
- enum xmloff::token::XMLTokenEnum XML_CAPITALIZE_ENTRIES
-include/xmloff/xmltoken.hxx:368
- enum xmloff::token::XMLTokenEnum XML_CAPTION
+ enum xmloff::token::XMLTokenEnum XML_BVAR
include/xmloff/xmltoken.hxx:369
- enum xmloff::token::XMLTokenEnum XML_CAPTION_POINT_X
+ enum xmloff::token::XMLTokenEnum XML_CALENDAR
include/xmloff/xmltoken.hxx:370
- enum xmloff::token::XMLTokenEnum XML_CAPTION_POINT_Y
+ enum xmloff::token::XMLTokenEnum XML_CAPITALIZE_ENTRIES
include/xmloff/xmltoken.hxx:371
- enum xmloff::token::XMLTokenEnum XML_CAPTION_SEQUENCE_FORMAT
+ enum xmloff::token::XMLTokenEnum XML_CAN_ADD_COMMENT
include/xmloff/xmltoken.hxx:372
- enum xmloff::token::XMLTokenEnum XML_CAPTION_SEQUENCE_NAME
+ enum xmloff::token::XMLTokenEnum XML_CAPTION
include/xmloff/xmltoken.hxx:373
- enum xmloff::token::XMLTokenEnum XML_CASE_SENSITIVE
+ enum xmloff::token::XMLTokenEnum XML_CAPTION_POINT_X
include/xmloff/xmltoken.hxx:374
- enum xmloff::token::XMLTokenEnum XML_CASEMAP_CAPITALIZE
+ enum xmloff::token::XMLTokenEnum XML_CAPTION_POINT_Y
include/xmloff/xmltoken.hxx:375
- enum xmloff::token::XMLTokenEnum XML_CASEMAP_LOWERCASE
+ enum xmloff::token::XMLTokenEnum XML_CAPTION_SEQUENCE_FORMAT
include/xmloff/xmltoken.hxx:376
- enum xmloff::token::XMLTokenEnum XML_CASEMAP_NORMAL
-include/xmloff/xmltoken.hxx:377
- enum xmloff::token::XMLTokenEnum XML_CASEMAP_SMALL_CAPS
+ enum xmloff::token::XMLTokenEnum XML_CAPTION_SEQUENCE_NAME
include/xmloff/xmltoken.hxx:378
- enum xmloff::token::XMLTokenEnum XML_CASEMAP_UPPERCASE
+ enum xmloff::token::XMLTokenEnum XML_CASEMAP_CAPITALIZE
include/xmloff/xmltoken.hxx:379
- enum xmloff::token::XMLTokenEnum XML_CATEGORIES
+ enum xmloff::token::XMLTokenEnum XML_CASEMAP_LOWERCASE
include/xmloff/xmltoken.hxx:380
- enum xmloff::token::XMLTokenEnum XML_CATEGORY
+ enum xmloff::token::XMLTokenEnum XML_CASEMAP_NORMAL
include/xmloff/xmltoken.hxx:381
- enum xmloff::token::XMLTokenEnum XML_CATEGORY_AND_VALUE
+ enum xmloff::token::XMLTokenEnum XML_CASEMAP_SMALL_CAPS
include/xmloff/xmltoken.hxx:382
- enum xmloff::token::XMLTokenEnum XML_CELL_ADDRESS
+ enum xmloff::token::XMLTokenEnum XML_CASEMAP_UPPERCASE
include/xmloff/xmltoken.hxx:383
- enum xmloff::token::XMLTokenEnum XML_CELL_CONTENT_CHANGE
+ enum xmloff::token::XMLTokenEnum XML_CATEGORIES
include/xmloff/xmltoken.hxx:384
- enum xmloff::token::XMLTokenEnum XML_CELL_CONTENT_DELETION
+ enum xmloff::token::XMLTokenEnum XML_CATEGORY
include/xmloff/xmltoken.hxx:385
+ enum xmloff::token::XMLTokenEnum XML_CATEGORY_AND_VALUE
+include/xmloff/xmltoken.hxx:389
enum xmloff::token::XMLTokenEnum XML_CELL_COUNT
-include/xmloff/xmltoken.hxx:386
+include/xmloff/xmltoken.hxx:390
enum xmloff::token::XMLTokenEnum XML_CELL_PROTECT
-include/xmloff/xmltoken.hxx:387
- enum xmloff::token::XMLTokenEnum XML_CELL_RANGE_ADDRESS
-include/xmloff/xmltoken.hxx:388
+include/xmloff/xmltoken.hxx:392
enum xmloff::token::XMLTokenEnum XML_CELL_RANGE_ADDRESS_LIST
-include/xmloff/xmltoken.hxx:389
- enum xmloff::token::XMLTokenEnum XML_CELL_RANGE_SOURCE
-include/xmloff/xmltoken.hxx:390
+include/xmloff/xmltoken.hxx:394
enum xmloff::token::XMLTokenEnum XML_CENTER
-include/xmloff/xmltoken.hxx:391
+include/xmloff/xmltoken.hxx:395
enum xmloff::token::XMLTokenEnum XML_CHAIN_NEXT_NAME
-include/xmloff/xmltoken.hxx:392
+include/xmloff/xmltoken.hxx:396
enum xmloff::token::XMLTokenEnum XML_CHANGE
-include/xmloff/xmltoken.hxx:393
- enum xmloff::token::XMLTokenEnum XML_CHANGE_DELETION
-include/xmloff/xmltoken.hxx:394
+include/xmloff/xmltoken.hxx:398
enum xmloff::token::XMLTokenEnum XML_CHANGE_END
-include/xmloff/xmltoken.hxx:395
+include/xmloff/xmltoken.hxx:399
enum xmloff::token::XMLTokenEnum XML_CHANGE_ID
-include/xmloff/xmltoken.hxx:396
- enum xmloff::token::XMLTokenEnum XML_CHANGE_INFO
-include/xmloff/xmltoken.hxx:397
+include/xmloff/xmltoken.hxx:401
enum xmloff::token::XMLTokenEnum XML_CHANGE_START
-include/xmloff/xmltoken.hxx:398
- enum xmloff::token::XMLTokenEnum XML_CHANGE_TRACK_TABLE_CELL
-include/xmloff/xmltoken.hxx:399
+include/xmloff/xmltoken.hxx:403
enum xmloff::token::XMLTokenEnum XML_CHANGE_VIEW_CONDITIONS
-include/xmloff/xmltoken.hxx:400
+include/xmloff/xmltoken.hxx:404
enum xmloff::token::XMLTokenEnum XML_CHANGE_VIEW_SETTINGS
-include/xmloff/xmltoken.hxx:401
+include/xmloff/xmltoken.hxx:405
enum xmloff::token::XMLTokenEnum XML_CHANGED_REGION
-include/xmloff/xmltoken.hxx:402
+include/xmloff/xmltoken.hxx:406
enum xmloff::token::XMLTokenEnum XML_CHAPTER
-include/xmloff/xmltoken.hxx:403
+include/xmloff/xmltoken.hxx:407
enum xmloff::token::XMLTokenEnum XML_CHAR
-include/xmloff/xmltoken.hxx:404
+include/xmloff/xmltoken.hxx:408
enum xmloff::token::XMLTokenEnum XML_CHAR_SHADING_VALUE
-include/xmloff/xmltoken.hxx:405
+include/xmloff/xmltoken.hxx:409
enum xmloff::token::XMLTokenEnum XML_CHARACTER_COUNT
-include/xmloff/xmltoken.hxx:407
+include/xmloff/xmltoken.hxx:411
enum xmloff::token::XMLTokenEnum XML_CHARTS
-include/xmloff/xmltoken.hxx:408
+include/xmloff/xmltoken.hxx:412
enum xmloff::token::XMLTokenEnum XML_CHECKERBOARD
-include/xmloff/xmltoken.hxx:409
- enum xmloff::token::XMLTokenEnum XML_CHG_AUTHOR
-include/xmloff/xmltoken.hxx:410
+include/xmloff/xmltoken.hxx:414
enum xmloff::token::XMLTokenEnum XML_CHG_COMMENT
-include/xmloff/xmltoken.hxx:411
- enum xmloff::token::XMLTokenEnum XML_CHG_DATE_TIME
-include/xmloff/xmltoken.hxx:412
+include/xmloff/xmltoken.hxx:416
enum xmloff::token::XMLTokenEnum XML_CI
-include/xmloff/xmltoken.hxx:413
+include/xmloff/xmltoken.hxx:417
enum xmloff::token::XMLTokenEnum XML_CIRCLE
-include/xmloff/xmltoken.hxx:414
+include/xmloff/xmltoken.hxx:418
enum xmloff::token::XMLTokenEnum XML_CITATION_BODY_STYLE_NAME
-include/xmloff/xmltoken.hxx:415
+include/xmloff/xmltoken.hxx:419
enum xmloff::token::XMLTokenEnum XML_CITATION_STYLE_NAME
-include/xmloff/xmltoken.hxx:416
+include/xmloff/xmltoken.hxx:420
enum xmloff::token::XMLTokenEnum XML_CLASS
-include/xmloff/xmltoken.hxx:417
+include/xmloff/xmltoken.hxx:421
enum xmloff::token::XMLTokenEnum XML_CLASS_ID
-include/xmloff/xmltoken.hxx:418
+include/xmloff/xmltoken.hxx:422
enum xmloff::token::XMLTokenEnum XML_CLIP
-include/xmloff/xmltoken.hxx:419
+include/xmloff/xmltoken.hxx:423
enum xmloff::token::XMLTokenEnum XML_CLOCKWISE
-include/xmloff/xmltoken.hxx:420
+include/xmloff/xmltoken.hxx:424
enum xmloff::token::XMLTokenEnum XML_CLOSE
-include/xmloff/xmltoken.hxx:421
+include/xmloff/xmltoken.hxx:425
enum xmloff::token::XMLTokenEnum XML_CLOSE_HORIZONTAL
-include/xmloff/xmltoken.hxx:422
+include/xmloff/xmltoken.hxx:426
enum xmloff::token::XMLTokenEnum XML_CLOSE_VERTICAL
-include/xmloff/xmltoken.hxx:423
+include/xmloff/xmltoken.hxx:427
enum xmloff::token::XMLTokenEnum XML_CM
-include/xmloff/xmltoken.hxx:424
+include/xmloff/xmltoken.hxx:428
enum xmloff::token::XMLTokenEnum XML_CN
-include/xmloff/xmltoken.hxx:425
+include/xmloff/xmltoken.hxx:429
enum xmloff::token::XMLTokenEnum XML_CODE
-include/xmloff/xmltoken.hxx:426
+include/xmloff/xmltoken.hxx:430
enum xmloff::token::XMLTokenEnum XML_CODEBASE
-include/xmloff/xmltoken.hxx:427
+include/xmloff/xmltoken.hxx:431
enum xmloff::token::XMLTokenEnum XML_COLLAPSE
-include/xmloff/xmltoken.hxx:429
+include/xmloff/xmltoken.hxx:433
enum xmloff::token::XMLTokenEnum XML_COLOR_INVERSION
-include/xmloff/xmltoken.hxx:430
- enum xmloff::token::XMLTokenEnum XML_COLOR_MODE
-include/xmloff/xmltoken.hxx:431
- enum xmloff::token::XMLTokenEnum XML_COLOR_SCALE
-include/xmloff/xmltoken.hxx:432
- enum xmloff::token::XMLTokenEnum XML_COLOR_SCALE_ENTRY
include/xmloff/xmltoken.hxx:434
- enum xmloff::token::XMLTokenEnum XML_COLUMN_COUNT
-include/xmloff/xmltoken.hxx:435
- enum xmloff::token::XMLTokenEnum XML_COLUMN_GAP
-include/xmloff/xmltoken.hxx:436
- enum xmloff::token::XMLTokenEnum XML_COLUMN_NAME
-include/xmloff/xmltoken.hxx:437
- enum xmloff::token::XMLTokenEnum XML_COLUMN_SEP
+ enum xmloff::token::XMLTokenEnum XML_COLOR_MODE
include/xmloff/xmltoken.hxx:438
- enum xmloff::token::XMLTokenEnum XML_COLUMN_WIDTH
+ enum xmloff::token::XMLTokenEnum XML_COLUMN_COUNT
include/xmloff/xmltoken.hxx:439
- enum xmloff::token::XMLTokenEnum XML_COLUMNALIGN
+ enum xmloff::token::XMLTokenEnum XML_COLUMN_GAP
include/xmloff/xmltoken.hxx:440
- enum xmloff::token::XMLTokenEnum XML_COLUMNS
+ enum xmloff::token::XMLTokenEnum XML_COLUMN_NAME
include/xmloff/xmltoken.hxx:441
- enum xmloff::token::XMLTokenEnum XML_COLUMNSPLIT_AUTO
+ enum xmloff::token::XMLTokenEnum XML_COLUMN_SEP
include/xmloff/xmltoken.hxx:442
- enum xmloff::token::XMLTokenEnum XML_COLUMNSPLIT_AVOID
+ enum xmloff::token::XMLTokenEnum XML_COLUMN_WIDTH
include/xmloff/xmltoken.hxx:443
- enum xmloff::token::XMLTokenEnum XML_COMBINE_ENTRIES
+ enum xmloff::token::XMLTokenEnum XML_COLUMNALIGN
include/xmloff/xmltoken.hxx:444
- enum xmloff::token::XMLTokenEnum XML_COMBINE_ENTRIES_WITH_DASH
+ enum xmloff::token::XMLTokenEnum XML_COLUMNS
include/xmloff/xmltoken.hxx:445
- enum xmloff::token::XMLTokenEnum XML_COMBINE_ENTRIES_WITH_PP
+ enum xmloff::token::XMLTokenEnum XML_COLUMNSPLIT_AUTO
include/xmloff/xmltoken.hxx:446
- enum xmloff::token::XMLTokenEnum XML_COMMA_SEPARATED
+ enum xmloff::token::XMLTokenEnum XML_COLUMNSPLIT_AVOID
include/xmloff/xmltoken.hxx:447
- enum xmloff::token::XMLTokenEnum XML_COMMAND
+ enum xmloff::token::XMLTokenEnum XML_COMBINE_ENTRIES
include/xmloff/xmltoken.hxx:448
- enum xmloff::token::XMLTokenEnum XML_COMMENT
+ enum xmloff::token::XMLTokenEnum XML_COMBINE_ENTRIES_WITH_DASH
include/xmloff/xmltoken.hxx:449
- enum xmloff::token::XMLTokenEnum XML_COMPOSE
+ enum xmloff::token::XMLTokenEnum XML_COMBINE_ENTRIES_WITH_PP
include/xmloff/xmltoken.hxx:450
- enum xmloff::token::XMLTokenEnum XML_COND_STYLE_NAME
+ enum xmloff::token::XMLTokenEnum XML_COMMA_SEPARATED
include/xmloff/xmltoken.hxx:451
- enum xmloff::token::XMLTokenEnum XML_CONDITION
-include/xmloff/xmltoken.hxx:452
- enum xmloff::token::XMLTokenEnum XML_CONDITION_SOURCE
+ enum xmloff::token::XMLTokenEnum XML_COMMAND
include/xmloff/xmltoken.hxx:453
- enum xmloff::token::XMLTokenEnum XML_CONDITION_SOURCE_RANGE_ADDRESS
+ enum xmloff::token::XMLTokenEnum XML_COMPOSE
include/xmloff/xmltoken.hxx:454
- enum xmloff::token::XMLTokenEnum XML_CONDITIONAL_TEXT
-include/xmloff/xmltoken.hxx:455
- enum xmloff::token::XMLTokenEnum XML_CONDITIONAL_FORMAT
-include/xmloff/xmltoken.hxx:456
- enum xmloff::token::XMLTokenEnum XML_CONDITIONAL_FORMATS
-include/xmloff/xmltoken.hxx:457
- enum xmloff::token::XMLTokenEnum XML_CONE
+ enum xmloff::token::XMLTokenEnum XML_COND_STYLE_NAME
include/xmloff/xmltoken.hxx:458
- enum xmloff::token::XMLTokenEnum XML_CONFERENCE
-include/xmloff/xmltoken.hxx:459
- enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM
-include/xmloff/xmltoken.hxx:460
- enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM_MAP_ENTRY
+ enum xmloff::token::XMLTokenEnum XML_CONDITIONAL_TEXT
include/xmloff/xmltoken.hxx:461
- enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM_MAP_INDEXED
+ enum xmloff::token::XMLTokenEnum XML_CONE
include/xmloff/xmltoken.hxx:462
- enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM_MAP_NAMED
+ enum xmloff::token::XMLTokenEnum XML_CONFERENCE
include/xmloff/xmltoken.hxx:463
- enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM_SET
+ enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM
include/xmloff/xmltoken.hxx:464
- enum xmloff::token::XMLTokenEnum XML_CONFIGURATION_SETTINGS
+ enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM_MAP_ENTRY
include/xmloff/xmltoken.hxx:465
- enum xmloff::token::XMLTokenEnum XML_CONJUGATE
+ enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM_MAP_INDEXED
include/xmloff/xmltoken.hxx:466
- enum xmloff::token::XMLTokenEnum XML_CONNECT_BARS
+ enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM_MAP_NAMED
include/xmloff/xmltoken.hxx:467
- enum xmloff::token::XMLTokenEnum XML_CONNECTION_NAME
+ enum xmloff::token::XMLTokenEnum XML_CONFIG_ITEM_SET
include/xmloff/xmltoken.hxx:468
- enum xmloff::token::XMLTokenEnum XML_CONNECTOR
+ enum xmloff::token::XMLTokenEnum XML_CONFIGURATION_SETTINGS
include/xmloff/xmltoken.hxx:469
- enum xmloff::token::XMLTokenEnum XML_CONSECUTIVE_NUMBERING
+ enum xmloff::token::XMLTokenEnum XML_CONJUGATE
include/xmloff/xmltoken.hxx:470
- enum xmloff::token::XMLTokenEnum XML_CONSOLIDATION
+ enum xmloff::token::XMLTokenEnum XML_CONNECT_BARS
include/xmloff/xmltoken.hxx:471
- enum xmloff::token::XMLTokenEnum XML_CONSTANT
+ enum xmloff::token::XMLTokenEnum XML_CONNECTION_NAME
include/xmloff/xmltoken.hxx:472
- enum xmloff::token::XMLTokenEnum XML_CONTAINS_ERROR
+ enum xmloff::token::XMLTokenEnum XML_CONNECTOR
include/xmloff/xmltoken.hxx:473
- enum xmloff::token::XMLTokenEnum XML_CONTAINS_HEADER
-include/xmloff/xmltoken.hxx:474
- enum xmloff::token::XMLTokenEnum XML_CONTENT
+ enum xmloff::token::XMLTokenEnum XML_CONSECUTIVE_NUMBERING
include/xmloff/xmltoken.hxx:475
- enum xmloff::token::XMLTokenEnum XML_CONTENT_VALIDATION
-include/xmloff/xmltoken.hxx:476
- enum xmloff::token::XMLTokenEnum XML_CONTENT_VALIDATION_NAME
-include/xmloff/xmltoken.hxx:477
- enum xmloff::token::XMLTokenEnum XML_CONTENT_VALIDATIONS
+ enum xmloff::token::XMLTokenEnum XML_CONSTANT
include/xmloff/xmltoken.hxx:478
- enum xmloff::token::XMLTokenEnum XML_CONTEXTUAL_SPACING
-include/xmloff/xmltoken.hxx:479
- enum xmloff::token::XMLTokenEnum XML_CONTINUE
-include/xmloff/xmltoken.hxx:480
- enum xmloff::token::XMLTokenEnum XML_CONTINUE_NUMBERING
-include/xmloff/xmltoken.hxx:481
- enum xmloff::token::XMLTokenEnum XML_CONTOUR_PATH
+ enum xmloff::token::XMLTokenEnum XML_CONTENT
include/xmloff/xmltoken.hxx:482
- enum xmloff::token::XMLTokenEnum XML_CONTOUR_POLYGON
+ enum xmloff::token::XMLTokenEnum XML_CONTEXTUAL_SPACING
include/xmloff/xmltoken.hxx:483
- enum xmloff::token::XMLTokenEnum XML_CONTRAST
+ enum xmloff::token::XMLTokenEnum XML_CONTINUE
include/xmloff/xmltoken.hxx:484
- enum xmloff::token::XMLTokenEnum XML_CONTROL
+ enum xmloff::token::XMLTokenEnum XML_CONTINUE_NUMBERING
include/xmloff/xmltoken.hxx:485
- enum xmloff::token::XMLTokenEnum XML_CONVERSION_MODE
+ enum xmloff::token::XMLTokenEnum XML_CONTOUR_PATH
include/xmloff/xmltoken.hxx:486
- enum xmloff::token::XMLTokenEnum XML_COPY_BACK
+ enum xmloff::token::XMLTokenEnum XML_CONTOUR_POLYGON
include/xmloff/xmltoken.hxx:487
- enum xmloff::token::XMLTokenEnum XML_COPY_FORMULAS
+ enum xmloff::token::XMLTokenEnum XML_CONTRAST
include/xmloff/xmltoken.hxx:488
+ enum xmloff::token::XMLTokenEnum XML_CONTROL
+include/xmloff/xmltoken.hxx:492
enum xmloff::token::XMLTokenEnum XML_COPY_OUTLINE_LEVELS
-include/xmloff/xmltoken.hxx:489
+include/xmloff/xmltoken.hxx:493
enum xmloff::token::XMLTokenEnum XML_COPY_RESULTS_ONLY
-include/xmloff/xmltoken.hxx:490
- enum xmloff::token::XMLTokenEnum XML_COPY_STYLES
-include/xmloff/xmltoken.hxx:491
+include/xmloff/xmltoken.hxx:495
enum xmloff::token::XMLTokenEnum XML_CORNER_RADIUS
-include/xmloff/xmltoken.hxx:492
+include/xmloff/xmltoken.hxx:496
enum xmloff::token::XMLTokenEnum XML_CORRECT
-include/xmloff/xmltoken.hxx:493
+include/xmloff/xmltoken.hxx:497
enum xmloff::token::XMLTokenEnum XML_COS
-include/xmloff/xmltoken.hxx:494
+include/xmloff/xmltoken.hxx:498
enum xmloff::token::XMLTokenEnum XML_COSH
-include/xmloff/xmltoken.hxx:495
+include/xmloff/xmltoken.hxx:499
enum xmloff::token::XMLTokenEnum XML_COT
-include/xmloff/xmltoken.hxx:496
+include/xmloff/xmltoken.hxx:500
enum xmloff::token::XMLTokenEnum XML_COTH
-include/xmloff/xmltoken.hxx:497
- enum xmloff::token::XMLTokenEnum XML_COUNT
-include/xmloff/xmltoken.hxx:498
+include/xmloff/xmltoken.hxx:502
enum xmloff::token::XMLTokenEnum XML_COUNT_EMPTY_LINES
-include/xmloff/xmltoken.hxx:499
+include/xmloff/xmltoken.hxx:503
enum xmloff::token::XMLTokenEnum XML_COUNT_IN_FLOATING_FRAMES
-include/xmloff/xmltoken.hxx:500
+include/xmloff/xmltoken.hxx:504
enum xmloff::token::XMLTokenEnum XML_COUNTER_CLOCKWISE
-include/xmloff/xmltoken.hxx:501
+include/xmloff/xmltoken.hxx:505
enum xmloff::token::XMLTokenEnum XML_COUNTERCLOCKWISE
-include/xmloff/xmltoken.hxx:502
+include/xmloff/xmltoken.hxx:506
enum xmloff::token::XMLTokenEnum XML_COUNTNUMS
-include/xmloff/xmltoken.hxx:503
- enum xmloff::token::XMLTokenEnum XML_COUNTRY
-include/xmloff/xmltoken.hxx:504
+include/xmloff/xmltoken.hxx:508
enum xmloff::token::XMLTokenEnum XML_COUNTRY_ASIAN
-include/xmloff/xmltoken.hxx:505
+include/xmloff/xmltoken.hxx:509
enum xmloff::token::XMLTokenEnum XML_COUNTRY_COMPLEX
-include/xmloff/xmltoken.hxx:506
- enum xmloff::token::XMLTokenEnum XML_COVERED_TABLE_CELL
-include/xmloff/xmltoken.hxx:507
+include/xmloff/xmltoken.hxx:511
enum xmloff::token::XMLTokenEnum XML_CREATE_DATE
-include/xmloff/xmltoken.hxx:508
+include/xmloff/xmltoken.hxx:512
enum xmloff::token::XMLTokenEnum XML_CREATE_DATE_STRING
-include/xmloff/xmltoken.hxx:509
+include/xmloff/xmltoken.hxx:513
enum xmloff::token::XMLTokenEnum XML_CREATION_DATE
-include/xmloff/xmltoken.hxx:510
+include/xmloff/xmltoken.hxx:514
enum xmloff::token::XMLTokenEnum XML_CREATION_TIME
-include/xmloff/xmltoken.hxx:511
+include/xmloff/xmltoken.hxx:515
enum xmloff::token::XMLTokenEnum XML_CREATOR
-include/xmloff/xmltoken.hxx:512
+include/xmloff/xmltoken.hxx:516
enum xmloff::token::XMLTokenEnum XML_CSC
-include/xmloff/xmltoken.hxx:513
+include/xmloff/xmltoken.hxx:517
enum xmloff::token::XMLTokenEnum XML_CSCH
-include/xmloff/xmltoken.hxx:514
+include/xmloff/xmltoken.hxx:518
enum xmloff::token::XMLTokenEnum XML_CUBE
-include/xmloff/xmltoken.hxx:515
+include/xmloff/xmltoken.hxx:519
enum xmloff::token::XMLTokenEnum XML_CUBOID
-include/xmloff/xmltoken.hxx:516
- enum xmloff::token::XMLTokenEnum XML_CURRENCY
-include/xmloff/xmltoken.hxx:517
+include/xmloff/xmltoken.hxx:521
enum xmloff::token::XMLTokenEnum XML_CURRENCY_STYLE
-include/xmloff/xmltoken.hxx:518
+include/xmloff/xmltoken.hxx:522
enum xmloff::token::XMLTokenEnum XML_CURRENCY_SYMBOL
-include/xmloff/xmltoken.hxx:519
+include/xmloff/xmltoken.hxx:523
enum xmloff::token::XMLTokenEnum XML_CURRENT
-include/xmloff/xmltoken.hxx:520
+include/xmloff/xmltoken.hxx:524
enum xmloff::token::XMLTokenEnum XML_CURRENT_VALUE
-include/xmloff/xmltoken.hxx:521
+include/xmloff/xmltoken.hxx:525
enum xmloff::token::XMLTokenEnum XML_CURSOR_POSITION
-include/xmloff/xmltoken.hxx:522
+include/xmloff/xmltoken.hxx:526
enum xmloff::token::XMLTokenEnum XML_CURSOR_POSITION_X
-include/xmloff/xmltoken.hxx:523
+include/xmloff/xmltoken.hxx:527
enum xmloff::token::XMLTokenEnum XML_CURSOR_POSITION_Y
-include/xmloff/xmltoken.hxx:524
+include/xmloff/xmltoken.hxx:528
enum xmloff::token::XMLTokenEnum XML_CURVE
-include/xmloff/xmltoken.hxx:525
+include/xmloff/xmltoken.hxx:529
enum xmloff::token::XMLTokenEnum XML_CUSTOM1
-include/xmloff/xmltoken.hxx:526
+include/xmloff/xmltoken.hxx:530
enum xmloff::token::XMLTokenEnum XML_CUSTOM2
-include/xmloff/xmltoken.hxx:527
+include/xmloff/xmltoken.hxx:531
enum xmloff::token::XMLTokenEnum XML_CUSTOM3
-include/xmloff/xmltoken.hxx:528
+include/xmloff/xmltoken.hxx:532
enum xmloff::token::XMLTokenEnum XML_CUSTOM4
-include/xmloff/xmltoken.hxx:529
+include/xmloff/xmltoken.hxx:533
enum xmloff::token::XMLTokenEnum XML_CUSTOM5
-include/xmloff/xmltoken.hxx:530
+include/xmloff/xmltoken.hxx:534
enum xmloff::token::XMLTokenEnum XML_CUSTOM_ICONSET
-include/xmloff/xmltoken.hxx:531
+include/xmloff/xmltoken.hxx:535
enum xmloff::token::XMLTokenEnum XML_CUSTOM_ICONSET_INDEX
-include/xmloff/xmltoken.hxx:532
+include/xmloff/xmltoken.hxx:536
enum xmloff::token::XMLTokenEnum XML_CUSTOM_ICONSET_NAME
-include/xmloff/xmltoken.hxx:533
+include/xmloff/xmltoken.hxx:537
enum xmloff::token::XMLTokenEnum XML_CUT
-include/xmloff/xmltoken.hxx:534
+include/xmloff/xmltoken.hxx:538
enum xmloff::token::XMLTokenEnum XML_CUT_OFFS
-include/xmloff/xmltoken.hxx:535
+include/xmloff/xmltoken.hxx:539
enum xmloff::token::XMLTokenEnum XML_CX
-include/xmloff/xmltoken.hxx:536
- enum xmloff::token::XMLTokenEnum XML_CY
-include/xmloff/xmltoken.hxx:537
- enum xmloff::token::XMLTokenEnum XML_CYLINDER
-include/xmloff/xmltoken.hxx:538
- enum xmloff::token::XMLTokenEnum XML_D
include/xmloff/xmltoken.hxx:540
- enum xmloff::token::XMLTokenEnum XML_DASH_DOT
+ enum xmloff::token::XMLTokenEnum XML_CY
include/xmloff/xmltoken.hxx:541
- enum xmloff::token::XMLTokenEnum XML_DASH_DOT_DOT
+ enum xmloff::token::XMLTokenEnum XML_CYLINDER
include/xmloff/xmltoken.hxx:542
- enum xmloff::token::XMLTokenEnum XML_DASHED
-include/xmloff/xmltoken.hxx:543
- enum xmloff::token::XMLTokenEnum XML_DATA
+ enum xmloff::token::XMLTokenEnum XML_D
include/xmloff/xmltoken.hxx:544
- enum xmloff::token::XMLTokenEnum XML_DATA_BAR
+ enum xmloff::token::XMLTokenEnum XML_DASH_DOT
include/xmloff/xmltoken.hxx:545
- enum xmloff::token::XMLTokenEnum XML_DATA_BAR_ENTRY
+ enum xmloff::token::XMLTokenEnum XML_DASH_DOT_DOT
include/xmloff/xmltoken.hxx:546
- enum xmloff::token::XMLTokenEnum XML_DATA_CELL_RANGE_ADDRESS
+ enum xmloff::token::XMLTokenEnum XML_DASHED
include/xmloff/xmltoken.hxx:547
- enum xmloff::token::XMLTokenEnum XML_DATA_LABEL_NUMBER
-include/xmloff/xmltoken.hxx:548
- enum xmloff::token::XMLTokenEnum XML_DATA_LABEL_SYMBOL
-include/xmloff/xmltoken.hxx:549
- enum xmloff::token::XMLTokenEnum XML_DATA_LABEL_TEXT
-include/xmloff/xmltoken.hxx:550
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_SOURCE
+ enum xmloff::token::XMLTokenEnum XML_DATA
include/xmloff/xmltoken.hxx:551
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_FIELD
+ enum xmloff::token::XMLTokenEnum XML_DATA_LABEL_NUMBER
include/xmloff/xmltoken.hxx:552
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_GRAND_TOTAL
+ enum xmloff::token::XMLTokenEnum XML_DATA_LABEL_SYMBOL
include/xmloff/xmltoken.hxx:553
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_LEVEL
+ enum xmloff::token::XMLTokenEnum XML_DATA_LABEL_TEXT
include/xmloff/xmltoken.hxx:554
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_MEMBER
-include/xmloff/xmltoken.hxx:555
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_MEMBERS
-include/xmloff/xmltoken.hxx:556
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_SUBTOTAL
-include/xmloff/xmltoken.hxx:557
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_SUBTOTALS
-include/xmloff/xmltoken.hxx:558
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_TABLE
-include/xmloff/xmltoken.hxx:559
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_TABLES
-include/xmloff/xmltoken.hxx:560
- enum xmloff::token::XMLTokenEnum XML_DATA_POINT
-include/xmloff/xmltoken.hxx:561
- enum xmloff::token::XMLTokenEnum XML_DATA_STREAM_SOURCE
-include/xmloff/xmltoken.hxx:562
- enum xmloff::token::XMLTokenEnum XML_DATA_STYLE
-include/xmloff/xmltoken.hxx:563
- enum xmloff::token::XMLTokenEnum XML_DATA_STYLE_NAME
+ enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_SOURCE
include/xmloff/xmltoken.hxx:564
- enum xmloff::token::XMLTokenEnum XML_DATA_TYPE
-include/xmloff/xmltoken.hxx:565
- enum xmloff::token::XMLTokenEnum XML_DATABASE_DISPLAY
+ enum xmloff::token::XMLTokenEnum XML_DATA_POINT
include/xmloff/xmltoken.hxx:566
- enum xmloff::token::XMLTokenEnum XML_DATABASE_NAME
+ enum xmloff::token::XMLTokenEnum XML_DATA_STYLE
include/xmloff/xmltoken.hxx:567
- enum xmloff::token::XMLTokenEnum XML_DATABASE_NEXT
-include/xmloff/xmltoken.hxx:568
- enum xmloff::token::XMLTokenEnum XML_DATABASE_RANGE
+ enum xmloff::token::XMLTokenEnum XML_DATA_STYLE_NAME
include/xmloff/xmltoken.hxx:569
- enum xmloff::token::XMLTokenEnum XML_DATABASE_RANGES
-include/xmloff/xmltoken.hxx:570
- enum xmloff::token::XMLTokenEnum XML_DATABASE_ROW_NUMBER
+ enum xmloff::token::XMLTokenEnum XML_DATABASE_DISPLAY
include/xmloff/xmltoken.hxx:571
- enum xmloff::token::XMLTokenEnum XML_DATABASE_SELECT
-include/xmloff/xmltoken.hxx:572
- enum xmloff::token::XMLTokenEnum XML_DATABASE_SOURCE_QUERY
-include/xmloff/xmltoken.hxx:573
- enum xmloff::token::XMLTokenEnum XML_DATABASE_SOURCE_SQL
+ enum xmloff::token::XMLTokenEnum XML_DATABASE_NEXT
include/xmloff/xmltoken.hxx:574
- enum xmloff::token::XMLTokenEnum XML_DATABASE_SOURCE_TABLE
+ enum xmloff::token::XMLTokenEnum XML_DATABASE_ROW_NUMBER
include/xmloff/xmltoken.hxx:575
- enum xmloff::token::XMLTokenEnum XML_DATABASE_TABLE_NAME
-include/xmloff/xmltoken.hxx:577
- enum xmloff::token::XMLTokenEnum XML_DATE_IS
-include/xmloff/xmltoken.hxx:578
+ enum xmloff::token::XMLTokenEnum XML_DATABASE_SELECT
+include/xmloff/xmltoken.hxx:582
enum xmloff::token::XMLTokenEnum XML_DATE_ADJUST
-include/xmloff/xmltoken.hxx:579
+include/xmloff/xmltoken.hxx:583
enum xmloff::token::XMLTokenEnum XML_DATE_STYLE
-include/xmloff/xmltoken.hxx:580
+include/xmloff/xmltoken.hxx:584
enum xmloff::token::XMLTokenEnum XML_DATE_TIME
-include/xmloff/xmltoken.hxx:581
+include/xmloff/xmltoken.hxx:585
enum xmloff::token::XMLTokenEnum XML_DATE_TIME_UPDATE
-include/xmloff/xmltoken.hxx:582
- enum xmloff::token::XMLTokenEnum XML_DATE_TIME_VISIBLE
-include/xmloff/xmltoken.hxx:583
- enum xmloff::token::XMLTokenEnum XML_DATE_VALUE
-include/xmloff/xmltoken.hxx:584
- enum xmloff::token::XMLTokenEnum XML_DATETIME
include/xmloff/xmltoken.hxx:586
- enum xmloff::token::XMLTokenEnum XML_DAY_OF_WEEK
-include/xmloff/xmltoken.hxx:587
- enum xmloff::token::XMLTokenEnum XML_DDE_APPLICATION
+ enum xmloff::token::XMLTokenEnum XML_DATE_TIME_VISIBLE
include/xmloff/xmltoken.hxx:588
- enum xmloff::token::XMLTokenEnum XML_DDE_CONNECTION
-include/xmloff/xmltoken.hxx:589
- enum xmloff::token::XMLTokenEnum XML_DDE_CONNECTION_DECL
+ enum xmloff::token::XMLTokenEnum XML_DATETIME
include/xmloff/xmltoken.hxx:590
- enum xmloff::token::XMLTokenEnum XML_DDE_CONNECTION_DECLS
-include/xmloff/xmltoken.hxx:591
- enum xmloff::token::XMLTokenEnum XML_DDE_ITEM
+ enum xmloff::token::XMLTokenEnum XML_DAY_OF_WEEK
include/xmloff/xmltoken.hxx:592
- enum xmloff::token::XMLTokenEnum XML_DDE_LINK
+ enum xmloff::token::XMLTokenEnum XML_DDE_CONNECTION
include/xmloff/xmltoken.hxx:593
- enum xmloff::token::XMLTokenEnum XML_DDE_LINKS
+ enum xmloff::token::XMLTokenEnum XML_DDE_CONNECTION_DECL
include/xmloff/xmltoken.hxx:594
- enum xmloff::token::XMLTokenEnum XML_DDE_SOURCE
-include/xmloff/xmltoken.hxx:595
- enum xmloff::token::XMLTokenEnum XML_DDE_TOPIC
-include/xmloff/xmltoken.hxx:596
+ enum xmloff::token::XMLTokenEnum XML_DDE_CONNECTION_DECLS
+include/xmloff/xmltoken.hxx:600
enum xmloff::token::XMLTokenEnum XML_DECIMAL_PLACES
-include/xmloff/xmltoken.hxx:597
+include/xmloff/xmltoken.hxx:601
enum xmloff::token::XMLTokenEnum XML_DECIMAL_REPLACEMENT
-include/xmloff/xmltoken.hxx:598
+include/xmloff/xmltoken.hxx:602
enum xmloff::token::XMLTokenEnum XML_DECLARE
-include/xmloff/xmltoken.hxx:599
+include/xmloff/xmltoken.hxx:603
enum xmloff::token::XMLTokenEnum XML_DECORATE_WORDS_ONLY
-include/xmloff/xmltoken.hxx:600
+include/xmloff/xmltoken.hxx:604
enum xmloff::token::XMLTokenEnum XML_DECORATIVE
-include/xmloff/xmltoken.hxx:601
+include/xmloff/xmltoken.hxx:605
enum xmloff::token::XMLTokenEnum XML_DEEP
-include/xmloff/xmltoken.hxx:602
+include/xmloff/xmltoken.hxx:606
enum xmloff::token::XMLTokenEnum XML_DEFAULT
-include/xmloff/xmltoken.hxx:603
- enum xmloff::token::XMLTokenEnum XML_DEFAULT_CELL_STYLE_NAME
-include/xmloff/xmltoken.hxx:604
+include/xmloff/xmltoken.hxx:608
enum xmloff::token::XMLTokenEnum XML_DEFAULT_STYLE
-include/xmloff/xmltoken.hxx:605
+include/xmloff/xmltoken.hxx:609
enum xmloff::token::XMLTokenEnum XML_DEFAULT_STYLE_NAME
-include/xmloff/xmltoken.hxx:606
+include/xmloff/xmltoken.hxx:610
enum xmloff::token::XMLTokenEnum XML_DEGREE
-include/xmloff/xmltoken.hxx:607
+include/xmloff/xmltoken.hxx:611
enum xmloff::token::XMLTokenEnum XML_DELAY
-include/xmloff/xmltoken.hxx:608
- enum xmloff::token::XMLTokenEnum XML_DELETION
-include/xmloff/xmltoken.hxx:609
- enum xmloff::token::XMLTokenEnum XML_DELETIONS
-include/xmloff/xmltoken.hxx:610
+include/xmloff/xmltoken.hxx:612
+ enum xmloff::token::XMLTokenEnum XML_DELAY_FOR_REPEAT
+include/xmloff/xmltoken.hxx:617
enum xmloff::token::XMLTokenEnum XML_DENOMALIGN
-include/xmloff/xmltoken.hxx:611
+include/xmloff/xmltoken.hxx:618
enum xmloff::token::XMLTokenEnum XML_DENOMINATOR_VALUE
-include/xmloff/xmltoken.hxx:612
- enum xmloff::token::XMLTokenEnum XML_DEPENDENCE
-include/xmloff/xmltoken.hxx:613
+include/xmloff/xmltoken.hxx:620
enum xmloff::token::XMLTokenEnum XML_DEPENDENCES
-include/xmloff/xmltoken.hxx:614
- enum xmloff::token::XMLTokenEnum XML_DEPENDENCIES
-include/xmloff/xmltoken.hxx:615
+include/xmloff/xmltoken.hxx:622
enum xmloff::token::XMLTokenEnum XML_DEPTH
-include/xmloff/xmltoken.hxx:616
+include/xmloff/xmltoken.hxx:623
enum xmloff::token::XMLTokenEnum XML_DESC
-include/xmloff/xmltoken.hxx:617
+include/xmloff/xmltoken.hxx:624
enum xmloff::token::XMLTokenEnum XML_DESCENDING
-include/xmloff/xmltoken.hxx:618
+include/xmloff/xmltoken.hxx:625
enum xmloff::token::XMLTokenEnum XML_DESCRIPTION
-include/xmloff/xmltoken.hxx:619
- enum xmloff::token::XMLTokenEnum XML_DETECTIVE
-include/xmloff/xmltoken.hxx:620
+include/xmloff/xmltoken.hxx:627
enum xmloff::token::XMLTokenEnum XML_DETERMINANT
-include/xmloff/xmltoken.hxx:621
+include/xmloff/xmltoken.hxx:628
enum xmloff::token::XMLTokenEnum XML_DIFF
-include/xmloff/xmltoken.hxx:622
+include/xmloff/xmltoken.hxx:629
enum xmloff::token::XMLTokenEnum XML_DIFFUSE_COLOR
-include/xmloff/xmltoken.hxx:624
- enum xmloff::token::XMLTokenEnum XML_DIRECTION
-include/xmloff/xmltoken.hxx:625
+include/xmloff/xmltoken.hxx:632
enum xmloff::token::XMLTokenEnum XML_DISABLED
-include/xmloff/xmltoken.hxx:626
+include/xmloff/xmltoken.hxx:633
enum xmloff::token::XMLTokenEnum XML_DISC
-include/xmloff/xmltoken.hxx:628
- enum xmloff::token::XMLTokenEnum XML_DISPLAY_BORDER
-include/xmloff/xmltoken.hxx:629
+include/xmloff/xmltoken.hxx:636
enum xmloff::token::XMLTokenEnum XML_DISPLAY_DETAILS
-include/xmloff/xmltoken.hxx:630
- enum xmloff::token::XMLTokenEnum XML_DISPLAY_DUPLICATES
-include/xmloff/xmltoken.hxx:631
+include/xmloff/xmltoken.hxx:638
enum xmloff::token::XMLTokenEnum XML_DISPLAY_EMPTY
-include/xmloff/xmltoken.hxx:632
- enum xmloff::token::XMLTokenEnum XML_DISPLAY_FILTER_BUTTONS
-include/xmloff/xmltoken.hxx:633
+include/xmloff/xmltoken.hxx:640
enum xmloff::token::XMLTokenEnum XML_DISPLAY_FORMULA
-include/xmloff/xmltoken.hxx:634
+include/xmloff/xmltoken.hxx:641
enum xmloff::token::XMLTokenEnum XML_DISPLAY_LABEL
-include/xmloff/xmltoken.hxx:635
+include/xmloff/xmltoken.hxx:642
enum xmloff::token::XMLTokenEnum XML_DISPLAY_LEVELS
-include/xmloff/xmltoken.hxx:636
- enum xmloff::token::XMLTokenEnum XML_DISPLAY_NAME
-include/xmloff/xmltoken.hxx:637
+include/xmloff/xmltoken.hxx:644
enum xmloff::token::XMLTokenEnum XML_DISPLAY_OUTLINE_LEVEL
-include/xmloff/xmltoken.hxx:638
+include/xmloff/xmltoken.hxx:645
enum xmloff::token::XMLTokenEnum XML_DISSOLVE
-include/xmloff/xmltoken.hxx:640
+include/xmloff/xmltoken.hxx:646
+ enum xmloff::token::XMLTokenEnum XML_DISTANCE
+include/xmloff/xmltoken.hxx:647
enum xmloff::token::XMLTokenEnum XML_DISTANCE_AFTER_SEP
-include/xmloff/xmltoken.hxx:641
+include/xmloff/xmltoken.hxx:648
enum xmloff::token::XMLTokenEnum XML_DISTANCE_BEFORE_SEP
-include/xmloff/xmltoken.hxx:642
+include/xmloff/xmltoken.hxx:649
enum xmloff::token::XMLTokenEnum XML_DISTRIBUTE
-include/xmloff/xmltoken.hxx:643
+include/xmloff/xmltoken.hxx:650
enum xmloff::token::XMLTokenEnum XML_DISTRIBUTE_LETTER
-include/xmloff/xmltoken.hxx:644
+include/xmloff/xmltoken.hxx:651
enum xmloff::token::XMLTokenEnum XML_DISTRIBUTE_SPACE
-include/xmloff/xmltoken.hxx:645
+include/xmloff/xmltoken.hxx:652
enum xmloff::token::XMLTokenEnum XML_DIVIDE
-include/xmloff/xmltoken.hxx:648
- enum xmloff::token::XMLTokenEnum XML_DOCUMENT_META
-include/xmloff/xmltoken.hxx:650
+include/xmloff/xmltoken.hxx:657
enum xmloff::token::XMLTokenEnum XML_DOCUMENT_STATISTIC
-include/xmloff/xmltoken.hxx:652
+include/xmloff/xmltoken.hxx:659
enum xmloff::token::XMLTokenEnum XML_DOMAIN
-include/xmloff/xmltoken.hxx:653
+include/xmloff/xmltoken.hxx:660
enum xmloff::token::XMLTokenEnum XML_DOT
-include/xmloff/xmltoken.hxx:654
+include/xmloff/xmltoken.hxx:661
enum xmloff::token::XMLTokenEnum XML_DOTS1
-include/xmloff/xmltoken.hxx:655
+include/xmloff/xmltoken.hxx:662
enum xmloff::token::XMLTokenEnum XML_DOTS1_LENGTH
-include/xmloff/xmltoken.hxx:656
+include/xmloff/xmltoken.hxx:663
enum xmloff::token::XMLTokenEnum XML_DOTS2
-include/xmloff/xmltoken.hxx:657
+include/xmloff/xmltoken.hxx:664
enum xmloff::token::XMLTokenEnum XML_DOTS2_LENGTH
-include/xmloff/xmltoken.hxx:660
+include/xmloff/xmltoken.hxx:667
enum xmloff::token::XMLTokenEnum XML_DOUBLE_SIDED
-include/xmloff/xmltoken.hxx:661
+include/xmloff/xmltoken.hxx:668
enum xmloff::token::XMLTokenEnum XML_DOUBLE_THIN
-include/xmloff/xmltoken.hxx:662
+include/xmloff/xmltoken.hxx:669
enum xmloff::token::XMLTokenEnum XML_DOWN
-include/xmloff/xmltoken.hxx:663
+include/xmloff/xmltoken.hxx:670
enum xmloff::token::XMLTokenEnum XML_DRAFT
-include/xmloff/xmltoken.hxx:664
+include/xmloff/xmltoken.hxx:671
enum xmloff::token::XMLTokenEnum XML_DRAW
-include/xmloff/xmltoken.hxx:665
+include/xmloff/xmltoken.hxx:672
enum xmloff::token::XMLTokenEnum XML_DRAW_ASPECT
-include/xmloff/xmltoken.hxx:667
+include/xmloff/xmltoken.hxx:674
enum xmloff::token::XMLTokenEnum XML_DRAWINGS
-include/xmloff/xmltoken.hxx:668
+include/xmloff/xmltoken.hxx:675
enum xmloff::token::XMLTokenEnum XML_DRAWPOOL
-include/xmloff/xmltoken.hxx:669
+include/xmloff/xmltoken.hxx:676
+ enum xmloff::token::XMLTokenEnum XML_DROPDOWN
+include/xmloff/xmltoken.hxx:677
enum xmloff::token::XMLTokenEnum XML_DROP_CAP
-include/xmloff/xmltoken.hxx:670
+include/xmloff/xmltoken.hxx:678
enum xmloff::token::XMLTokenEnum XML_DYNAMIC
-include/xmloff/xmltoken.hxx:671
+include/xmloff/xmltoken.hxx:679
enum xmloff::token::XMLTokenEnum XML_EDGE_ROUNDING
-include/xmloff/xmltoken.hxx:672
+include/xmloff/xmltoken.hxx:680
enum xmloff::token::XMLTokenEnum XML_EDITABLE
-include/xmloff/xmltoken.hxx:673
+include/xmloff/xmltoken.hxx:681
enum xmloff::token::XMLTokenEnum XML_EDITING_CYCLES
-include/xmloff/xmltoken.hxx:674
+include/xmloff/xmltoken.hxx:682
enum xmloff::token::XMLTokenEnum XML_EDITING_DURATION
-include/xmloff/xmltoken.hxx:675
+include/xmloff/xmltoken.hxx:683
enum xmloff::token::XMLTokenEnum XML_EDITION
-include/xmloff/xmltoken.hxx:676
+include/xmloff/xmltoken.hxx:684
enum xmloff::token::XMLTokenEnum XML_EDITOR
-include/xmloff/xmltoken.hxx:677
+include/xmloff/xmltoken.hxx:685
enum xmloff::token::XMLTokenEnum XML_EFFECT
-include/xmloff/xmltoken.hxx:678
+include/xmloff/xmltoken.hxx:686
enum xmloff::token::XMLTokenEnum XML_ELLIPSE
-include/xmloff/xmltoken.hxx:679
+include/xmloff/xmltoken.hxx:687
enum xmloff::token::XMLTokenEnum XML_EMAIL
-include/xmloff/xmltoken.hxx:680
+include/xmloff/xmltoken.hxx:688
enum xmloff::token::XMLTokenEnum XML_EMBED
-include/xmloff/xmltoken.hxx:681
+include/xmloff/xmltoken.hxx:689
enum xmloff::token::XMLTokenEnum XML_EMBEDDED_VISIBLE_AREA
-include/xmloff/xmltoken.hxx:682
+include/xmloff/xmltoken.hxx:690
enum xmloff::token::XMLTokenEnum XML_EMBOSSED
-include/xmloff/xmltoken.hxx:683
+include/xmloff/xmltoken.hxx:691
enum xmloff::token::XMLTokenEnum XML_EMISSIVE_COLOR
-include/xmloff/xmltoken.hxx:684
+include/xmloff/xmltoken.hxx:692
enum xmloff::token::XMLTokenEnum XML_EMPTY
-include/xmloff/xmltoken.hxx:685
- enum xmloff::token::XMLTokenEnum XML_EMPTY_LINE_REFRESH
-include/xmloff/xmltoken.hxx:686
+include/xmloff/xmltoken.hxx:694
enum xmloff::token::XMLTokenEnum XML_ENABLE_NUMBERING
-include/xmloff/xmltoken.hxx:687
- enum xmloff::token::XMLTokenEnum XML_ENABLED
-include/xmloff/xmltoken.hxx:689
- enum xmloff::token::XMLTokenEnum XML_END
-include/xmloff/xmltoken.hxx:690
+include/xmloff/xmltoken.hxx:698
enum xmloff::token::XMLTokenEnum XML_END_ANGLE
-include/xmloff/xmltoken.hxx:691
+include/xmloff/xmltoken.hxx:699
enum xmloff::token::XMLTokenEnum XML_END_CELL_ADDRESS
-include/xmloff/xmltoken.hxx:692
+include/xmloff/xmltoken.hxx:700
enum xmloff::token::XMLTokenEnum XML_END_COLOR
-include/xmloff/xmltoken.hxx:693
- enum xmloff::token::XMLTokenEnum XML_END_COLUMN
-include/xmloff/xmltoken.hxx:694
+include/xmloff/xmltoken.hxx:702
enum xmloff::token::XMLTokenEnum XML_END_GLUE_POINT
-include/xmloff/xmltoken.hxx:695
+include/xmloff/xmltoken.hxx:703
enum xmloff::token::XMLTokenEnum XML_END_GUIDE
-include/xmloff/xmltoken.hxx:696
+include/xmloff/xmltoken.hxx:704
enum xmloff::token::XMLTokenEnum XML_END_INTENSITY
-include/xmloff/xmltoken.hxx:697
+include/xmloff/xmltoken.hxx:705
enum xmloff::token::XMLTokenEnum XML_END_LINE_SPACING_HORIZONTAL
-include/xmloff/xmltoken.hxx:698
+include/xmloff/xmltoken.hxx:706
enum xmloff::token::XMLTokenEnum XML_END_LINE_SPACING_VERTICAL
-include/xmloff/xmltoken.hxx:699
+include/xmloff/xmltoken.hxx:707
enum xmloff::token::XMLTokenEnum XML_END_POSITION
-include/xmloff/xmltoken.hxx:700
- enum xmloff::token::XMLTokenEnum XML_END_ROW
-include/xmloff/xmltoken.hxx:701
+include/xmloff/xmltoken.hxx:709
enum xmloff::token::XMLTokenEnum XML_END_SHAPE
-include/xmloff/xmltoken.hxx:702
- enum xmloff::token::XMLTokenEnum XML_END_TABLE
-include/xmloff/xmltoken.hxx:703
+include/xmloff/xmltoken.hxx:711
enum xmloff::token::XMLTokenEnum XML_END_X
-include/xmloff/xmltoken.hxx:704
+include/xmloff/xmltoken.hxx:712
enum xmloff::token::XMLTokenEnum XML_END_Y
-include/xmloff/xmltoken.hxx:705
+include/xmloff/xmltoken.hxx:713
enum xmloff::token::XMLTokenEnum XML_ENDLESS
-include/xmloff/xmltoken.hxx:706
+include/xmloff/xmltoken.hxx:714
enum xmloff::token::XMLTokenEnum XML_ENDNOTE
-include/xmloff/xmltoken.hxx:707
+include/xmloff/xmltoken.hxx:715
enum xmloff::token::XMLTokenEnum XML_ENDNOTE_BODY
-include/xmloff/xmltoken.hxx:708
+include/xmloff/xmltoken.hxx:716
enum xmloff::token::XMLTokenEnum XML_ENDNOTE_CITATION
-include/xmloff/xmltoken.hxx:709
+include/xmloff/xmltoken.hxx:717
enum xmloff::token::XMLTokenEnum XML_ENDNOTE_REF
-include/xmloff/xmltoken.hxx:710
+include/xmloff/xmltoken.hxx:718
enum xmloff::token::XMLTokenEnum XML_ENDNOTES_CONFIGURATION
-include/xmloff/xmltoken.hxx:711
+include/xmloff/xmltoken.hxx:719
enum xmloff::token::XMLTokenEnum XML_ENGRAVED
-include/xmloff/xmltoken.hxx:712
+include/xmloff/xmltoken.hxx:720
enum xmloff::token::XMLTokenEnum XML_EQ
-include/xmloff/xmltoken.hxx:713
+include/xmloff/xmltoken.hxx:721
enum xmloff::token::XMLTokenEnum XML_EQUAL_AUTHOR
-include/xmloff/xmltoken.hxx:714
+include/xmloff/xmltoken.hxx:722
enum xmloff::token::XMLTokenEnum XML_EQUAL_COMMENT
-include/xmloff/xmltoken.hxx:715
+include/xmloff/xmltoken.hxx:723
enum xmloff::token::XMLTokenEnum XML_EQUAL_DATE
-include/xmloff/xmltoken.hxx:716
+include/xmloff/xmltoken.hxx:724
enum xmloff::token::XMLTokenEnum XML_ERA
-include/xmloff/xmltoken.hxx:717
+include/xmloff/xmltoken.hxx:725
enum xmloff::token::XMLTokenEnum XML_ERGO_SUM
-include/xmloff/xmltoken.hxx:718
+include/xmloff/xmltoken.hxx:726
enum xmloff::token::XMLTokenEnum XML_ERROR_CATEGORY
-include/xmloff/xmltoken.hxx:719
+include/xmloff/xmltoken.hxx:727
enum xmloff::token::XMLTokenEnum XML_ERROR_LOWER_INDICATOR
-include/xmloff/xmltoken.hxx:720
+include/xmloff/xmltoken.hxx:728
enum xmloff::token::XMLTokenEnum XML_ERROR_LOWER_LIMIT
-include/xmloff/xmltoken.hxx:721
- enum xmloff::token::XMLTokenEnum XML_ERROR_MACRO
-include/xmloff/xmltoken.hxx:722
+include/xmloff/xmltoken.hxx:730
enum xmloff::token::XMLTokenEnum XML_ERROR_MARGIN
-include/xmloff/xmltoken.hxx:723
- enum xmloff::token::XMLTokenEnum XML_ERROR_MESSAGE
-include/xmloff/xmltoken.hxx:724
+include/xmloff/xmltoken.hxx:732
enum xmloff::token::XMLTokenEnum XML_ERROR_PERCENTAGE
-include/xmloff/xmltoken.hxx:725
+include/xmloff/xmltoken.hxx:733
enum xmloff::token::XMLTokenEnum XML_ERROR_UPPER_INDICATOR
-include/xmloff/xmltoken.hxx:726
+include/xmloff/xmltoken.hxx:734
enum xmloff::token::XMLTokenEnum XML_ERROR_UPPER_LIMIT
-include/xmloff/xmltoken.hxx:727
+include/xmloff/xmltoken.hxx:735
enum xmloff::token::XMLTokenEnum XML_ESCAPEMENT_SUB
-include/xmloff/xmltoken.hxx:728
+include/xmloff/xmltoken.hxx:736
enum xmloff::token::XMLTokenEnum XML_ESCAPEMENT_SUPER
-include/xmloff/xmltoken.hxx:729
+include/xmloff/xmltoken.hxx:737
enum xmloff::token::XMLTokenEnum XML_EVEN_PAGE
-include/xmloff/xmltoken.hxx:730
+include/xmloff/xmltoken.hxx:738
enum xmloff::token::XMLTokenEnum XML_EVENT
-include/xmloff/xmltoken.hxx:731
+include/xmloff/xmltoken.hxx:739
enum xmloff::token::XMLTokenEnum XML_EVENT_NAME
-include/xmloff/xmltoken.hxx:732
+include/xmloff/xmltoken.hxx:740
enum xmloff::token::XMLTokenEnum XML_EVENTS
-include/xmloff/xmltoken.hxx:733
- enum xmloff::token::XMLTokenEnum XML_EXECUTE
-include/xmloff/xmltoken.hxx:734
+include/xmloff/xmltoken.hxx:742
enum xmloff::token::XMLTokenEnum XML_EXECUTE_MACRO
-include/xmloff/xmltoken.hxx:735
+include/xmloff/xmltoken.hxx:743
enum xmloff::token::XMLTokenEnum XML_EXISTS
-include/xmloff/xmltoken.hxx:736
+include/xmloff/xmltoken.hxx:744
enum xmloff::token::XMLTokenEnum XML_EXP
-include/xmloff/xmltoken.hxx:737
+include/xmloff/xmltoken.hxx:745
enum xmloff::token::XMLTokenEnum XML_EXPONENTIAL
-include/xmloff/xmltoken.hxx:738
- enum xmloff::token::XMLTokenEnum XML_EXPRESSION
-include/xmloff/xmltoken.hxx:739
+include/xmloff/xmltoken.hxx:747
enum xmloff::token::XMLTokenEnum XML_EXTRA
-include/xmloff/xmltoken.hxx:740
+include/xmloff/xmltoken.hxx:748
enum xmloff::token::XMLTokenEnum XML_EXTRUDE
-include/xmloff/xmltoken.hxx:741
+include/xmloff/xmltoken.hxx:749
enum xmloff::token::XMLTokenEnum XML_FACTORIAL
-include/xmloff/xmltoken.hxx:742
+include/xmloff/xmltoken.hxx:750
enum xmloff::token::XMLTokenEnum XML_FADE
-include/xmloff/xmltoken.hxx:743
+include/xmloff/xmltoken.hxx:751
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_BOTTOM
-include/xmloff/xmltoken.hxx:744
+include/xmloff/xmltoken.hxx:752
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_CENTER
-include/xmloff/xmltoken.hxx:745
+include/xmloff/xmltoken.hxx:753
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_LEFT
-include/xmloff/xmltoken.hxx:746
+include/xmloff/xmltoken.hxx:754
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_LOWERLEFT
-include/xmloff/xmltoken.hxx:747
+include/xmloff/xmltoken.hxx:755
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_LOWERRIGHT
-include/xmloff/xmltoken.hxx:748
+include/xmloff/xmltoken.hxx:756
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_RIGHT
-include/xmloff/xmltoken.hxx:749
+include/xmloff/xmltoken.hxx:757
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_TOP
-include/xmloff/xmltoken.hxx:750
+include/xmloff/xmltoken.hxx:758
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_UPPERLEFT
-include/xmloff/xmltoken.hxx:751
+include/xmloff/xmltoken.hxx:759
enum xmloff::token::XMLTokenEnum XML_FADE_FROM_UPPERRIGHT
-include/xmloff/xmltoken.hxx:752
+include/xmloff/xmltoken.hxx:760
enum xmloff::token::XMLTokenEnum XML_FADE_OUT
-include/xmloff/xmltoken.hxx:753
+include/xmloff/xmltoken.hxx:761
enum xmloff::token::XMLTokenEnum XML_FADE_TO_CENTER
-include/xmloff/xmltoken.hxx:754
+include/xmloff/xmltoken.hxx:762
enum xmloff::token::XMLTokenEnum XML_FALSE
-include/xmloff/xmltoken.hxx:755
- enum xmloff::token::XMLTokenEnum XML_FAMILY
-include/xmloff/xmltoken.hxx:756
- enum xmloff::token::XMLTokenEnum XML_FAST
-include/xmloff/xmltoken.hxx:757
- enum xmloff::token::XMLTokenEnum XML_FENCE
-include/xmloff/xmltoken.hxx:758
- enum xmloff::token::XMLTokenEnum XML_FIELD_NUMBER
-include/xmloff/xmltoken.hxx:759
- enum xmloff::token::XMLTokenEnum XML_FILE_NAME
-include/xmloff/xmltoken.hxx:761
- enum xmloff::token::XMLTokenEnum XML_FILL_CHARACTER
include/xmloff/xmltoken.hxx:763
- enum xmloff::token::XMLTokenEnum XML_FILL_GRADIENT_NAME
+ enum xmloff::token::XMLTokenEnum XML_FAMILY
include/xmloff/xmltoken.hxx:764
- enum xmloff::token::XMLTokenEnum XML_FILL_HATCH_NAME
+ enum xmloff::token::XMLTokenEnum XML_FAST
include/xmloff/xmltoken.hxx:765
- enum xmloff::token::XMLTokenEnum XML_FILL_HATCH_SOLID
-include/xmloff/xmltoken.hxx:766
- enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE
+ enum xmloff::token::XMLTokenEnum XML_FENCE
include/xmloff/xmltoken.hxx:767
- enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_HEIGHT
-include/xmloff/xmltoken.hxx:768
- enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_NAME
+ enum xmloff::token::XMLTokenEnum XML_FILE_NAME
include/xmloff/xmltoken.hxx:769
- enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_REF_POINT
-include/xmloff/xmltoken.hxx:770
- enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_REF_POINT_X
+ enum xmloff::token::XMLTokenEnum XML_FILL_CHARACTER
include/xmloff/xmltoken.hxx:771
- enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_REF_POINT_Y
+ enum xmloff::token::XMLTokenEnum XML_FILL_GRADIENT_NAME
include/xmloff/xmltoken.hxx:772
- enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_WIDTH
+ enum xmloff::token::XMLTokenEnum XML_FILL_HATCH_NAME
include/xmloff/xmltoken.hxx:773
- enum xmloff::token::XMLTokenEnum XML_FILTER
+ enum xmloff::token::XMLTokenEnum XML_FILL_HATCH_SOLID
include/xmloff/xmltoken.hxx:774
- enum xmloff::token::XMLTokenEnum XML_FILTER_AND
+ enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE
include/xmloff/xmltoken.hxx:775
- enum xmloff::token::XMLTokenEnum XML_FILTER_CONDITION
+ enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_HEIGHT
include/xmloff/xmltoken.hxx:776
- enum xmloff::token::XMLTokenEnum XML_FILTER_NAME
+ enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_NAME
include/xmloff/xmltoken.hxx:777
- enum xmloff::token::XMLTokenEnum XML_FILTER_OPTIONS
+ enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_REF_POINT
include/xmloff/xmltoken.hxx:778
- enum xmloff::token::XMLTokenEnum XML_FILTER_OR
+ enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_REF_POINT_X
include/xmloff/xmltoken.hxx:779
- enum xmloff::token::XMLTokenEnum XML_FILTER_SET_ITEM
+ enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_REF_POINT_Y
include/xmloff/xmltoken.hxx:780
- enum xmloff::token::XMLTokenEnum XML_FINE_DASHED
+ enum xmloff::token::XMLTokenEnum XML_FILL_IMAGE_WIDTH
include/xmloff/xmltoken.hxx:781
+ enum xmloff::token::XMLTokenEnum XML_FILL_RULE
+include/xmloff/xmltoken.hxx:789
+ enum xmloff::token::XMLTokenEnum XML_FINE_DASHED
+include/xmloff/xmltoken.hxx:790
enum xmloff::token::XMLTokenEnum XML_FIRST_DATE_TIME
-include/xmloff/xmltoken.hxx:782
+include/xmloff/xmltoken.hxx:791
enum xmloff::token::XMLTokenEnum XML_FIRST_PAGE
-include/xmloff/xmltoken.hxx:783
+include/xmloff/xmltoken.hxx:792
enum xmloff::token::XMLTokenEnum XML_FIRST_PAGE_NUMBER
-include/xmloff/xmltoken.hxx:784
+include/xmloff/xmltoken.hxx:793
enum xmloff::token::XMLTokenEnum XML_FIT_TO_CONTOUR
-include/xmloff/xmltoken.hxx:785
+include/xmloff/xmltoken.hxx:794
enum xmloff::token::XMLTokenEnum XML_FIT_TO_SIZE
-include/xmloff/xmltoken.hxx:786
+include/xmloff/xmltoken.hxx:795
enum xmloff::token::XMLTokenEnum XML_FIX
-include/xmloff/xmltoken.hxx:787
+include/xmloff/xmltoken.hxx:796
enum xmloff::token::XMLTokenEnum XML_FIXED
-include/xmloff/xmltoken.hxx:788
+include/xmloff/xmltoken.hxx:797
enum xmloff::token::XMLTokenEnum XML_FLAT
-include/xmloff/xmltoken.hxx:790
+include/xmloff/xmltoken.hxx:799
enum xmloff::token::XMLTokenEnum XML_FLOATING_FRAME
-include/xmloff/xmltoken.hxx:791
+include/xmloff/xmltoken.hxx:800
enum xmloff::token::XMLTokenEnum XML_FLOOR
-include/xmloff/xmltoken.hxx:792
+include/xmloff/xmltoken.hxx:801
enum xmloff::token::XMLTokenEnum XML_FN
-include/xmloff/xmltoken.hxx:793
+include/xmloff/xmltoken.hxx:802
enum xmloff::token::XMLTokenEnum XML_FOCAL_LENGTH
-include/xmloff/xmltoken.hxx:794
+include/xmloff/xmltoken.hxx:803
enum xmloff::token::XMLTokenEnum XML_FONT_CHAR_WIDTH
-include/xmloff/xmltoken.hxx:795
+include/xmloff/xmltoken.hxx:804
enum xmloff::token::XMLTokenEnum XML_FONT_CHARSET
-include/xmloff/xmltoken.hxx:796
+include/xmloff/xmltoken.hxx:805
enum xmloff::token::XMLTokenEnum XML_FONT_CHARSET_ASIAN
-include/xmloff/xmltoken.hxx:797
+include/xmloff/xmltoken.hxx:806
enum xmloff::token::XMLTokenEnum XML_FONT_CHARSET_COMPLEX
-include/xmloff/xmltoken.hxx:798
+include/xmloff/xmltoken.hxx:807
enum xmloff::token::XMLTokenEnum XML_FONT_COLOR
-include/xmloff/xmltoken.hxx:799
+include/xmloff/xmltoken.hxx:808
enum xmloff::token::XMLTokenEnum XML_FONT_DECL
-include/xmloff/xmltoken.hxx:800
+include/xmloff/xmltoken.hxx:809
enum xmloff::token::XMLTokenEnum XML_FONT_DECLS
-include/xmloff/xmltoken.hxx:801
+include/xmloff/xmltoken.hxx:810
enum xmloff::token::XMLTokenEnum XML_FONT_FAMILY
-include/xmloff/xmltoken.hxx:802
+include/xmloff/xmltoken.hxx:811
enum xmloff::token::XMLTokenEnum XML_FONT_FAMILY_ASIAN
-include/xmloff/xmltoken.hxx:803
+include/xmloff/xmltoken.hxx:812
enum xmloff::token::XMLTokenEnum XML_FONT_FAMILY_COMPLEX
-include/xmloff/xmltoken.hxx:804
+include/xmloff/xmltoken.hxx:813
enum xmloff::token::XMLTokenEnum XML_FONT_FAMILY_GENERIC
-include/xmloff/xmltoken.hxx:805
+include/xmloff/xmltoken.hxx:814
enum xmloff::token::XMLTokenEnum XML_FONT_FAMILY_GENERIC_ASIAN
-include/xmloff/xmltoken.hxx:806
+include/xmloff/xmltoken.hxx:815
enum xmloff::token::XMLTokenEnum XML_FONT_FAMILY_GENERIC_COMPLEX
-include/xmloff/xmltoken.hxx:807
+include/xmloff/xmltoken.hxx:816
enum xmloff::token::XMLTokenEnum XML_FONT_KERNING
-include/xmloff/xmltoken.hxx:808
+include/xmloff/xmltoken.hxx:817
enum xmloff::token::XMLTokenEnum XML_FONT_NAME
-include/xmloff/xmltoken.hxx:809
+include/xmloff/xmltoken.hxx:818
enum xmloff::token::XMLTokenEnum XML_FONT_NAME_ASIAN
-include/xmloff/xmltoken.hxx:810
+include/xmloff/xmltoken.hxx:819
enum xmloff::token::XMLTokenEnum XML_FONT_NAME_COMPLEX
-include/xmloff/xmltoken.hxx:811
+include/xmloff/xmltoken.hxx:820
enum xmloff::token::XMLTokenEnum XML_FONT_PITCH
-include/xmloff/xmltoken.hxx:812
+include/xmloff/xmltoken.hxx:821
enum xmloff::token::XMLTokenEnum XML_FONT_PITCH_ASIAN
-include/xmloff/xmltoken.hxx:813
+include/xmloff/xmltoken.hxx:822
enum xmloff::token::XMLTokenEnum XML_FONT_PITCH_COMPLEX
-include/xmloff/xmltoken.hxx:814
+include/xmloff/xmltoken.hxx:823
enum xmloff::token::XMLTokenEnum XML_FONT_RELIEF
-include/xmloff/xmltoken.hxx:816
+include/xmloff/xmltoken.hxx:825
enum xmloff::token::XMLTokenEnum XML_FONT_SIZE_ASIAN
-include/xmloff/xmltoken.hxx:817
+include/xmloff/xmltoken.hxx:826
enum xmloff::token::XMLTokenEnum XML_FONT_SIZE_COMPLEX
-include/xmloff/xmltoken.hxx:818
+include/xmloff/xmltoken.hxx:827
enum xmloff::token::XMLTokenEnum XML_FONT_SIZE_REL
-include/xmloff/xmltoken.hxx:819
+include/xmloff/xmltoken.hxx:828
enum xmloff::token::XMLTokenEnum XML_FONT_SIZE_REL_ASIAN
-include/xmloff/xmltoken.hxx:820
+include/xmloff/xmltoken.hxx:829
enum xmloff::token::XMLTokenEnum XML_FONT_SIZE_REL_COMPLEX
-include/xmloff/xmltoken.hxx:822
+include/xmloff/xmltoken.hxx:831
enum xmloff::token::XMLTokenEnum XML_FONT_STYLE_ASIAN
-include/xmloff/xmltoken.hxx:823
+include/xmloff/xmltoken.hxx:832
enum xmloff::token::XMLTokenEnum XML_FONT_STYLE_COMPLEX
-include/xmloff/xmltoken.hxx:824
+include/xmloff/xmltoken.hxx:833
enum xmloff::token::XMLTokenEnum XML_FONT_STYLE_NAME
-include/xmloff/xmltoken.hxx:825
+include/xmloff/xmltoken.hxx:834
enum xmloff::token::XMLTokenEnum XML_FONT_STYLE_NAME_ASIAN
-include/xmloff/xmltoken.hxx:826
+include/xmloff/xmltoken.hxx:835
enum xmloff::token::XMLTokenEnum XML_FONT_STYLE_NAME_COMPLEX
-include/xmloff/xmltoken.hxx:827
+include/xmloff/xmltoken.hxx:836
enum xmloff::token::XMLTokenEnum XML_FONT_VARIANT
-include/xmloff/xmltoken.hxx:829
+include/xmloff/xmltoken.hxx:838
enum xmloff::token::XMLTokenEnum XML_FONT_WEIGHT_ASIAN
-include/xmloff/xmltoken.hxx:830
+include/xmloff/xmltoken.hxx:839
enum xmloff::token::XMLTokenEnum XML_FONT_WEIGHT_COMPLEX
-include/xmloff/xmltoken.hxx:831
+include/xmloff/xmltoken.hxx:840
enum xmloff::token::XMLTokenEnum XML_FONT_WIDTH
-include/xmloff/xmltoken.hxx:832
+include/xmloff/xmltoken.hxx:841
enum xmloff::token::XMLTokenEnum XML_FONT_WORD_LINE_MODE
-include/xmloff/xmltoken.hxx:833
+include/xmloff/xmltoken.hxx:842
enum xmloff::token::XMLTokenEnum XML_FONTFAMILY
-include/xmloff/xmltoken.hxx:834
+include/xmloff/xmltoken.hxx:843
enum xmloff::token::XMLTokenEnum XML_FONTSIZE
-include/xmloff/xmltoken.hxx:835
+include/xmloff/xmltoken.hxx:844
enum xmloff::token::XMLTokenEnum XML_FONTSTYLE
-include/xmloff/xmltoken.hxx:836
+include/xmloff/xmltoken.hxx:845
enum xmloff::token::XMLTokenEnum XML_FONTWEIGHT
-include/xmloff/xmltoken.hxx:837
+include/xmloff/xmltoken.hxx:846
enum xmloff::token::XMLTokenEnum XML_FONTWORK_ADJUST
-include/xmloff/xmltoken.hxx:838
+include/xmloff/xmltoken.hxx:847
enum xmloff::token::XMLTokenEnum XML_FONTWORK_DISTANCE
-include/xmloff/xmltoken.hxx:839
+include/xmloff/xmltoken.hxx:848
enum xmloff::token::XMLTokenEnum XML_FONTWORK_FORM
-include/xmloff/xmltoken.hxx:840
+include/xmloff/xmltoken.hxx:849
enum xmloff::token::XMLTokenEnum XML_FONTWORK_HIDE_FORM
-include/xmloff/xmltoken.hxx:841
+include/xmloff/xmltoken.hxx:850
enum xmloff::token::XMLTokenEnum XML_FONTWORK_MIRROR
-include/xmloff/xmltoken.hxx:842
+include/xmloff/xmltoken.hxx:851
enum xmloff::token::XMLTokenEnum XML_FONTWORK_OUTLINE
-include/xmloff/xmltoken.hxx:843
+include/xmloff/xmltoken.hxx:852
enum xmloff::token::XMLTokenEnum XML_FONTWORK_SHADOW
-include/xmloff/xmltoken.hxx:844
+include/xmloff/xmltoken.hxx:853
enum xmloff::token::XMLTokenEnum XML_FONTWORK_SHADOW_COLOR
-include/xmloff/xmltoken.hxx:845
+include/xmloff/xmltoken.hxx:854
enum xmloff::token::XMLTokenEnum XML_FONTWORK_SHADOW_OFFSET_X
-include/xmloff/xmltoken.hxx:846
+include/xmloff/xmltoken.hxx:855
enum xmloff::token::XMLTokenEnum XML_FONTWORK_SHADOW_OFFSET_Y
-include/xmloff/xmltoken.hxx:847
+include/xmloff/xmltoken.hxx:856
enum xmloff::token::XMLTokenEnum XML_FONTWORK_SHADOW_TRANSPARENCE
-include/xmloff/xmltoken.hxx:848
+include/xmloff/xmltoken.hxx:857
enum xmloff::token::XMLTokenEnum XML_FONTWORK_START
-include/xmloff/xmltoken.hxx:849
+include/xmloff/xmltoken.hxx:858
enum xmloff::token::XMLTokenEnum XML_FONTWORK_STYLE
-include/xmloff/xmltoken.hxx:850
+include/xmloff/xmltoken.hxx:859
enum xmloff::token::XMLTokenEnum XML_FOOTER
-include/xmloff/xmltoken.hxx:851
+include/xmloff/xmltoken.hxx:860
enum xmloff::token::XMLTokenEnum XML_FOOTER_FIRST
-include/xmloff/xmltoken.hxx:852
+include/xmloff/xmltoken.hxx:861
enum xmloff::token::XMLTokenEnum XML_FOOTER_LEFT
-include/xmloff/xmltoken.hxx:853
+include/xmloff/xmltoken.hxx:862
enum xmloff::token::XMLTokenEnum XML_FOOTER_STYLE
-include/xmloff/xmltoken.hxx:854
+include/xmloff/xmltoken.hxx:863
enum xmloff::token::XMLTokenEnum XML_FOOTER_VISIBLE
-include/xmloff/xmltoken.hxx:855
+include/xmloff/xmltoken.hxx:864
enum xmloff::token::XMLTokenEnum XML_FOOTNOTE
-include/xmloff/xmltoken.hxx:856
+include/xmloff/xmltoken.hxx:865
enum xmloff::token::XMLTokenEnum XML_FOOTNOTE_BODY
-include/xmloff/xmltoken.hxx:857
+include/xmloff/xmltoken.hxx:866
enum xmloff::token::XMLTokenEnum XML_FOOTNOTE_CITATION
-include/xmloff/xmltoken.hxx:858
+include/xmloff/xmltoken.hxx:867
enum xmloff::token::XMLTokenEnum XML_FOOTNOTE_CONTINUATION_NOTICE_BACKWARD
-include/xmloff/xmltoken.hxx:859
+include/xmloff/xmltoken.hxx:868
enum xmloff::token::XMLTokenEnum XML_FOOTNOTE_CONTINUATION_NOTICE_FORWARD
-include/xmloff/xmltoken.hxx:860
+include/xmloff/xmltoken.hxx:869
enum xmloff::token::XMLTokenEnum XML_FOOTNOTE_MAX_HEIGHT
-include/xmloff/xmltoken.hxx:861
+include/xmloff/xmltoken.hxx:870
enum xmloff::token::XMLTokenEnum XML_FOOTNOTE_REF
-include/xmloff/xmltoken.hxx:862
+include/xmloff/xmltoken.hxx:871
enum xmloff::token::XMLTokenEnum XML_FOOTNOTE_SEP
-include/xmloff/xmltoken.hxx:863
+include/xmloff/xmltoken.hxx:872
enum xmloff::token::XMLTokenEnum XML_FOOTNOTES_CONFIGURATION
-include/xmloff/xmltoken.hxx:864
+include/xmloff/xmltoken.hxx:873
enum xmloff::token::XMLTokenEnum XML_FOOTNOTES_POSITION
-include/xmloff/xmltoken.hxx:865
+include/xmloff/xmltoken.hxx:874
enum xmloff::token::XMLTokenEnum XML_FORALL
-include/xmloff/xmltoken.hxx:866
+include/xmloff/xmltoken.hxx:875
enum xmloff::token::XMLTokenEnum XML_FORCE_MANUAL
-include/xmloff/xmltoken.hxx:867
+include/xmloff/xmltoken.hxx:876
enum xmloff::token::XMLTokenEnum XML_FOREGROUND
-include/xmloff/xmltoken.hxx:868
+include/xmloff/xmltoken.hxx:877
enum xmloff::token::XMLTokenEnum XML_FOREIGN_OBJECT
-include/xmloff/xmltoken.hxx:869
+include/xmloff/xmltoken.hxx:878
enum xmloff::token::XMLTokenEnum XML_FORMAT_CHANGE
-include/xmloff/xmltoken.hxx:870
+include/xmloff/xmltoken.hxx:879
enum xmloff::token::XMLTokenEnum XML_FORMAT_SOURCE
-include/xmloff/xmltoken.hxx:871
- enum xmloff::token::XMLTokenEnum XML_FORMATTING_ENTRY
-include/xmloff/xmltoken.hxx:872
+include/xmloff/xmltoken.hxx:881
enum xmloff::token::XMLTokenEnum XML_FORMS
-include/xmloff/xmltoken.hxx:873
- enum xmloff::token::XMLTokenEnum XML_FORMULA
-include/xmloff/xmltoken.hxx:874
+include/xmloff/xmltoken.hxx:883
enum xmloff::token::XMLTokenEnum XML_FORMULA_HIDDEN
-include/xmloff/xmltoken.hxx:875
+include/xmloff/xmltoken.hxx:884
enum xmloff::token::XMLTokenEnum XML_FORMULAS
-include/xmloff/xmltoken.hxx:876
+include/xmloff/xmltoken.hxx:885
enum xmloff::token::XMLTokenEnum XML_FRACTION
-include/xmloff/xmltoken.hxx:877
+include/xmloff/xmltoken.hxx:886
enum xmloff::token::XMLTokenEnum XML_FRAME
-include/xmloff/xmltoken.hxx:878
+include/xmloff/xmltoken.hxx:887
enum xmloff::token::XMLTokenEnum XML_FRAME_CONTENT
-include/xmloff/xmltoken.hxx:879
+include/xmloff/xmltoken.hxx:888
enum xmloff::token::XMLTokenEnum XML_FRAME_DISPLAY_BORDER
-include/xmloff/xmltoken.hxx:880
+include/xmloff/xmltoken.hxx:889
enum xmloff::token::XMLTokenEnum XML_FRAME_DISPLAY_SCROLLBAR
-include/xmloff/xmltoken.hxx:881
+include/xmloff/xmltoken.hxx:890
enum xmloff::token::XMLTokenEnum XML_FRAME_END_MARGIN
-include/xmloff/xmltoken.hxx:882
+include/xmloff/xmltoken.hxx:891
enum xmloff::token::XMLTokenEnum XML_FRAME_MARGIN_HORIZONTAL
-include/xmloff/xmltoken.hxx:883
+include/xmloff/xmltoken.hxx:892
enum xmloff::token::XMLTokenEnum XML_FRAME_MARGIN_VERTICAL
-include/xmloff/xmltoken.hxx:884
+include/xmloff/xmltoken.hxx:893
enum xmloff::token::XMLTokenEnum XML_FRAME_NAME
-include/xmloff/xmltoken.hxx:885
+include/xmloff/xmltoken.hxx:894
enum xmloff::token::XMLTokenEnum XML_FRAME_START_MARGIN
-include/xmloff/xmltoken.hxx:886
+include/xmloff/xmltoken.hxx:895
enum xmloff::token::XMLTokenEnum XML_FREEZE
-include/xmloff/xmltoken.hxx:887
+include/xmloff/xmltoken.hxx:896
enum xmloff::token::XMLTokenEnum XML_FREEZE_POSITION
-include/xmloff/xmltoken.hxx:888
+include/xmloff/xmltoken.hxx:897
enum xmloff::token::XMLTokenEnum XML_FROM_ANOTHER_TABLE
-include/xmloff/xmltoken.hxx:889
+include/xmloff/xmltoken.hxx:898
enum xmloff::token::XMLTokenEnum XML_FROM_BOTTOM
-include/xmloff/xmltoken.hxx:890
+include/xmloff/xmltoken.hxx:899
enum xmloff::token::XMLTokenEnum XML_FROM_CENTER
-include/xmloff/xmltoken.hxx:891
+include/xmloff/xmltoken.hxx:900
enum xmloff::token::XMLTokenEnum XML_FROM_INSIDE
-include/xmloff/xmltoken.hxx:892
+include/xmloff/xmltoken.hxx:901
enum xmloff::token::XMLTokenEnum XML_FROM_LEFT
-include/xmloff/xmltoken.hxx:893
+include/xmloff/xmltoken.hxx:902
enum xmloff::token::XMLTokenEnum XML_FROM_LOWER_LEFT
-include/xmloff/xmltoken.hxx:894
+include/xmloff/xmltoken.hxx:903
enum xmloff::token::XMLTokenEnum XML_FROM_LOWER_RIGHT
-include/xmloff/xmltoken.hxx:895
+include/xmloff/xmltoken.hxx:904
enum xmloff::token::XMLTokenEnum XML_FROM_RIGHT
-include/xmloff/xmltoken.hxx:896
+include/xmloff/xmltoken.hxx:905
enum xmloff::token::XMLTokenEnum XML_FROM_SAME_TABLE
-include/xmloff/xmltoken.hxx:897
+include/xmloff/xmltoken.hxx:906
enum xmloff::token::XMLTokenEnum XML_FROM_TOP
-include/xmloff/xmltoken.hxx:898
+include/xmloff/xmltoken.hxx:907
enum xmloff::token::XMLTokenEnum XML_FROM_UPPER_LEFT
-include/xmloff/xmltoken.hxx:899
+include/xmloff/xmltoken.hxx:908
enum xmloff::token::XMLTokenEnum XML_FROM_UPPER_RIGHT
-include/xmloff/xmltoken.hxx:900
+include/xmloff/xmltoken.hxx:909
enum xmloff::token::XMLTokenEnum XML_FUCHSIA
-include/xmloff/xmltoken.hxx:901
+include/xmloff/xmltoken.hxx:910
enum xmloff::token::XMLTokenEnum XML_FULL
-include/xmloff/xmltoken.hxx:902
+include/xmloff/xmltoken.hxx:911
enum xmloff::token::XMLTokenEnum XML_FULL_SCREEN
-include/xmloff/xmltoken.hxx:903
- enum xmloff::token::XMLTokenEnum XML_FUNCTION
-include/xmloff/xmltoken.hxx:904
+include/xmloff/xmltoken.hxx:913
enum xmloff::token::XMLTokenEnum XML_FX
-include/xmloff/xmltoken.hxx:905
+include/xmloff/xmltoken.hxx:914
enum xmloff::token::XMLTokenEnum XML_FY
-include/xmloff/xmltoken.hxx:906
+include/xmloff/xmltoken.hxx:915
enum xmloff::token::XMLTokenEnum XML_G
-include/xmloff/xmltoken.hxx:907
+include/xmloff/xmltoken.hxx:916
enum xmloff::token::XMLTokenEnum XML_GAMMA
-include/xmloff/xmltoken.hxx:908
+include/xmloff/xmltoken.hxx:917
enum xmloff::token::XMLTokenEnum XML_GAP
-include/xmloff/xmltoken.hxx:909
+include/xmloff/xmltoken.hxx:918
enum xmloff::token::XMLTokenEnum XML_GAP_WIDTH
-include/xmloff/xmltoken.hxx:910
+include/xmloff/xmltoken.hxx:919
enum xmloff::token::XMLTokenEnum XML_GCD
-include/xmloff/xmltoken.hxx:911
+include/xmloff/xmltoken.hxx:920
enum xmloff::token::XMLTokenEnum XML_GENERATOR
-include/xmloff/xmltoken.hxx:912
+include/xmloff/xmltoken.hxx:921
enum xmloff::token::XMLTokenEnum XML_GEQ
-include/xmloff/xmltoken.hxx:914
+include/xmloff/xmltoken.hxx:922
enum xmloff::token::XMLTokenEnum XML_GOURAUD
-include/xmloff/xmltoken.hxx:915
- enum xmloff::token::XMLTokenEnum XML_GRADIENT
-include/xmloff/xmltoken.hxx:916
+include/xmloff/xmltoken.hxx:924
enum xmloff::token::XMLTokenEnum XML_GRADIENT_ANGLE
-include/xmloff/xmltoken.hxx:917
+include/xmloff/xmltoken.hxx:925
enum xmloff::token::XMLTokenEnum XML_GRADIENT_BORDER
-include/xmloff/xmltoken.hxx:918
+include/xmloff/xmltoken.hxx:926
enum xmloff::token::XMLTokenEnum XML_GRADIENT_STEP_COUNT
-include/xmloff/xmltoken.hxx:919
+include/xmloff/xmltoken.hxx:927
enum xmloff::token::XMLTokenEnum XML_GRADIENT_STYLE
-include/xmloff/xmltoken.hxx:920
+include/xmloff/xmltoken.hxx:928
enum xmloff::token::XMLTokenEnum XML_GRADIENTSTYLE_AXIAL
-include/xmloff/xmltoken.hxx:921
+include/xmloff/xmltoken.hxx:929
enum xmloff::token::XMLTokenEnum XML_GRADIENTSTYLE_ELLIPSOID
-include/xmloff/xmltoken.hxx:922
+include/xmloff/xmltoken.hxx:930
enum xmloff::token::XMLTokenEnum XML_GRADIENTSTYLE_LINEAR
-include/xmloff/xmltoken.hxx:923
+include/xmloff/xmltoken.hxx:931
enum xmloff::token::XMLTokenEnum XML_GRADIENTSTYLE_RADIAL
-include/xmloff/xmltoken.hxx:924
+include/xmloff/xmltoken.hxx:932
enum xmloff::token::XMLTokenEnum XML_GRADIENTSTYLE_RECTANGULAR
-include/xmloff/xmltoken.hxx:925
+include/xmloff/xmltoken.hxx:933
enum xmloff::token::XMLTokenEnum XML_GRADIENTSTYLE_SQUARE
-include/xmloff/xmltoken.hxx:926
+include/xmloff/xmltoken.hxx:934
enum xmloff::token::XMLTokenEnum XML_GRADIENTTRANSFORM
-include/xmloff/xmltoken.hxx:927
- enum xmloff::token::XMLTokenEnum XML_GRAND_TOTAL
-include/xmloff/xmltoken.hxx:928
+include/xmloff/xmltoken.hxx:936
enum xmloff::token::XMLTokenEnum XML_GRAPHIC
-include/xmloff/xmltoken.hxx:929
+include/xmloff/xmltoken.hxx:937
enum xmloff::token::XMLTokenEnum XML_GRAY
-include/xmloff/xmltoken.hxx:930
+include/xmloff/xmltoken.hxx:938
enum xmloff::token::XMLTokenEnum XML_GREEN
-include/xmloff/xmltoken.hxx:931
+include/xmloff/xmltoken.hxx:939
enum xmloff::token::XMLTokenEnum XML_GREYSCALE
-include/xmloff/xmltoken.hxx:932
+include/xmloff/xmltoken.hxx:940
enum xmloff::token::XMLTokenEnum XML_GRID
-include/xmloff/xmltoken.hxx:933
+include/xmloff/xmltoken.hxx:941
enum xmloff::token::XMLTokenEnum XML_GROOVE
-include/xmloff/xmltoken.hxx:934
- enum xmloff::token::XMLTokenEnum XML_GROUP_BY_FIELD_NUMBER
-include/xmloff/xmltoken.hxx:935
+include/xmloff/xmltoken.hxx:943
enum xmloff::token::XMLTokenEnum XML_GROUP_NAME
-include/xmloff/xmltoken.hxx:936
+include/xmloff/xmltoken.hxx:944
enum xmloff::token::XMLTokenEnum XML_GROUPING
-include/xmloff/xmltoken.hxx:937
+include/xmloff/xmltoken.hxx:945
enum xmloff::token::XMLTokenEnum XML_GT
-include/xmloff/xmltoken.hxx:938
+include/xmloff/xmltoken.hxx:946
enum xmloff::token::XMLTokenEnum XML_GUIDE_DISTANCE
-include/xmloff/xmltoken.hxx:939
+include/xmloff/xmltoken.hxx:947
enum xmloff::token::XMLTokenEnum XML_GUIDE_OVERHANG
-include/xmloff/xmltoken.hxx:940
+include/xmloff/xmltoken.hxx:948
enum xmloff::token::XMLTokenEnum XML_H
-include/xmloff/xmltoken.hxx:941
+include/xmloff/xmltoken.hxx:949
enum xmloff::token::XMLTokenEnum XML_HANGING
-include/xmloff/xmltoken.hxx:942
- enum xmloff::token::XMLTokenEnum XML_HAS_PERSISTENT_DATA
-include/xmloff/xmltoken.hxx:943
+include/xmloff/xmltoken.hxx:951
enum xmloff::token::XMLTokenEnum XML_HATCH
-include/xmloff/xmltoken.hxx:944
+include/xmloff/xmltoken.hxx:952
enum xmloff::token::XMLTokenEnum XML_HATCH_DISTANCE
-include/xmloff/xmltoken.hxx:945
+include/xmloff/xmltoken.hxx:953
enum xmloff::token::XMLTokenEnum XML_HATCH_STYLE
-include/xmloff/xmltoken.hxx:946
+include/xmloff/xmltoken.hxx:954
enum xmloff::token::XMLTokenEnum XML_HATCHSTYLE_DOUBLE
-include/xmloff/xmltoken.hxx:947
+include/xmloff/xmltoken.hxx:955
enum xmloff::token::XMLTokenEnum XML_HATCHSTYLE_SINGLE
-include/xmloff/xmltoken.hxx:948
+include/xmloff/xmltoken.hxx:956
enum xmloff::token::XMLTokenEnum XML_HATCHSTYLE_TRIPLE
-include/xmloff/xmltoken.hxx:949
+include/xmloff/xmltoken.hxx:957
enum xmloff::token::XMLTokenEnum XML_HEADER
-include/xmloff/xmltoken.hxx:950
+include/xmloff/xmltoken.hxx:958
enum xmloff::token::XMLTokenEnum XML_HEADER_FIRST
-include/xmloff/xmltoken.hxx:951
+include/xmloff/xmltoken.hxx:959
enum xmloff::token::XMLTokenEnum XML_HEADER_LEFT
-include/xmloff/xmltoken.hxx:952
+include/xmloff/xmltoken.hxx:960
enum xmloff::token::XMLTokenEnum XML_HEADER_STYLE
-include/xmloff/xmltoken.hxx:953
+include/xmloff/xmltoken.hxx:961
enum xmloff::token::XMLTokenEnum XML_HEADERS
-include/xmloff/xmltoken.hxx:955
+include/xmloff/xmltoken.hxx:963
enum xmloff::token::XMLTokenEnum XML_HELP
-include/xmloff/xmltoken.hxx:956
+include/xmloff/xmltoken.hxx:964
enum xmloff::token::XMLTokenEnum XML_HELP_FILE_NAME
-include/xmloff/xmltoken.hxx:957
+include/xmloff/xmltoken.hxx:965
enum xmloff::token::XMLTokenEnum XML_HELP_ID
-include/xmloff/xmltoken.hxx:958
- enum xmloff::token::XMLTokenEnum XML_HELP_MESSAGE
-include/xmloff/xmltoken.hxx:959
+include/xmloff/xmltoken.hxx:967
enum xmloff::token::XMLTokenEnum XML_HIDDEN
-include/xmloff/xmltoken.hxx:960
+include/xmloff/xmltoken.hxx:968
enum xmloff::token::XMLTokenEnum XML_HIDDEN_AND_PROTECTED
-include/xmloff/xmltoken.hxx:961
+include/xmloff/xmltoken.hxx:969
enum xmloff::token::XMLTokenEnum XML_HIDDEN_PARAGRAPH
-include/xmloff/xmltoken.hxx:962
+include/xmloff/xmltoken.hxx:970
enum xmloff::token::XMLTokenEnum XML_HIDDEN_TEXT
-include/xmloff/xmltoken.hxx:963
+include/xmloff/xmltoken.hxx:971
enum xmloff::token::XMLTokenEnum XML_HIDE
-include/xmloff/xmltoken.hxx:964
+include/xmloff/xmltoken.hxx:972
enum xmloff::token::XMLTokenEnum XML_HIDE_SHAPE
-include/xmloff/xmltoken.hxx:965
+include/xmloff/xmltoken.hxx:973
enum xmloff::token::XMLTokenEnum XML_HIDE_TEXT
-include/xmloff/xmltoken.hxx:966
- enum xmloff::token::XMLTokenEnum XML_HIGHLIGHTED_RANGE
-include/xmloff/xmltoken.hxx:967
+include/xmloff/xmltoken.hxx:975
enum xmloff::token::XMLTokenEnum XML_HINT
-include/xmloff/xmltoken.hxx:968
+include/xmloff/xmltoken.hxx:976
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL
-include/xmloff/xmltoken.hxx:969
+include/xmloff/xmltoken.hxx:977
enum xmloff::token::XMLTokenEnum XML_HORIZONTALSTRIKE
-include/xmloff/xmltoken.hxx:970
+include/xmloff/xmltoken.hxx:978
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_LINES
-include/xmloff/xmltoken.hxx:975
+include/xmloff/xmltoken.hxx:983
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_ON_LEFT_PAGES
-include/xmloff/xmltoken.hxx:976
+include/xmloff/xmltoken.hxx:984
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_ON_RIGHT_PAGES
-include/xmloff/xmltoken.hxx:977
+include/xmloff/xmltoken.hxx:985
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_POS
-include/xmloff/xmltoken.hxx:978
+include/xmloff/xmltoken.hxx:986
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_REL
-include/xmloff/xmltoken.hxx:979
+include/xmloff/xmltoken.hxx:987
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_SCROLLBAR_WIDTH
-include/xmloff/xmltoken.hxx:980
+include/xmloff/xmltoken.hxx:988
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_SEGMENTS
-include/xmloff/xmltoken.hxx:981
+include/xmloff/xmltoken.hxx:989
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_SPLIT_MODE
-include/xmloff/xmltoken.hxx:982
+include/xmloff/xmltoken.hxx:990
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_SPLIT_POSITION
-include/xmloff/xmltoken.hxx:983
+include/xmloff/xmltoken.hxx:991
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_STRIPES
-include/xmloff/xmltoken.hxx:984
+include/xmloff/xmltoken.hxx:992
enum xmloff::token::XMLTokenEnum XML_HOURS
-include/xmloff/xmltoken.hxx:985
+include/xmloff/xmltoken.hxx:993
enum xmloff::token::XMLTokenEnum XML_HOWPUBLISHED
-include/xmloff/xmltoken.hxx:986
- enum xmloff::token::XMLTokenEnum XML_HREF
-include/xmloff/xmltoken.hxx:987
+include/xmloff/xmltoken.hxx:995
enum xmloff::token::XMLTokenEnum XML_HTML
-include/xmloff/xmltoken.hxx:988
+include/xmloff/xmltoken.hxx:996
enum xmloff::token::XMLTokenEnum XML_HYPERLINK
-include/xmloff/xmltoken.hxx:989
+include/xmloff/xmltoken.hxx:997
enum xmloff::token::XMLTokenEnum XML_HYPERLINK_BEHAVIOUR
-include/xmloff/xmltoken.hxx:990
+include/xmloff/xmltoken.hxx:998
enum xmloff::token::XMLTokenEnum XML_HYPHENATE
-include/xmloff/xmltoken.hxx:991
+include/xmloff/xmltoken.hxx:999
enum xmloff::token::XMLTokenEnum XML_HYPHENATION_KEEP
-include/xmloff/xmltoken.hxx:992
+include/xmloff/xmltoken.hxx:1000
enum xmloff::token::XMLTokenEnum XML_HYPHENATION_LADDER_COUNT
-include/xmloff/xmltoken.hxx:993
+include/xmloff/xmltoken.hxx:1001
enum xmloff::token::XMLTokenEnum XML_HYPHENATION_PUSH_CHAR_COUNT
-include/xmloff/xmltoken.hxx:994
+include/xmloff/xmltoken.hxx:1002
enum xmloff::token::XMLTokenEnum XML_HYPHENATION_REMAIN_CHAR_COUNT
-include/xmloff/xmltoken.hxx:995
+include/xmloff/xmltoken.hxx:1003
enum xmloff::token::XMLTokenEnum XML_I
-include/xmloff/xmltoken.hxx:996
+include/xmloff/xmltoken.hxx:1004
enum xmloff::token::XMLTokenEnum XML_ICON
-include/xmloff/xmltoken.hxx:997
- enum xmloff::token::XMLTokenEnum XML_ICON_SET
-include/xmloff/xmltoken.hxx:998
- enum xmloff::token::XMLTokenEnum XML_ICON_SET_TYPE
-include/xmloff/xmltoken.hxx:1000
+include/xmloff/xmltoken.hxx:1008
enum xmloff::token::XMLTokenEnum XML_IDENT
-include/xmloff/xmltoken.hxx:1001
+include/xmloff/xmltoken.hxx:1009
enum xmloff::token::XMLTokenEnum XML_IDENTIFIER
-include/xmloff/xmltoken.hxx:1002
- enum xmloff::token::XMLTokenEnum XML_IDENTIFY_CATEGORIES
-include/xmloff/xmltoken.hxx:1003
+include/xmloff/xmltoken.hxx:1011
enum xmloff::token::XMLTokenEnum XML_IDEOGRAPH_ALPHA
-include/xmloff/xmltoken.hxx:1004
+include/xmloff/xmltoken.hxx:1012
enum xmloff::token::XMLTokenEnum XML_IGNORE_CASE
-include/xmloff/xmltoken.hxx:1005
- enum xmloff::token::XMLTokenEnum XML_IGNORE_EMPTY_ROWS
-include/xmloff/xmltoken.hxx:1006
- enum xmloff::token::XMLTokenEnum XML_IGNORE_SELECTED_PAGE
-include/xmloff/xmltoken.hxx:1007
+include/xmloff/xmltoken.hxx:1015
enum xmloff::token::XMLTokenEnum XML_ILLUSTRATION_INDEX
-include/xmloff/xmltoken.hxx:1008
+include/xmloff/xmltoken.hxx:1016
enum xmloff::token::XMLTokenEnum XML_ILLUSTRATION_INDEX_ENTRY_TEMPLATE
-include/xmloff/xmltoken.hxx:1009
+include/xmloff/xmltoken.hxx:1017
enum xmloff::token::XMLTokenEnum XML_ILLUSTRATION_INDEX_SOURCE
-include/xmloff/xmltoken.hxx:1011
+include/xmloff/xmltoken.hxx:1019
enum xmloff::token::XMLTokenEnum XML_IMAGE_COUNT
-include/xmloff/xmltoken.hxx:1012
+include/xmloff/xmltoken.hxx:1020
enum xmloff::token::XMLTokenEnum XML_IMAGE_MAP
-include/xmloff/xmltoken.hxx:1013
+include/xmloff/xmltoken.hxx:1021
enum xmloff::token::XMLTokenEnum XML_IMPLIES
-include/xmloff/xmltoken.hxx:1014
+include/xmloff/xmltoken.hxx:1022
enum xmloff::token::XMLTokenEnum XML_IN
-include/xmloff/xmltoken.hxx:1015
+include/xmloff/xmltoken.hxx:1023
enum xmloff::token::XMLTokenEnum XML_IN_RANGE
-include/xmloff/xmltoken.hxx:1016
+include/xmloff/xmltoken.hxx:1024
enum xmloff::token::XMLTokenEnum XML_INBOOK
-include/xmloff/xmltoken.hxx:1017
+include/xmloff/xmltoken.hxx:1025
enum xmloff::token::XMLTokenEnum XML_INCOLLECTION
-include/xmloff/xmltoken.hxx:1018
+include/xmloff/xmltoken.hxx:1026
enum xmloff::token::XMLTokenEnum XML_INCREMENT
-include/xmloff/xmltoken.hxx:1019
- enum xmloff::token::XMLTokenEnum XML_INDEX
-include/xmloff/xmltoken.hxx:1020
+include/xmloff/xmltoken.hxx:1028
enum xmloff::token::XMLTokenEnum XML_INDEX_BODY
-include/xmloff/xmltoken.hxx:1021
+include/xmloff/xmltoken.hxx:1029
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_BIBLIOGRAPHY
-include/xmloff/xmltoken.hxx:1022
+include/xmloff/xmltoken.hxx:1030
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_CHAPTER
-include/xmloff/xmltoken.hxx:1023
+include/xmloff/xmltoken.hxx:1031
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_CHAPTER_NUMBER
-include/xmloff/xmltoken.hxx:1024
+include/xmloff/xmltoken.hxx:1032
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_LINK_END
-include/xmloff/xmltoken.hxx:1025
+include/xmloff/xmltoken.hxx:1033
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_LINK_START
-include/xmloff/xmltoken.hxx:1026
+include/xmloff/xmltoken.hxx:1034
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_PAGE_NUMBER
-include/xmloff/xmltoken.hxx:1027
+include/xmloff/xmltoken.hxx:1035
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_SPAN
-include/xmloff/xmltoken.hxx:1028
+include/xmloff/xmltoken.hxx:1036
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_TAB_STOP
-include/xmloff/xmltoken.hxx:1029
+include/xmloff/xmltoken.hxx:1037
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_TEMPLATE
-include/xmloff/xmltoken.hxx:1030
+include/xmloff/xmltoken.hxx:1038
enum xmloff::token::XMLTokenEnum XML_INDEX_ENTRY_TEXT
-include/xmloff/xmltoken.hxx:1031
+include/xmloff/xmltoken.hxx:1039
enum xmloff::token::XMLTokenEnum XML_INDEX_NAME
-include/xmloff/xmltoken.hxx:1032
+include/xmloff/xmltoken.hxx:1040
enum xmloff::token::XMLTokenEnum XML_INDEX_SCOPE
-include/xmloff/xmltoken.hxx:1033
+include/xmloff/xmltoken.hxx:1041
enum xmloff::token::XMLTokenEnum XML_INDEX_SOURCE_STYLE
-include/xmloff/xmltoken.hxx:1034
+include/xmloff/xmltoken.hxx:1042
enum xmloff::token::XMLTokenEnum XML_INDEX_SOURCE_STYLES
-include/xmloff/xmltoken.hxx:1035
+include/xmloff/xmltoken.hxx:1043
enum xmloff::token::XMLTokenEnum XML_INDEX_TITLE
-include/xmloff/xmltoken.hxx:1036
+include/xmloff/xmltoken.hxx:1044
enum xmloff::token::XMLTokenEnum XML_INDEX_TITLE_TEMPLATE
-include/xmloff/xmltoken.hxx:1037
+include/xmloff/xmltoken.hxx:1045
enum xmloff::token::XMLTokenEnum XML_INFORMATION
-include/xmloff/xmltoken.hxx:1038
+include/xmloff/xmltoken.hxx:1046
enum xmloff::token::XMLTokenEnum XML_INITIAL_CREATOR
-include/xmloff/xmltoken.hxx:1039
+include/xmloff/xmltoken.hxx:1047
enum xmloff::token::XMLTokenEnum XML_INPROCEEDINGS
-include/xmloff/xmltoken.hxx:1040
- enum xmloff::token::XMLTokenEnum XML_INSERTION
-include/xmloff/xmltoken.hxx:1041
+include/xmloff/xmltoken.hxx:1051
enum xmloff::token::XMLTokenEnum XML_INSERTION_CUT_OFF
-include/xmloff/xmltoken.hxx:1042
- enum xmloff::token::XMLTokenEnum XML_INSERTION_POSITION
-include/xmloff/xmltoken.hxx:1043
+include/xmloff/xmltoken.hxx:1053
enum xmloff::token::XMLTokenEnum XML_INSET
-include/xmloff/xmltoken.hxx:1044
+include/xmloff/xmltoken.hxx:1054
enum xmloff::token::XMLTokenEnum XML_INSIDE
-include/xmloff/xmltoken.hxx:1045
+include/xmloff/xmltoken.hxx:1055
enum xmloff::token::XMLTokenEnum XML_INSTITUTION
-include/xmloff/xmltoken.hxx:1046
+include/xmloff/xmltoken.hxx:1056
enum xmloff::token::XMLTokenEnum XML_INT
-include/xmloff/xmltoken.hxx:1047
+include/xmloff/xmltoken.hxx:1057
enum xmloff::token::XMLTokenEnum XML_INTENSITY
-include/xmloff/xmltoken.hxx:1048
+include/xmloff/xmltoken.hxx:1058
+ enum xmloff::token::XMLTokenEnum XML_INTER_CHARACTER
+include/xmloff/xmltoken.hxx:1059
enum xmloff::token::XMLTokenEnum XML_INTERSECT
-include/xmloff/xmltoken.hxx:1049
+include/xmloff/xmltoken.hxx:1060
enum xmloff::token::XMLTokenEnum XML_INTERVAL
-include/xmloff/xmltoken.hxx:1050
+include/xmloff/xmltoken.hxx:1061
enum xmloff::token::XMLTokenEnum XML_INTERVAL_MAJOR
-include/xmloff/xmltoken.hxx:1051
+include/xmloff/xmltoken.hxx:1062
enum xmloff::token::XMLTokenEnum XML_INTERVAL_MINOR
-include/xmloff/xmltoken.hxx:1052
+include/xmloff/xmltoken.hxx:1063
enum xmloff::token::XMLTokenEnum XML_INTO_ENGLISH_NUMBER
-include/xmloff/xmltoken.hxx:1053
+include/xmloff/xmltoken.hxx:1064
enum xmloff::token::XMLTokenEnum XML_INVERSE
-include/xmloff/xmltoken.hxx:1054
- enum xmloff::token::XMLTokenEnum XML_IS_ACTIVE
-include/xmloff/xmltoken.hxx:1055
- enum xmloff::token::XMLTokenEnum XML_IS_DATA_LAYOUT_FIELD
-include/xmloff/xmltoken.hxx:1056
+include/xmloff/xmltoken.hxx:1067
enum xmloff::token::XMLTokenEnum XML_IS_HIDDEN
-include/xmloff/xmltoken.hxx:1057
- enum xmloff::token::XMLTokenEnum XML_IS_SELECTION
-include/xmloff/xmltoken.hxx:1058
+include/xmloff/xmltoken.hxx:1069
enum xmloff::token::XMLTokenEnum XML_ISBN
-include/xmloff/xmltoken.hxx:1059
+include/xmloff/xmltoken.hxx:1070
enum xmloff::token::XMLTokenEnum XML_ITALIC
-include/xmloff/xmltoken.hxx:1060
- enum xmloff::token::XMLTokenEnum XML_ITERATION
-include/xmloff/xmltoken.hxx:1061
+include/xmloff/xmltoken.hxx:1072
enum xmloff::token::XMLTokenEnum XML_JOURNAL
-include/xmloff/xmltoken.hxx:1062
+include/xmloff/xmltoken.hxx:1073
enum xmloff::token::XMLTokenEnum XML_JUSTIFIED
-include/xmloff/xmltoken.hxx:1063
+include/xmloff/xmltoken.hxx:1074
enum xmloff::token::XMLTokenEnum XML_JUSTIFY
-include/xmloff/xmltoken.hxx:1064
+include/xmloff/xmltoken.hxx:1075
enum xmloff::token::XMLTokenEnum XML_JUSTIFY_SINGLE_WORD
-include/xmloff/xmltoken.hxx:1065
+include/xmloff/xmltoken.hxx:1076
enum xmloff::token::XMLTokenEnum XML_KEEP_WITH_NEXT
-include/xmloff/xmltoken.hxx:1066
+include/xmloff/xmltoken.hxx:1077
enum xmloff::token::XMLTokenEnum XML_KERNING_NORMAL
-include/xmloff/xmltoken.hxx:1067
+include/xmloff/xmltoken.hxx:1078
enum xmloff::token::XMLTokenEnum XML_KEY
-include/xmloff/xmltoken.hxx:1068
+include/xmloff/xmltoken.hxx:1079
enum xmloff::token::XMLTokenEnum XML_KEY1
-include/xmloff/xmltoken.hxx:1069
+include/xmloff/xmltoken.hxx:1080
enum xmloff::token::XMLTokenEnum XML_KEY2
-include/xmloff/xmltoken.hxx:1071
+include/xmloff/xmltoken.hxx:1082
enum xmloff::token::XMLTokenEnum XML_KEYWORDS
-include/xmloff/xmltoken.hxx:1072
+include/xmloff/xmltoken.hxx:1083
enum xmloff::token::XMLTokenEnum XML_KIND
-include/xmloff/xmltoken.hxx:1073
+include/xmloff/xmltoken.hxx:1084
enum xmloff::token::XMLTokenEnum XML_KM
-include/xmloff/xmltoken.hxx:1074
+include/xmloff/xmltoken.hxx:1085
enum xmloff::token::XMLTokenEnum XML_LABEL
-include/xmloff/xmltoken.hxx:1075
+include/xmloff/xmltoken.hxx:1086
enum xmloff::token::XMLTokenEnum XML_LABEL_ARRANGEMENT
-include/xmloff/xmltoken.hxx:1076
+include/xmloff/xmltoken.hxx:1087
enum xmloff::token::XMLTokenEnum XML_LABEL_CELL_ADDRESS
-include/xmloff/xmltoken.hxx:1077
- enum xmloff::token::XMLTokenEnum XML_LABEL_CELL_RANGE_ADDRESS
-include/xmloff/xmltoken.hxx:1078
- enum xmloff::token::XMLTokenEnum XML_LABEL_RANGE
-include/xmloff/xmltoken.hxx:1079
- enum xmloff::token::XMLTokenEnum XML_LABEL_RANGES
-include/xmloff/xmltoken.hxx:1080
+include/xmloff/xmltoken.hxx:1091
enum xmloff::token::XMLTokenEnum XML_LABEL_STRING
-include/xmloff/xmltoken.hxx:1081
+include/xmloff/xmltoken.hxx:1092
enum xmloff::token::XMLTokenEnum XML_LABEL_STROKE
-include/xmloff/xmltoken.hxx:1082
+include/xmloff/xmltoken.hxx:1093
enum xmloff::token::XMLTokenEnum XML_LABEL_STROKE_COLOR
-include/xmloff/xmltoken.hxx:1083
+include/xmloff/xmltoken.hxx:1094
enum xmloff::token::XMLTokenEnum XML_LABEL_STROKE_OPACITY
-include/xmloff/xmltoken.hxx:1084
+include/xmloff/xmltoken.hxx:1095
enum xmloff::token::XMLTokenEnum XML_LABEL_STROKE_WIDTH
-include/xmloff/xmltoken.hxx:1085
+include/xmloff/xmltoken.hxx:1096
enum xmloff::token::XMLTokenEnum XML_LAMBDA
-include/xmloff/xmltoken.hxx:1086
+include/xmloff/xmltoken.hxx:1097
enum xmloff::token::XMLTokenEnum XML_LANDSCAPE
-include/xmloff/xmltoken.hxx:1087
- enum xmloff::token::XMLTokenEnum XML_LANGUAGE
-include/xmloff/xmltoken.hxx:1088
+include/xmloff/xmltoken.hxx:1099
enum xmloff::token::XMLTokenEnum XML_LANGUAGE_ASIAN
-include/xmloff/xmltoken.hxx:1089
+include/xmloff/xmltoken.hxx:1100
enum xmloff::token::XMLTokenEnum XML_LANGUAGE_COMPLEX
-include/xmloff/xmltoken.hxx:1090
+include/xmloff/xmltoken.hxx:1101
enum xmloff::token::XMLTokenEnum XML_LASER
-include/xmloff/xmltoken.hxx:1091
- enum xmloff::token::XMLTokenEnum XML_LAST_COLUMN_SPANNED
-include/xmloff/xmltoken.hxx:1092
+include/xmloff/xmltoken.hxx:1103
enum xmloff::token::XMLTokenEnum XML_LAST_PAGE
-include/xmloff/xmltoken.hxx:1093
- enum xmloff::token::XMLTokenEnum XML_LAST_ROW_SPANNED
-include/xmloff/xmltoken.hxx:1094
+include/xmloff/xmltoken.hxx:1105
enum xmloff::token::XMLTokenEnum XML_LAYER
-include/xmloff/xmltoken.hxx:1095
+include/xmloff/xmltoken.hxx:1106
enum xmloff::token::XMLTokenEnum XML_LAYER_SET
-include/xmloff/xmltoken.hxx:1096
+include/xmloff/xmltoken.hxx:1107
enum xmloff::token::XMLTokenEnum XML_LEADER_CHAR
-include/xmloff/xmltoken.hxx:1097
+include/xmloff/xmltoken.hxx:1108
enum xmloff::token::XMLTokenEnum XML_LEFT
-include/xmloff/xmltoken.hxx:1098
+include/xmloff/xmltoken.hxx:1109
enum xmloff::token::XMLTokenEnum XML_LEFT_OUTSIDE
-include/xmloff/xmltoken.hxx:1099
+include/xmloff/xmltoken.hxx:1110
enum xmloff::token::XMLTokenEnum XML_LEFT_TOP_POSITION
-include/xmloff/xmltoken.hxx:1100
+include/xmloff/xmltoken.hxx:1111
enum xmloff::token::XMLTokenEnum XML_LEFTARC
-include/xmloff/xmltoken.hxx:1101
+include/xmloff/xmltoken.hxx:1112
enum xmloff::token::XMLTokenEnum XML_LEFTCIRCLE
-include/xmloff/xmltoken.hxx:1102
+include/xmloff/xmltoken.hxx:1113
enum xmloff::token::XMLTokenEnum XML_LEGEND
-include/xmloff/xmltoken.hxx:1103
+include/xmloff/xmltoken.hxx:1114
enum xmloff::token::XMLTokenEnum XML_LEGEND_POSITION
-include/xmloff/xmltoken.hxx:1105
+include/xmloff/xmltoken.hxx:1116
enum xmloff::token::XMLTokenEnum XML_LEQ
-include/xmloff/xmltoken.hxx:1106
+include/xmloff/xmltoken.hxx:1117
enum xmloff::token::XMLTokenEnum XML_LET_TEXT
-include/xmloff/xmltoken.hxx:1107
+include/xmloff/xmltoken.hxx:1118
enum xmloff::token::XMLTokenEnum XML_KEEP_TEXT
-include/xmloff/xmltoken.hxx:1108
+include/xmloff/xmltoken.hxx:1119
enum xmloff::token::XMLTokenEnum XML_LETTER_KERNING
-include/xmloff/xmltoken.hxx:1109
+include/xmloff/xmltoken.hxx:1120
enum xmloff::token::XMLTokenEnum XML_LETTER_SPACING
-include/xmloff/xmltoken.hxx:1110
+include/xmloff/xmltoken.hxx:1121
enum xmloff::token::XMLTokenEnum XML_LETTERS
-include/xmloff/xmltoken.hxx:1111
+include/xmloff/xmltoken.hxx:1122
enum xmloff::token::XMLTokenEnum XML_LEVEL
-include/xmloff/xmltoken.hxx:1112
+include/xmloff/xmltoken.hxx:1123
enum xmloff::token::XMLTokenEnum XML_LIBRARY
-include/xmloff/xmltoken.hxx:1113
+include/xmloff/xmltoken.hxx:1124
enum xmloff::token::XMLTokenEnum XML_LIBRARY_EMBEDDED
-include/xmloff/xmltoken.hxx:1114
+include/xmloff/xmltoken.hxx:1125
enum xmloff::token::XMLTokenEnum XML_LIBRARY_LINKED
-include/xmloff/xmltoken.hxx:1115
+include/xmloff/xmltoken.hxx:1126
enum xmloff::token::XMLTokenEnum XML_LIGHT
-include/xmloff/xmltoken.hxx:1116
+include/xmloff/xmltoken.hxx:1127
enum xmloff::token::XMLTokenEnum XML_LIGHTING_MODE
-include/xmloff/xmltoken.hxx:1117
+include/xmloff/xmltoken.hxx:1128
enum xmloff::token::XMLTokenEnum XML_LIME
-include/xmloff/xmltoken.hxx:1118
+include/xmloff/xmltoken.hxx:1129
enum xmloff::token::XMLTokenEnum XML_LIMIT
-include/xmloff/xmltoken.hxx:1119
+include/xmloff/xmltoken.hxx:1130
enum xmloff::token::XMLTokenEnum XML_LINE
-include/xmloff/xmltoken.hxx:1120
+include/xmloff/xmltoken.hxx:1131
enum xmloff::token::XMLTokenEnum XML_LINE_BREAK
-include/xmloff/xmltoken.hxx:1121
+include/xmloff/xmltoken.hxx:1132
enum xmloff::token::XMLTokenEnum XML_LINE_DISTANCE
-include/xmloff/xmltoken.hxx:1122
+include/xmloff/xmltoken.hxx:1133
enum xmloff::token::XMLTokenEnum XML_LINE_HEIGHT
-include/xmloff/xmltoken.hxx:1123
+include/xmloff/xmltoken.hxx:1134
enum xmloff::token::XMLTokenEnum XML_LINE_HEIGHT_AT_LEAST
-include/xmloff/xmltoken.hxx:1124
+include/xmloff/xmltoken.hxx:1135
enum xmloff::token::XMLTokenEnum XML_LINE_NUMBER
-include/xmloff/xmltoken.hxx:1125
+include/xmloff/xmltoken.hxx:1136
enum xmloff::token::XMLTokenEnum XML_LINE_SKEW
-include/xmloff/xmltoken.hxx:1126
+include/xmloff/xmltoken.hxx:1137
enum xmloff::token::XMLTokenEnum XML_LINE_SPACING
-include/xmloff/xmltoken.hxx:1127
+include/xmloff/xmltoken.hxx:1138
enum xmloff::token::XMLTokenEnum XML_LINE_STYLE
-include/xmloff/xmltoken.hxx:1128
+include/xmloff/xmltoken.hxx:1139
enum xmloff::token::XMLTokenEnum XML_LINEAR
-include/xmloff/xmltoken.hxx:1129
+include/xmloff/xmltoken.hxx:1140
enum xmloff::token::XMLTokenEnum XML_LINEARGRADIENT
-include/xmloff/xmltoken.hxx:1130
+include/xmloff/xmltoken.hxx:1141
enum xmloff::token::XMLTokenEnum XML_LINENUMBERING_CONFIGURATION
-include/xmloff/xmltoken.hxx:1131
+include/xmloff/xmltoken.hxx:1142
enum xmloff::token::XMLTokenEnum XML_LINENUMBERING_SEPARATOR
-include/xmloff/xmltoken.hxx:1132
+include/xmloff/xmltoken.hxx:1143
enum xmloff::token::XMLTokenEnum XML_LINES
-include/xmloff/xmltoken.hxx:1133
+include/xmloff/xmltoken.hxx:1144
enum xmloff::token::XMLTokenEnum XML_LINES_USED
-include/xmloff/xmltoken.hxx:1134
- enum xmloff::token::XMLTokenEnum XML_LINK_TO_SOURCE_DATA
-include/xmloff/xmltoken.hxx:1135
+include/xmloff/xmltoken.hxx:1145
+ enum xmloff::token::XMLTokenEnum XML_LINKED_CELL
+include/xmloff/xmltoken.hxx:1147
enum xmloff::token::XMLTokenEnum XML_LIST
-include/xmloff/xmltoken.hxx:1136
+include/xmloff/xmltoken.hxx:1148
enum xmloff::token::XMLTokenEnum XML_LIST_BLOCK
-include/xmloff/xmltoken.hxx:1137
+include/xmloff/xmltoken.hxx:1149
enum xmloff::token::XMLTokenEnum XML_LIST_HEADER
-include/xmloff/xmltoken.hxx:1138
+include/xmloff/xmltoken.hxx:1150
enum xmloff::token::XMLTokenEnum XML_LIST_INFO
-include/xmloff/xmltoken.hxx:1140
+include/xmloff/xmltoken.hxx:1152
enum xmloff::token::XMLTokenEnum XML_LIST_LEVEL
-include/xmloff/xmltoken.hxx:1141
+include/xmloff/xmltoken.hxx:1153
enum xmloff::token::XMLTokenEnum XML_LIST_LEVEL_STYLE_BULLET
-include/xmloff/xmltoken.hxx:1142
+include/xmloff/xmltoken.hxx:1154
enum xmloff::token::XMLTokenEnum XML_LIST_LEVEL_STYLE_IMAGE
-include/xmloff/xmltoken.hxx:1143
+include/xmloff/xmltoken.hxx:1155
enum xmloff::token::XMLTokenEnum XML_LIST_LEVEL_STYLE_NUMBER
-include/xmloff/xmltoken.hxx:1144
+include/xmloff/xmltoken.hxx:1156
+ enum xmloff::token::XMLTokenEnum XML_LIST_LINKAGE_TYPE
+include/xmloff/xmltoken.hxx:1157
enum xmloff::token::XMLTokenEnum XML_LIST_NAME
-include/xmloff/xmltoken.hxx:1145
+include/xmloff/xmltoken.hxx:1158
enum xmloff::token::XMLTokenEnum XML_LIST_STYLE
-include/xmloff/xmltoken.hxx:1146
+include/xmloff/xmltoken.hxx:1159
enum xmloff::token::XMLTokenEnum XML_LIST_STYLE_NAME
-include/xmloff/xmltoken.hxx:1147
+include/xmloff/xmltoken.hxx:1160
enum xmloff::token::XMLTokenEnum XML_LN
-include/xmloff/xmltoken.hxx:1148
+include/xmloff/xmltoken.hxx:1161
enum xmloff::token::XMLTokenEnum XML_LOCKED
-include/xmloff/xmltoken.hxx:1149
+include/xmloff/xmltoken.hxx:1162
enum xmloff::token::XMLTokenEnum XML_LOG
-include/xmloff/xmltoken.hxx:1150
+include/xmloff/xmltoken.hxx:1163
enum xmloff::token::XMLTokenEnum XML_LOGARITHMIC
-include/xmloff/xmltoken.hxx:1151
+include/xmloff/xmltoken.hxx:1164
enum xmloff::token::XMLTokenEnum XML_LOGBASE
-include/xmloff/xmltoken.hxx:1152
+include/xmloff/xmltoken.hxx:1165
enum xmloff::token::XMLTokenEnum XML_LONG
-include/xmloff/xmltoken.hxx:1153
+include/xmloff/xmltoken.hxx:1166
enum xmloff::token::XMLTokenEnum XML_LOWLIMIT
-include/xmloff/xmltoken.hxx:1154
+include/xmloff/xmltoken.hxx:1167
enum xmloff::token::XMLTokenEnum XML_LR_TB
-include/xmloff/xmltoken.hxx:1155
+include/xmloff/xmltoken.hxx:1168
enum xmloff::token::XMLTokenEnum XML_LT
-include/xmloff/xmltoken.hxx:1156
+include/xmloff/xmltoken.hxx:1169
enum xmloff::token::XMLTokenEnum XML_LTR
-include/xmloff/xmltoken.hxx:1157
+include/xmloff/xmltoken.hxx:1170
enum xmloff::token::XMLTokenEnum XML_LUMINANCE
-include/xmloff/xmltoken.hxx:1158
+include/xmloff/xmltoken.hxx:1171
enum xmloff::token::XMLTokenEnum XML_MACRO_NAME
-include/xmloff/xmltoken.hxx:1159
+include/xmloff/xmltoken.hxx:1172
enum xmloff::token::XMLTokenEnum XML_MACTION
-include/xmloff/xmltoken.hxx:1160
+include/xmloff/xmltoken.hxx:1173
enum xmloff::token::XMLTokenEnum XML_MAIN_ENTRY_STYLE_NAME
-include/xmloff/xmltoken.hxx:1161
+include/xmloff/xmltoken.hxx:1174
enum xmloff::token::XMLTokenEnum XML_MAJOR
-include/xmloff/xmltoken.hxx:1162
+include/xmloff/xmltoken.hxx:1175
enum xmloff::token::XMLTokenEnum XML_MALIGNGROUP
-include/xmloff/xmltoken.hxx:1163
+include/xmloff/xmltoken.hxx:1176
enum xmloff::token::XMLTokenEnum XML_MALIGNMARK
-include/xmloff/xmltoken.hxx:1164
+include/xmloff/xmltoken.hxx:1177
enum xmloff::token::XMLTokenEnum XML_MANUAL
-include/xmloff/xmltoken.hxx:1165
+include/xmloff/xmltoken.hxx:1178
enum xmloff::token::XMLTokenEnum XML_MAP
-include/xmloff/xmltoken.hxx:1166
+include/xmloff/xmltoken.hxx:1179
enum xmloff::token::XMLTokenEnum XML_MARGIN_BOTTOM
-include/xmloff/xmltoken.hxx:1167
+include/xmloff/xmltoken.hxx:1180
enum xmloff::token::XMLTokenEnum XML_MARGIN_LEFT
-include/xmloff/xmltoken.hxx:1168
+include/xmloff/xmltoken.hxx:1181
enum xmloff::token::XMLTokenEnum XML_MARGIN_RIGHT
-include/xmloff/xmltoken.hxx:1169
+include/xmloff/xmltoken.hxx:1182
enum xmloff::token::XMLTokenEnum XML_MARGIN_TOP
-include/xmloff/xmltoken.hxx:1170
+include/xmloff/xmltoken.hxx:1183
enum xmloff::token::XMLTokenEnum XML_MARGINS
-include/xmloff/xmltoken.hxx:1171
+include/xmloff/xmltoken.hxx:1184
enum xmloff::token::XMLTokenEnum XML_MARKER
-include/xmloff/xmltoken.hxx:1172
+include/xmloff/xmltoken.hxx:1185
enum xmloff::token::XMLTokenEnum XML_MARKER_END
-include/xmloff/xmltoken.hxx:1173
+include/xmloff/xmltoken.hxx:1186
enum xmloff::token::XMLTokenEnum XML_MARKER_END_CENTER
-include/xmloff/xmltoken.hxx:1174
+include/xmloff/xmltoken.hxx:1187
enum xmloff::token::XMLTokenEnum XML_MARKER_END_WIDTH
-include/xmloff/xmltoken.hxx:1175
+include/xmloff/xmltoken.hxx:1188
enum xmloff::token::XMLTokenEnum XML_MARKER_START
-include/xmloff/xmltoken.hxx:1176
+include/xmloff/xmltoken.hxx:1189
enum xmloff::token::XMLTokenEnum XML_MARKER_START_CENTER
-include/xmloff/xmltoken.hxx:1177
+include/xmloff/xmltoken.hxx:1190
enum xmloff::token::XMLTokenEnum XML_MARKER_START_WIDTH
-include/xmloff/xmltoken.hxx:1178
+include/xmloff/xmltoken.hxx:1191
enum xmloff::token::XMLTokenEnum XML_MAROON
-include/xmloff/xmltoken.hxx:1179
+include/xmloff/xmltoken.hxx:1192
enum xmloff::token::XMLTokenEnum XML_MASTER_PAGE
-include/xmloff/xmltoken.hxx:1180
+include/xmloff/xmltoken.hxx:1193
enum xmloff::token::XMLTokenEnum XML_MASTER_PAGE_NAME
-include/xmloff/xmltoken.hxx:1181
+include/xmloff/xmltoken.hxx:1194
enum xmloff::token::XMLTokenEnum XML_MASTER_STYLES
-include/xmloff/xmltoken.hxx:1182
+include/xmloff/xmltoken.hxx:1195
enum xmloff::token::XMLTokenEnum XML_MASTERSTHESIS
-include/xmloff/xmltoken.hxx:1183
+include/xmloff/xmltoken.hxx:1196
enum xmloff::token::XMLTokenEnum XML_MATCH
-include/xmloff/xmltoken.hxx:1184
+include/xmloff/xmltoken.hxx:1197
enum xmloff::token::XMLTokenEnum XML_MATH
-include/xmloff/xmltoken.hxx:1185
+include/xmloff/xmltoken.hxx:1198
enum xmloff::token::XMLTokenEnum XML_MATRIX
-include/xmloff/xmltoken.hxx:1186
- enum xmloff::token::XMLTokenEnum XML_MATRIX_COVERED
-include/xmloff/xmltoken.hxx:1187
+include/xmloff/xmltoken.hxx:1200
enum xmloff::token::XMLTokenEnum XML_MATRIXROW
-include/xmloff/xmltoken.hxx:1188
+include/xmloff/xmltoken.hxx:1201
enum xmloff::token::XMLTokenEnum XML_MAX
-include/xmloff/xmltoken.hxx:1189
+include/xmloff/xmltoken.hxx:1202
enum xmloff::token::XMLTokenEnum XML_MAX_EDGE
-include/xmloff/xmltoken.hxx:1190
+include/xmloff/xmltoken.hxx:1203
enum xmloff::token::XMLTokenEnum XML_MAX_HEIGHT
-include/xmloff/xmltoken.hxx:1191
- enum xmloff::token::XMLTokenEnum XML_MAX_LENGTH
-include/xmloff/xmltoken.hxx:1192
+include/xmloff/xmltoken.hxx:1205
enum xmloff::token::XMLTokenEnum XML_MAX_WIDTH
-include/xmloff/xmltoken.hxx:1193
+include/xmloff/xmltoken.hxx:1206
enum xmloff::token::XMLTokenEnum XML_MAXIMUM
-include/xmloff/xmltoken.hxx:1194
- enum xmloff::token::XMLTokenEnum XML_MAXIMUM_DIFFERENCE
-include/xmloff/xmltoken.hxx:1195
+include/xmloff/xmltoken.hxx:1208
enum xmloff::token::XMLTokenEnum XML_MAY_BREAK_BETWEEN_ROWS
-include/xmloff/xmltoken.hxx:1196
+include/xmloff/xmltoken.hxx:1209
enum xmloff::token::XMLTokenEnum XML_MAY_SCRIPT
-include/xmloff/xmltoken.hxx:1197
+include/xmloff/xmltoken.hxx:1210
enum xmloff::token::XMLTokenEnum XML_MEAN
-include/xmloff/xmltoken.hxx:1198
+include/xmloff/xmltoken.hxx:1211
enum xmloff::token::XMLTokenEnum XML_MEAN_VALUE
-include/xmloff/xmltoken.hxx:1199
+include/xmloff/xmltoken.hxx:1212
enum xmloff::token::XMLTokenEnum XML_MEASURE
-include/xmloff/xmltoken.hxx:1200
+include/xmloff/xmltoken.hxx:1213
enum xmloff::token::XMLTokenEnum XML_MEASURE_ALIGN
-include/xmloff/xmltoken.hxx:1201
+include/xmloff/xmltoken.hxx:1214
enum xmloff::token::XMLTokenEnum XML_MEASURE_VERTICAL_ALIGN
-include/xmloff/xmltoken.hxx:1202
+include/xmloff/xmltoken.hxx:1215
enum xmloff::token::XMLTokenEnum XML_MEDIAN
-include/xmloff/xmltoken.hxx:1203
+include/xmloff/xmltoken.hxx:1216
enum xmloff::token::XMLTokenEnum XML_MEDIUM
-include/xmloff/xmltoken.hxx:1204
+include/xmloff/xmltoken.hxx:1217
enum xmloff::token::XMLTokenEnum XML_MENCLOSE
-include/xmloff/xmltoken.hxx:1205
+include/xmloff/xmltoken.hxx:1218
enum xmloff::token::XMLTokenEnum XML_MERROR
-include/xmloff/xmltoken.hxx:1206
- enum xmloff::token::XMLTokenEnum XML_MESSAGE_TYPE
-include/xmloff/xmltoken.hxx:1208
+include/xmloff/xmltoken.hxx:1221
enum xmloff::token::XMLTokenEnum XML_MFENCED
-include/xmloff/xmltoken.hxx:1209
+include/xmloff/xmltoken.hxx:1222
enum xmloff::token::XMLTokenEnum XML_MFRAC
-include/xmloff/xmltoken.hxx:1210
+include/xmloff/xmltoken.hxx:1223
enum xmloff::token::XMLTokenEnum XML_MI
-include/xmloff/xmltoken.hxx:1211
+include/xmloff/xmltoken.hxx:1224
enum xmloff::token::XMLTokenEnum XML_MIDDLE
-include/xmloff/xmltoken.hxx:1212
+include/xmloff/xmltoken.hxx:1225
enum xmloff::token::XMLTokenEnum XML_MIME_TYPE
-include/xmloff/xmltoken.hxx:1213
+include/xmloff/xmltoken.hxx:1226
enum xmloff::token::XMLTokenEnum XML_MIN
-include/xmloff/xmltoken.hxx:1214
+include/xmloff/xmltoken.hxx:1227
enum xmloff::token::XMLTokenEnum XML_MIN_DENOMINATOR_DIGITS
-include/xmloff/xmltoken.hxx:1215
+include/xmloff/xmltoken.hxx:1228
enum xmloff::token::XMLTokenEnum XML_MIN_EDGE
-include/xmloff/xmltoken.hxx:1216
+include/xmloff/xmltoken.hxx:1229
enum xmloff::token::XMLTokenEnum XML_MIN_EXPONENT_DIGITS
-include/xmloff/xmltoken.hxx:1217
+include/xmloff/xmltoken.hxx:1230
enum xmloff::token::XMLTokenEnum XML_MIN_HEIGHT
-include/xmloff/xmltoken.hxx:1218
+include/xmloff/xmltoken.hxx:1231
enum xmloff::token::XMLTokenEnum XML_MIN_INTEGER_DIGITS
-include/xmloff/xmltoken.hxx:1219
+include/xmloff/xmltoken.hxx:1232
enum xmloff::token::XMLTokenEnum XML_MIN_LABEL_DISTANCE
-include/xmloff/xmltoken.hxx:1220
+include/xmloff/xmltoken.hxx:1233
enum xmloff::token::XMLTokenEnum XML_MIN_LABEL_WIDTH
-include/xmloff/xmltoken.hxx:1221
- enum xmloff::token::XMLTokenEnum XML_MIN_LENGTH
-include/xmloff/xmltoken.hxx:1222
+include/xmloff/xmltoken.hxx:1235
enum xmloff::token::XMLTokenEnum XML_MIN_LINE_HEIGHT
-include/xmloff/xmltoken.hxx:1223
+include/xmloff/xmltoken.hxx:1236
enum xmloff::token::XMLTokenEnum XML_MIN_NUMERATOR_DIGITS
-include/xmloff/xmltoken.hxx:1224
+include/xmloff/xmltoken.hxx:1237
enum xmloff::token::XMLTokenEnum XML_MIN_ROW_HEIGHT
-include/xmloff/xmltoken.hxx:1225
+include/xmloff/xmltoken.hxx:1238
enum xmloff::token::XMLTokenEnum XML_MIN_WIDTH
-include/xmloff/xmltoken.hxx:1226
+include/xmloff/xmltoken.hxx:1239
enum xmloff::token::XMLTokenEnum XML_MINIMUM
-include/xmloff/xmltoken.hxx:1227
+include/xmloff/xmltoken.hxx:1240
enum xmloff::token::XMLTokenEnum XML_MINOR
-include/xmloff/xmltoken.hxx:1228
+include/xmloff/xmltoken.hxx:1241
enum xmloff::token::XMLTokenEnum XML_MINUS
-include/xmloff/xmltoken.hxx:1229
+include/xmloff/xmltoken.hxx:1242
enum xmloff::token::XMLTokenEnum XML_MINUTES
-include/xmloff/xmltoken.hxx:1230
+include/xmloff/xmltoken.hxx:1243
enum xmloff::token::XMLTokenEnum XML_MIRROR
-include/xmloff/xmltoken.hxx:1231
+include/xmloff/xmltoken.hxx:1244
enum xmloff::token::XMLTokenEnum XML_MIRRORED
-include/xmloff/xmltoken.hxx:1232
+include/xmloff/xmltoken.hxx:1245
enum xmloff::token::XMLTokenEnum XML_MISC
-include/xmloff/xmltoken.hxx:1233
+include/xmloff/xmltoken.hxx:1246
enum xmloff::token::XMLTokenEnum XML_MITER
-include/xmloff/xmltoken.hxx:1234
+include/xmloff/xmltoken.hxx:1247
enum xmloff::token::XMLTokenEnum XML_MM
-include/xmloff/xmltoken.hxx:1235
+include/xmloff/xmltoken.hxx:1248
enum xmloff::token::XMLTokenEnum XML_MMULTISCRIPTS
-include/xmloff/xmltoken.hxx:1236
+include/xmloff/xmltoken.hxx:1249
enum xmloff::token::XMLTokenEnum XML_MN
-include/xmloff/xmltoken.hxx:1237
+include/xmloff/xmltoken.hxx:1250
enum xmloff::token::XMLTokenEnum XML_MO
-include/xmloff/xmltoken.hxx:1238
- enum xmloff::token::XMLTokenEnum XML_MODE
-include/xmloff/xmltoken.hxx:1239
+include/xmloff/xmltoken.hxx:1252
enum xmloff::token::XMLTokenEnum XML_MODERN
-include/xmloff/xmltoken.hxx:1240
+include/xmloff/xmltoken.hxx:1253
enum xmloff::token::XMLTokenEnum XML_MODIFICATION_DATE
-include/xmloff/xmltoken.hxx:1241
+include/xmloff/xmltoken.hxx:1254
enum xmloff::token::XMLTokenEnum XML_MODIFICATION_TIME
-include/xmloff/xmltoken.hxx:1242
+include/xmloff/xmltoken.hxx:1255
enum xmloff::token::XMLTokenEnum XML_MODULATE
-include/xmloff/xmltoken.hxx:1243
+include/xmloff/xmltoken.hxx:1256
enum xmloff::token::XMLTokenEnum XML_MODULE
-include/xmloff/xmltoken.hxx:1244
+include/xmloff/xmltoken.hxx:1257
enum xmloff::token::XMLTokenEnum XML_MOMENT
-include/xmloff/xmltoken.hxx:1245
+include/xmloff/xmltoken.hxx:1258
enum xmloff::token::XMLTokenEnum XML_MONO
-include/xmloff/xmltoken.hxx:1247
+include/xmloff/xmltoken.hxx:1260
enum xmloff::token::XMLTokenEnum XML_MOUSE_AS_PEN
-include/xmloff/xmltoken.hxx:1248
+include/xmloff/xmltoken.hxx:1261
enum xmloff::token::XMLTokenEnum XML_MOUSE_VISIBLE
-include/xmloff/xmltoken.hxx:1249
+include/xmloff/xmltoken.hxx:1262
enum xmloff::token::XMLTokenEnum XML_MOVE
-include/xmloff/xmltoken.hxx:1250
+include/xmloff/xmltoken.hxx:1263
enum xmloff::token::XMLTokenEnum XML_MOVE_FROM_BOTTOM
-include/xmloff/xmltoken.hxx:1251
+include/xmloff/xmltoken.hxx:1264
enum xmloff::token::XMLTokenEnum XML_MOVE_FROM_LEFT
-include/xmloff/xmltoken.hxx:1252
+include/xmloff/xmltoken.hxx:1265
enum xmloff::token::XMLTokenEnum XML_MOVE_FROM_RIGHT
-include/xmloff/xmltoken.hxx:1253
+include/xmloff/xmltoken.hxx:1266
enum xmloff::token::XMLTokenEnum XML_MOVE_FROM_TOP
-include/xmloff/xmltoken.hxx:1254
+include/xmloff/xmltoken.hxx:1267
enum xmloff::token::XMLTokenEnum XML_MOVE_PROTECT
-include/xmloff/xmltoken.hxx:1255
+include/xmloff/xmltoken.hxx:1268
enum xmloff::token::XMLTokenEnum XML_MOVE_SHORT
-include/xmloff/xmltoken.hxx:1256
- enum xmloff::token::XMLTokenEnum XML_MOVEMENT
-include/xmloff/xmltoken.hxx:1257
+include/xmloff/xmltoken.hxx:1270
enum xmloff::token::XMLTokenEnum XML_MOVEMENT_CUT_OFF
-include/xmloff/xmltoken.hxx:1258
+include/xmloff/xmltoken.hxx:1271
enum xmloff::token::XMLTokenEnum XML_MOVER
-include/xmloff/xmltoken.hxx:1259
+include/xmloff/xmltoken.hxx:1272
enum xmloff::token::XMLTokenEnum XML_MOVING_AVERAGE
-include/xmloff/xmltoken.hxx:1260
+include/xmloff/xmltoken.hxx:1273
enum xmloff::token::XMLTokenEnum XML_MPADDED
-include/xmloff/xmltoken.hxx:1261
+include/xmloff/xmltoken.hxx:1274
enum xmloff::token::XMLTokenEnum XML_MPHANTOM
-include/xmloff/xmltoken.hxx:1262
+include/xmloff/xmltoken.hxx:1275
enum xmloff::token::XMLTokenEnum XML_MPRESCRIPTS
-include/xmloff/xmltoken.hxx:1263
+include/xmloff/xmltoken.hxx:1276
enum xmloff::token::XMLTokenEnum XML_MROOT
-include/xmloff/xmltoken.hxx:1264
+include/xmloff/xmltoken.hxx:1277
enum xmloff::token::XMLTokenEnum XML_MROW
-include/xmloff/xmltoken.hxx:1265
+include/xmloff/xmltoken.hxx:1278
enum xmloff::token::XMLTokenEnum XML_MS
-include/xmloff/xmltoken.hxx:1266
+include/xmloff/xmltoken.hxx:1279
enum xmloff::token::XMLTokenEnum XML_MSPACE
-include/xmloff/xmltoken.hxx:1267
+include/xmloff/xmltoken.hxx:1280
enum xmloff::token::XMLTokenEnum XML_MSQRT
-include/xmloff/xmltoken.hxx:1268
+include/xmloff/xmltoken.hxx:1281
enum xmloff::token::XMLTokenEnum XML_MSTYLE
-include/xmloff/xmltoken.hxx:1269
+include/xmloff/xmltoken.hxx:1282
enum xmloff::token::XMLTokenEnum XML_MSUB
-include/xmloff/xmltoken.hxx:1270
+include/xmloff/xmltoken.hxx:1283
enum xmloff::token::XMLTokenEnum XML_MSUBSUP
-include/xmloff/xmltoken.hxx:1271
+include/xmloff/xmltoken.hxx:1284
enum xmloff::token::XMLTokenEnum XML_MSUP
-include/xmloff/xmltoken.hxx:1272
+include/xmloff/xmltoken.hxx:1285
enum xmloff::token::XMLTokenEnum XML_MTABLE
-include/xmloff/xmltoken.hxx:1273
+include/xmloff/xmltoken.hxx:1286
enum xmloff::token::XMLTokenEnum XML_MTD
-include/xmloff/xmltoken.hxx:1274
+include/xmloff/xmltoken.hxx:1287
enum xmloff::token::XMLTokenEnum XML_MTEXT
-include/xmloff/xmltoken.hxx:1275
+include/xmloff/xmltoken.hxx:1288
enum xmloff::token::XMLTokenEnum XML_MTR
-include/xmloff/xmltoken.hxx:1276
- enum xmloff::token::XMLTokenEnum XML_MULTI_DELETION_SPANNED
-include/xmloff/xmltoken.hxx:1277
+include/xmloff/xmltoken.hxx:1290
enum xmloff::token::XMLTokenEnum XML_MUNDER
-include/xmloff/xmltoken.hxx:1278
+include/xmloff/xmltoken.hxx:1291
enum xmloff::token::XMLTokenEnum XML_MUNDEROVER
-include/xmloff/xmltoken.hxx:1280
+include/xmloff/xmltoken.hxx:1293
enum xmloff::token::XMLTokenEnum XML_NAME_AND_EXTENSION
-include/xmloff/xmltoken.hxx:1281
- enum xmloff::token::XMLTokenEnum XML_NAMED_EXPRESSION
-include/xmloff/xmltoken.hxx:1282
- enum xmloff::token::XMLTokenEnum XML_NAMED_EXPRESSIONS
-include/xmloff/xmltoken.hxx:1283
- enum xmloff::token::XMLTokenEnum XML_NAMED_RANGE
-include/xmloff/xmltoken.hxx:1284
+include/xmloff/xmltoken.hxx:1297
enum xmloff::token::XMLTokenEnum XML_NAVY
-include/xmloff/xmltoken.hxx:1285
- enum xmloff::token::XMLTokenEnum XML_NEGATIVE_COLOR
-include/xmloff/xmltoken.hxx:1286
+include/xmloff/xmltoken.hxx:1299
enum xmloff::token::XMLTokenEnum XML_NEQ
-include/xmloff/xmltoken.hxx:1287
+include/xmloff/xmltoken.hxx:1300
enum xmloff::token::XMLTokenEnum XML_NEW
-include/xmloff/xmltoken.hxx:1288
+include/xmloff/xmltoken.hxx:1301
enum xmloff::token::XMLTokenEnum XML_NEXT
-include/xmloff/xmltoken.hxx:1289
+include/xmloff/xmltoken.hxx:1302
enum xmloff::token::XMLTokenEnum XML_NEXT_PAGE
-include/xmloff/xmltoken.hxx:1290
+include/xmloff/xmltoken.hxx:1303
enum xmloff::token::XMLTokenEnum XML_NEXT_STYLE_NAME
-include/xmloff/xmltoken.hxx:1291
+include/xmloff/xmltoken.hxx:1304
enum xmloff::token::XMLTokenEnum XML_NO_LIMIT
-include/xmloff/xmltoken.hxx:1292
+include/xmloff/xmltoken.hxx:1305
enum xmloff::token::XMLTokenEnum XML_NO_WRAP
-include/xmloff/xmltoken.hxx:1293
+include/xmloff/xmltoken.hxx:1306
enum xmloff::token::XMLTokenEnum XML_NOEMPTY
-include/xmloff/xmltoken.hxx:1294
+include/xmloff/xmltoken.hxx:1307
enum xmloff::token::XMLTokenEnum XML_NOHREF
-include/xmloff/xmltoken.hxx:1295
+include/xmloff/xmltoken.hxx:1308
enum xmloff::token::XMLTokenEnum XML_NOMATCH
-include/xmloff/xmltoken.hxx:1297
+include/xmloff/xmltoken.hxx:1310
enum xmloff::token::XMLTokenEnum XML_NOPRTSUBSET
-include/xmloff/xmltoken.hxx:1298
+include/xmloff/xmltoken.hxx:1311
enum xmloff::token::XMLTokenEnum XML_NORMAL
-include/xmloff/xmltoken.hxx:1299
+include/xmloff/xmltoken.hxx:1312
enum xmloff::token::XMLTokenEnum XML_NORMALS_DIRECTION
-include/xmloff/xmltoken.hxx:1300
+include/xmloff/xmltoken.hxx:1313
enum xmloff::token::XMLTokenEnum XML_NORMALS_KIND
-include/xmloff/xmltoken.hxx:1301
+include/xmloff/xmltoken.hxx:1314
enum xmloff::token::XMLTokenEnum XML_NOT
-include/xmloff/xmltoken.hxx:1302
+include/xmloff/xmltoken.hxx:1315
enum xmloff::token::XMLTokenEnum XML_NOT_EQUAL_DATE
-include/xmloff/xmltoken.hxx:1303
+include/xmloff/xmltoken.hxx:1316
enum xmloff::token::XMLTokenEnum XML_NOTATION
-include/xmloff/xmltoken.hxx:1305
+include/xmloff/xmltoken.hxx:1318
enum xmloff::token::XMLTokenEnum XML_NOTES
-include/xmloff/xmltoken.hxx:1306
+include/xmloff/xmltoken.hxx:1319
enum xmloff::token::XMLTokenEnum XML_NOTIN
-include/xmloff/xmltoken.hxx:1307
+include/xmloff/xmltoken.hxx:1320
enum xmloff::token::XMLTokenEnum XML_NOTSUBSET
-include/xmloff/xmltoken.hxx:1308
- enum xmloff::token::XMLTokenEnum XML_NULL_DATE
-include/xmloff/xmltoken.hxx:1309
- enum xmloff::token::XMLTokenEnum XML_NULL_YEAR
-include/xmloff/xmltoken.hxx:1310
+include/xmloff/xmltoken.hxx:1323
enum xmloff::token::XMLTokenEnum XML_NUM_FORMAT
-include/xmloff/xmltoken.hxx:1311
+include/xmloff/xmltoken.hxx:1324
enum xmloff::token::XMLTokenEnum XML_NUM_LETTER_SYNC
-include/xmloff/xmltoken.hxx:1312
+include/xmloff/xmltoken.hxx:1325
enum xmloff::token::XMLTokenEnum XML_NUM_PREFIX
-include/xmloff/xmltoken.hxx:1313
+include/xmloff/xmltoken.hxx:1326
enum xmloff::token::XMLTokenEnum XML_NUM_SUFFIX
-include/xmloff/xmltoken.hxx:1314
+include/xmloff/xmltoken.hxx:1327
enum xmloff::token::XMLTokenEnum XML_NUMALIGN
-include/xmloff/xmltoken.hxx:1315
+include/xmloff/xmltoken.hxx:1328
enum xmloff::token::XMLTokenEnum XML_NUMBER
-include/xmloff/xmltoken.hxx:1316
+include/xmloff/xmltoken.hxx:1329
enum xmloff::token::XMLTokenEnum XML_NUMBER_AND_NAME
-include/xmloff/xmltoken.hxx:1317
- enum xmloff::token::XMLTokenEnum XML_NUMBER_COLUMNS_REPEATED
-include/xmloff/xmltoken.hxx:1318
- enum xmloff::token::XMLTokenEnum XML_NUMBER_COLUMNS_SPANNED
-include/xmloff/xmltoken.hxx:1319
+include/xmloff/xmltoken.hxx:1332
enum xmloff::token::XMLTokenEnum XML_NUMBER_LINES
-include/xmloff/xmltoken.hxx:1320
- enum xmloff::token::XMLTokenEnum XML_NUMBER_MATRIX_COLUMNS_SPANNED
-include/xmloff/xmltoken.hxx:1321
- enum xmloff::token::XMLTokenEnum XML_NUMBER_MATRIX_ROWS_SPANNED
-include/xmloff/xmltoken.hxx:1322
+include/xmloff/xmltoken.hxx:1335
enum xmloff::token::XMLTokenEnum XML_NUMBER_POSITION
-include/xmloff/xmltoken.hxx:1323
- enum xmloff::token::XMLTokenEnum XML_NUMBER_ROWS_REPEATED
-include/xmloff/xmltoken.hxx:1324
- enum xmloff::token::XMLTokenEnum XML_NUMBER_ROWS_SPANNED
-include/xmloff/xmltoken.hxx:1325
+include/xmloff/xmltoken.hxx:1338
enum xmloff::token::XMLTokenEnum XML_NUMBER_STYLE
-include/xmloff/xmltoken.hxx:1326
+include/xmloff/xmltoken.hxx:1339
enum xmloff::token::XMLTokenEnum XML_NUMBER_WRAPPED_PARAGRAPHS
-include/xmloff/xmltoken.hxx:1327
+include/xmloff/xmltoken.hxx:1340
enum xmloff::token::XMLTokenEnum XML_NUMBERED_ENTRIES
-include/xmloff/xmltoken.hxx:1328
+include/xmloff/xmltoken.hxx:1341
enum xmloff::token::XMLTokenEnum XML_OBJECT
-include/xmloff/xmltoken.hxx:1329
+include/xmloff/xmltoken.hxx:1342
enum xmloff::token::XMLTokenEnum XML_OBJECT_COUNT
-include/xmloff/xmltoken.hxx:1330
+include/xmloff/xmltoken.hxx:1343
enum xmloff::token::XMLTokenEnum XML_OBJECT_INDEX
-include/xmloff/xmltoken.hxx:1331
+include/xmloff/xmltoken.hxx:1344
enum xmloff::token::XMLTokenEnum XML_OBJECT_INDEX_ENTRY_TEMPLATE
-include/xmloff/xmltoken.hxx:1332
+include/xmloff/xmltoken.hxx:1345
enum xmloff::token::XMLTokenEnum XML_OBJECT_INDEX_SOURCE
-include/xmloff/xmltoken.hxx:1333
- enum xmloff::token::XMLTokenEnum XML_OBJECT_NAME
-include/xmloff/xmltoken.hxx:1334
+include/xmloff/xmltoken.hxx:1347
enum xmloff::token::XMLTokenEnum XML_OBJECT_OLE
-include/xmloff/xmltoken.hxx:1335
+include/xmloff/xmltoken.hxx:1348
enum xmloff::token::XMLTokenEnum XML_OBJECTS
-include/xmloff/xmltoken.hxx:1336
+include/xmloff/xmltoken.hxx:1349
enum xmloff::token::XMLTokenEnum XML_ODD_PAGE
-include/xmloff/xmltoken.hxx:1337
+include/xmloff/xmltoken.hxx:1350
enum xmloff::token::XMLTokenEnum XML_OFFSET
-include/xmloff/xmltoken.hxx:1338
+include/xmloff/xmltoken.hxx:1351
enum xmloff::token::XMLTokenEnum XML_OLIVE
-include/xmloff/xmltoken.hxx:1339
+include/xmloff/xmltoken.hxx:1352
enum xmloff::token::XMLTokenEnum XML_ONLOAD
-include/xmloff/xmltoken.hxx:1340
+include/xmloff/xmltoken.hxx:1353
enum xmloff::token::XMLTokenEnum XML_ONREQUEST
-include/xmloff/xmltoken.hxx:1341
- enum xmloff::token::XMLTokenEnum XML_ON_UPDATE_KEEP_SIZE
-include/xmloff/xmltoken.hxx:1342
- enum xmloff::token::XMLTokenEnum XML_ON_UPDATE_KEEP_STYLES
-include/xmloff/xmltoken.hxx:1343
+include/xmloff/xmltoken.hxx:1356
enum xmloff::token::XMLTokenEnum XML_ONLINE
-include/xmloff/xmltoken.hxx:1345
+include/xmloff/xmltoken.hxx:1358
enum xmloff::token::XMLTokenEnum XML_OPAQUE_BACKGROUND
-include/xmloff/xmltoken.hxx:1346
+include/xmloff/xmltoken.hxx:1359
enum xmloff::token::XMLTokenEnum XML_OPAQUE_FOREGROUND
-include/xmloff/xmltoken.hxx:1347
+include/xmloff/xmltoken.hxx:1360
enum xmloff::token::XMLTokenEnum XML_OPEN
-include/xmloff/xmltoken.hxx:1348
+include/xmloff/xmltoken.hxx:1361
enum xmloff::token::XMLTokenEnum XML_OPEN_HORIZONTAL
-include/xmloff/xmltoken.hxx:1349
+include/xmloff/xmltoken.hxx:1362
enum xmloff::token::XMLTokenEnum XML_OPEN_VERTICAL
-include/xmloff/xmltoken.hxx:1350
- enum xmloff::token::XMLTokenEnum XML_OPERATION
-include/xmloff/xmltoken.hxx:1351
- enum xmloff::token::XMLTokenEnum XML_OPERATOR
-include/xmloff/xmltoken.hxx:1352
+include/xmloff/xmltoken.hxx:1365
enum xmloff::token::XMLTokenEnum XML_OPTIMAL
-include/xmloff/xmltoken.hxx:1353
+include/xmloff/xmltoken.hxx:1366
+ enum xmloff::token::XMLTokenEnum XML_OPTION
+include/xmloff/xmltoken.hxx:1367
enum xmloff::token::XMLTokenEnum XML_OR
-include/xmloff/xmltoken.hxx:1354
- enum xmloff::token::XMLTokenEnum XML_ORDER
-include/xmloff/xmltoken.hxx:1355
+include/xmloff/xmltoken.hxx:1369
enum xmloff::token::XMLTokenEnum XML_ORDERED_LIST
-include/xmloff/xmltoken.hxx:1356
+include/xmloff/xmltoken.hxx:1370
enum xmloff::token::XMLTokenEnum XML_ORGANIZATIONS
-include/xmloff/xmltoken.hxx:1357
- enum xmloff::token::XMLTokenEnum XML_ORIENTATION
-include/xmloff/xmltoken.hxx:1358
+include/xmloff/xmltoken.hxx:1372
enum xmloff::token::XMLTokenEnum XML_ORIENTATION_LANDSCAPE
-include/xmloff/xmltoken.hxx:1359
+include/xmloff/xmltoken.hxx:1373
enum xmloff::token::XMLTokenEnum XML_ORIENTATION_PORTRAIT
-include/xmloff/xmltoken.hxx:1360
+include/xmloff/xmltoken.hxx:1374
enum xmloff::token::XMLTokenEnum XML_ORIGIN
-include/xmloff/xmltoken.hxx:1361
+include/xmloff/xmltoken.hxx:1375
enum xmloff::token::XMLTokenEnum XML_ORPHANS
-include/xmloff/xmltoken.hxx:1362
+include/xmloff/xmltoken.hxx:1376
enum xmloff::token::XMLTokenEnum XML_OUTLINE_LEVEL
-include/xmloff/xmltoken.hxx:1363
+include/xmloff/xmltoken.hxx:1377
enum xmloff::token::XMLTokenEnum XML_OUTLINE_LEVEL_STYLE
-include/xmloff/xmltoken.hxx:1364
+include/xmloff/xmltoken.hxx:1378
enum xmloff::token::XMLTokenEnum XML_OUTLINE_STYLE
-include/xmloff/xmltoken.hxx:1365
+include/xmloff/xmltoken.hxx:1379
enum xmloff::token::XMLTokenEnum XML_OUTSET
-include/xmloff/xmltoken.hxx:1366
+include/xmloff/xmltoken.hxx:1380
enum xmloff::token::XMLTokenEnum XML_OUTSIDE
-include/xmloff/xmltoken.hxx:1367
+include/xmloff/xmltoken.hxx:1381
enum xmloff::token::XMLTokenEnum XML_OVERLAP
-include/xmloff/xmltoken.hxx:1368
- enum xmloff::token::XMLTokenEnum XML_P
-include/xmloff/xmltoken.hxx:1369
+include/xmloff/xmltoken.hxx:1383
enum xmloff::token::XMLTokenEnum XML_PACKAGE_NAME
-include/xmloff/xmltoken.hxx:1370
+include/xmloff/xmltoken.hxx:1384
enum xmloff::token::XMLTokenEnum XML_PADDING
-include/xmloff/xmltoken.hxx:1371
+include/xmloff/xmltoken.hxx:1385
enum xmloff::token::XMLTokenEnum XML_PADDING_BOTTOM
-include/xmloff/xmltoken.hxx:1372
+include/xmloff/xmltoken.hxx:1386
enum xmloff::token::XMLTokenEnum XML_PADDING_LEFT
-include/xmloff/xmltoken.hxx:1373
+include/xmloff/xmltoken.hxx:1387
enum xmloff::token::XMLTokenEnum XML_PADDING_RIGHT
-include/xmloff/xmltoken.hxx:1374
+include/xmloff/xmltoken.hxx:1388
enum xmloff::token::XMLTokenEnum XML_PADDING_TOP
-include/xmloff/xmltoken.hxx:1375
+include/xmloff/xmltoken.hxx:1389
enum xmloff::token::XMLTokenEnum XML_PAGE
-include/xmloff/xmltoken.hxx:1376
+include/xmloff/xmltoken.hxx:1390
enum xmloff::token::XMLTokenEnum XML_PAGE_ADJUST
-include/xmloff/xmltoken.hxx:1377
- enum xmloff::token::XMLTokenEnum XML_PAGE_BREAKS_ON_GROUP_CHANGE
-include/xmloff/xmltoken.hxx:1378
+include/xmloff/xmltoken.hxx:1392
enum xmloff::token::XMLTokenEnum XML_PAGE_CONTENT
-include/xmloff/xmltoken.hxx:1379
+include/xmloff/xmltoken.hxx:1393
enum xmloff::token::XMLTokenEnum XML_PAGE_CONTINUATION_STRING
-include/xmloff/xmltoken.hxx:1380
+include/xmloff/xmltoken.hxx:1394
enum xmloff::token::XMLTokenEnum XML_PAGE_COUNT
-include/xmloff/xmltoken.hxx:1381
+include/xmloff/xmltoken.hxx:1395
enum xmloff::token::XMLTokenEnum XML_PAGE_END_MARGIN
-include/xmloff/xmltoken.hxx:1382
+include/xmloff/xmltoken.hxx:1396
enum xmloff::token::XMLTokenEnum XML_PAGE_HEIGHT
-include/xmloff/xmltoken.hxx:1383
+include/xmloff/xmltoken.hxx:1397
enum xmloff::token::XMLTokenEnum XML_PAGE_MASTER
-include/xmloff/xmltoken.hxx:1384
+include/xmloff/xmltoken.hxx:1398
enum xmloff::token::XMLTokenEnum XML_PAGE_MASTER_NAME
-include/xmloff/xmltoken.hxx:1385
+include/xmloff/xmltoken.hxx:1399
enum xmloff::token::XMLTokenEnum XML_PAGE_NAME
-include/xmloff/xmltoken.hxx:1386
+include/xmloff/xmltoken.hxx:1400
enum xmloff::token::XMLTokenEnum XML_PAGE_NUMBER
-include/xmloff/xmltoken.hxx:1387
+include/xmloff/xmltoken.hxx:1401
enum xmloff::token::XMLTokenEnum XML_PAGE_NUMBER_VISIBLE
-include/xmloff/xmltoken.hxx:1388
+include/xmloff/xmltoken.hxx:1402
enum xmloff::token::XMLTokenEnum XML_PAGE_START_MARGIN
-include/xmloff/xmltoken.hxx:1389
+include/xmloff/xmltoken.hxx:1403
enum xmloff::token::XMLTokenEnum XML_PAGE_STYLE_NAME
-include/xmloff/xmltoken.hxx:1390
+include/xmloff/xmltoken.hxx:1404
enum xmloff::token::XMLTokenEnum XML_PAGE_THUMBNAIL
-include/xmloff/xmltoken.hxx:1391
+include/xmloff/xmltoken.hxx:1405
enum xmloff::token::XMLTokenEnum XML_PAGE_USAGE
-include/xmloff/xmltoken.hxx:1392
+include/xmloff/xmltoken.hxx:1406
enum xmloff::token::XMLTokenEnum XML_PAGE_VARIABLE_GET
-include/xmloff/xmltoken.hxx:1393
+include/xmloff/xmltoken.hxx:1407
enum xmloff::token::XMLTokenEnum XML_PAGE_VARIABLE_SET
-include/xmloff/xmltoken.hxx:1394
+include/xmloff/xmltoken.hxx:1408
enum xmloff::token::XMLTokenEnum XML_PAGE_VIEW_ZOOM_VALUE
-include/xmloff/xmltoken.hxx:1395
+include/xmloff/xmltoken.hxx:1409
enum xmloff::token::XMLTokenEnum XML_PAGE_WIDTH
-include/xmloff/xmltoken.hxx:1396
+include/xmloff/xmltoken.hxx:1410
enum xmloff::token::XMLTokenEnum XML_PAGES
-include/xmloff/xmltoken.hxx:1397
+include/xmloff/xmltoken.hxx:1411
enum xmloff::token::XMLTokenEnum XML_PAPER_TRAY_NUMBER
-include/xmloff/xmltoken.hxx:1398
+include/xmloff/xmltoken.hxx:1412
enum xmloff::token::XMLTokenEnum XML_PARAGRAPH
-include/xmloff/xmltoken.hxx:1399
+include/xmloff/xmltoken.hxx:1413
enum xmloff::token::XMLTokenEnum XML_PARAGRAPH_CONTENT
-include/xmloff/xmltoken.hxx:1400
+include/xmloff/xmltoken.hxx:1414
enum xmloff::token::XMLTokenEnum XML_PARAGRAPH_COUNT
-include/xmloff/xmltoken.hxx:1401
+include/xmloff/xmltoken.hxx:1415
enum xmloff::token::XMLTokenEnum XML_PARAGRAPH_END_MARGIN
-include/xmloff/xmltoken.hxx:1402
+include/xmloff/xmltoken.hxx:1416
enum xmloff::token::XMLTokenEnum XML_PARAGRAPH_START_MARGIN
-include/xmloff/xmltoken.hxx:1403
+include/xmloff/xmltoken.hxx:1417
enum xmloff::token::XMLTokenEnum XML_PARALLEL
-include/xmloff/xmltoken.hxx:1404
+include/xmloff/xmltoken.hxx:1418
enum xmloff::token::XMLTokenEnum XML_PARAM
-include/xmloff/xmltoken.hxx:1405
+include/xmloff/xmltoken.hxx:1419
enum xmloff::token::XMLTokenEnum XML_PARENT_STYLE_NAME
-include/xmloff/xmltoken.hxx:1406
- enum xmloff::token::XMLTokenEnum XML_PARSE_SQL_STATEMENT
-include/xmloff/xmltoken.hxx:1407
+include/xmloff/xmltoken.hxx:1421
enum xmloff::token::XMLTokenEnum XML_PARSED
-include/xmloff/xmltoken.hxx:1408
+include/xmloff/xmltoken.hxx:1422
enum xmloff::token::XMLTokenEnum XML_PARTIALDIFF
-include/xmloff/xmltoken.hxx:1409
- enum xmloff::token::XMLTokenEnum XML_PASSWORD
-include/xmloff/xmltoken.hxx:1410
+include/xmloff/xmltoken.hxx:1424
enum xmloff::token::XMLTokenEnum XML_PASSWORT
-include/xmloff/xmltoken.hxx:1411
+include/xmloff/xmltoken.hxx:1425
enum xmloff::token::XMLTokenEnum XML_PATH
-include/xmloff/xmltoken.hxx:1412
+include/xmloff/xmltoken.hxx:1426
enum xmloff::token::XMLTokenEnum XML_PATH_ID
-include/xmloff/xmltoken.hxx:1413
+include/xmloff/xmltoken.hxx:1427
enum xmloff::token::XMLTokenEnum XML_PAUSE
-include/xmloff/xmltoken.hxx:1414
+include/xmloff/xmltoken.hxx:1428
enum xmloff::token::XMLTokenEnum XML_PENDING
-include/xmloff/xmltoken.hxx:1415
+include/xmloff/xmltoken.hxx:1429
enum xmloff::token::XMLTokenEnum XML_PERCENTAGE
-include/xmloff/xmltoken.hxx:1416
+include/xmloff/xmltoken.hxx:1430
enum xmloff::token::XMLTokenEnum XML_PERCENTAGE_STYLE
-include/xmloff/xmltoken.hxx:1417
+include/xmloff/xmltoken.hxx:1431
enum xmloff::token::XMLTokenEnum XML_PERSPECTIVE
-include/xmloff/xmltoken.hxx:1418
+include/xmloff/xmltoken.hxx:1432
enum xmloff::token::XMLTokenEnum XML_PHDTHESIS
-include/xmloff/xmltoken.hxx:1419
+include/xmloff/xmltoken.hxx:1433
enum xmloff::token::XMLTokenEnum XML_PHONG
-include/xmloff/xmltoken.hxx:1420
+include/xmloff/xmltoken.hxx:1434
enum xmloff::token::XMLTokenEnum XML_PIE_OFFSET
-include/xmloff/xmltoken.hxx:1421
+include/xmloff/xmltoken.hxx:1435
enum xmloff::token::XMLTokenEnum XML_PLACEHOLDER
-include/xmloff/xmltoken.hxx:1422
+include/xmloff/xmltoken.hxx:1436
enum xmloff::token::XMLTokenEnum XML_PLACEHOLDER_TYPE
-include/xmloff/xmltoken.hxx:1423
+include/xmloff/xmltoken.hxx:1437
enum xmloff::token::XMLTokenEnum XML_PLACING
-include/xmloff/xmltoken.hxx:1424
+include/xmloff/xmltoken.hxx:1438
enum xmloff::token::XMLTokenEnum XML_PLAIN_NUMBER
-include/xmloff/xmltoken.hxx:1425
+include/xmloff/xmltoken.hxx:1439
enum xmloff::token::XMLTokenEnum XML_PLAIN_NUMBER_AND_NAME
-include/xmloff/xmltoken.hxx:1426
+include/xmloff/xmltoken.hxx:1440
enum xmloff::token::XMLTokenEnum XML_PLAY_FULL
-include/xmloff/xmltoken.hxx:1427
+include/xmloff/xmltoken.hxx:1441
enum xmloff::token::XMLTokenEnum XML_PLOT_AREA
-include/xmloff/xmltoken.hxx:1428
+include/xmloff/xmltoken.hxx:1442
enum xmloff::token::XMLTokenEnum XML_PLUGIN
-include/xmloff/xmltoken.hxx:1429
+include/xmloff/xmltoken.hxx:1443
enum xmloff::token::XMLTokenEnum XML_PLUS
-include/xmloff/xmltoken.hxx:1430
+include/xmloff/xmltoken.hxx:1444
enum xmloff::token::XMLTokenEnum XML_POINTS
-include/xmloff/xmltoken.hxx:1431
+include/xmloff/xmltoken.hxx:1445
enum xmloff::token::XMLTokenEnum XML_POLYGON
-include/xmloff/xmltoken.hxx:1432
+include/xmloff/xmltoken.hxx:1446
enum xmloff::token::XMLTokenEnum XML_POLYLINE
-include/xmloff/xmltoken.hxx:1433
+include/xmloff/xmltoken.hxx:1447
enum xmloff::token::XMLTokenEnum XML_POLYNOMIAL
-include/xmloff/xmltoken.hxx:1434
+include/xmloff/xmltoken.hxx:1448
enum xmloff::token::XMLTokenEnum XML_POOL_ID
-include/xmloff/xmltoken.hxx:1435
+include/xmloff/xmltoken.hxx:1449
enum xmloff::token::XMLTokenEnum XML_PORTRAIT
-include/xmloff/xmltoken.hxx:1436
- enum xmloff::token::XMLTokenEnum XML_POSITION
-include/xmloff/xmltoken.hxx:1437
+include/xmloff/xmltoken.hxx:1451
enum xmloff::token::XMLTokenEnum XML_POSITION_BOTTOM
-include/xmloff/xmltoken.hxx:1438
+include/xmloff/xmltoken.hxx:1452
enum xmloff::token::XMLTokenEnum XML_POSITION_LEFT
-include/xmloff/xmltoken.hxx:1439
+include/xmloff/xmltoken.hxx:1453
enum xmloff::token::XMLTokenEnum XML_POSITION_RIGHT
-include/xmloff/xmltoken.hxx:1440
+include/xmloff/xmltoken.hxx:1454
enum xmloff::token::XMLTokenEnum XML_POSITION_TOP
-include/xmloff/xmltoken.hxx:1441
- enum xmloff::token::XMLTokenEnum XML_POSITIVE_COLOR
-include/xmloff/xmltoken.hxx:1442
+include/xmloff/xmltoken.hxx:1456
enum xmloff::token::XMLTokenEnum XML_POSTURE_ITALIC
-include/xmloff/xmltoken.hxx:1443
+include/xmloff/xmltoken.hxx:1457
enum xmloff::token::XMLTokenEnum XML_POSTURE_NORMAL
-include/xmloff/xmltoken.hxx:1444
+include/xmloff/xmltoken.hxx:1458
enum xmloff::token::XMLTokenEnum XML_POSTURE_OBLIQUE
-include/xmloff/xmltoken.hxx:1445
+include/xmloff/xmltoken.hxx:1459
enum xmloff::token::XMLTokenEnum XML_POWER
-include/xmloff/xmltoken.hxx:1446
- enum xmloff::token::XMLTokenEnum XML_PRECISION_AS_SHOWN
-include/xmloff/xmltoken.hxx:1447
+include/xmloff/xmltoken.hxx:1461
enum xmloff::token::XMLTokenEnum XML_PREFIX
-include/xmloff/xmltoken.hxx:1449
+include/xmloff/xmltoken.hxx:1463
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_CHART
-include/xmloff/xmltoken.hxx:1450
+include/xmloff/xmltoken.hxx:1464
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_GRAPHIC
-include/xmloff/xmltoken.hxx:1451
+include/xmloff/xmltoken.hxx:1465
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_NOTES
-include/xmloff/xmltoken.hxx:1452
+include/xmloff/xmltoken.hxx:1466
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_OBJECT
-include/xmloff/xmltoken.hxx:1453
+include/xmloff/xmltoken.hxx:1467
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_ORGCHART
-include/xmloff/xmltoken.hxx:1454
+include/xmloff/xmltoken.hxx:1468
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_OUTLINE
-include/xmloff/xmltoken.hxx:1455
+include/xmloff/xmltoken.hxx:1469
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_PAGE
-include/xmloff/xmltoken.hxx:1456
+include/xmloff/xmltoken.hxx:1470
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_PAGE_LAYOUT
-include/xmloff/xmltoken.hxx:1457
+include/xmloff/xmltoken.hxx:1471
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_PAGE_LAYOUT_NAME
-include/xmloff/xmltoken.hxx:1458
+include/xmloff/xmltoken.hxx:1472
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_SUBTITLE
-include/xmloff/xmltoken.hxx:1459
+include/xmloff/xmltoken.hxx:1473
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_TABLE
-include/xmloff/xmltoken.hxx:1460
+include/xmloff/xmltoken.hxx:1474
enum xmloff::token::XMLTokenEnum XML_PRESENTATION_TITLE
-include/xmloff/xmltoken.hxx:1461
- enum xmloff::token::XMLTokenEnum XML_PREVIOUS
-include/xmloff/xmltoken.hxx:1462
+include/xmloff/xmltoken.hxx:1476
enum xmloff::token::XMLTokenEnum XML_PREVIOUS_PAGE
-include/xmloff/xmltoken.hxx:1463
- enum xmloff::token::XMLTokenEnum XML_PRINT
-include/xmloff/xmltoken.hxx:1464
+include/xmloff/xmltoken.hxx:1478
enum xmloff::token::XMLTokenEnum XML_PRINT_CONTENT
-include/xmloff/xmltoken.hxx:1465
+include/xmloff/xmltoken.hxx:1479
enum xmloff::token::XMLTokenEnum XML_PRINT_DATE
-include/xmloff/xmltoken.hxx:1466
+include/xmloff/xmltoken.hxx:1480
enum xmloff::token::XMLTokenEnum XML_PRINT_ORIENTATION
-include/xmloff/xmltoken.hxx:1467
+include/xmloff/xmltoken.hxx:1481
enum xmloff::token::XMLTokenEnum XML_PRINT_PAGE_ORDER
-include/xmloff/xmltoken.hxx:1468
+include/xmloff/xmltoken.hxx:1482
enum xmloff::token::XMLTokenEnum XML_PRINT_RANGE
-include/xmloff/xmltoken.hxx:1469
- enum xmloff::token::XMLTokenEnum XML_PRINT_RANGES
-include/xmloff/xmltoken.hxx:1470
+include/xmloff/xmltoken.hxx:1484
enum xmloff::token::XMLTokenEnum XML_PRINT_TIME
-include/xmloff/xmltoken.hxx:1471
+include/xmloff/xmltoken.hxx:1485
enum xmloff::token::XMLTokenEnum XML_PRINTABLE
-include/xmloff/xmltoken.hxx:1472
+include/xmloff/xmltoken.hxx:1486
enum xmloff::token::XMLTokenEnum XML_PRINTED_BY
-include/xmloff/xmltoken.hxx:1473
+include/xmloff/xmltoken.hxx:1487
enum xmloff::token::XMLTokenEnum XML_PROCEEDINGS
-include/xmloff/xmltoken.hxx:1474
+include/xmloff/xmltoken.hxx:1488
enum xmloff::token::XMLTokenEnum XML_PRODUCT
-include/xmloff/xmltoken.hxx:1475
+include/xmloff/xmltoken.hxx:1489
enum xmloff::token::XMLTokenEnum XML_PROJECTION
-include/xmloff/xmltoken.hxx:1476
+include/xmloff/xmltoken.hxx:1490
enum xmloff::token::XMLTokenEnum XML_PROPERTIES
-include/xmloff/xmltoken.hxx:1477
+include/xmloff/xmltoken.hxx:1491
enum xmloff::token::XMLTokenEnum XML_PROTECT
-include/xmloff/xmltoken.hxx:1478
+include/xmloff/xmltoken.hxx:1492
enum xmloff::token::XMLTokenEnum XML_PROTECT_CONTENT
-include/xmloff/xmltoken.hxx:1479
+include/xmloff/xmltoken.hxx:1493
enum xmloff::token::XMLTokenEnum XML_PROTECT_POSITION
-include/xmloff/xmltoken.hxx:1480
+include/xmloff/xmltoken.hxx:1494
enum xmloff::token::XMLTokenEnum XML_PROTECT_SIZE
-include/xmloff/xmltoken.hxx:1481
- enum xmloff::token::XMLTokenEnum XML_PROTECTED
-include/xmloff/xmltoken.hxx:1485
+include/xmloff/xmltoken.hxx:1499
enum xmloff::token::XMLTokenEnum XML_PRSUBSET
-include/xmloff/xmltoken.hxx:1486
+include/xmloff/xmltoken.hxx:1500
enum xmloff::token::XMLTokenEnum XML_PUBLISHER
-include/xmloff/xmltoken.hxx:1487
+include/xmloff/xmltoken.hxx:1501
enum xmloff::token::XMLTokenEnum XML_PUNCTUATION_WRAP
-include/xmloff/xmltoken.hxx:1488
+include/xmloff/xmltoken.hxx:1502
enum xmloff::token::XMLTokenEnum XML_PURPLE
-include/xmloff/xmltoken.hxx:1489
+include/xmloff/xmltoken.hxx:1503
enum xmloff::token::XMLTokenEnum XML_PYRAMID
-include/xmloff/xmltoken.hxx:1490
+include/xmloff/xmltoken.hxx:1504
enum xmloff::token::XMLTokenEnum XML_QUARTER
-include/xmloff/xmltoken.hxx:1491
- enum xmloff::token::XMLTokenEnum XML_QUERY_NAME
-include/xmloff/xmltoken.hxx:1492
+include/xmloff/xmltoken.hxx:1506
enum xmloff::token::XMLTokenEnum XML_QUO_VADIS
-include/xmloff/xmltoken.hxx:1493
+include/xmloff/xmltoken.hxx:1507
enum xmloff::token::XMLTokenEnum XML_QUOTIENT
-include/xmloff/xmltoken.hxx:1494
+include/xmloff/xmltoken.hxx:1508
enum xmloff::token::XMLTokenEnum XML_R
-include/xmloff/xmltoken.hxx:1495
+include/xmloff/xmltoken.hxx:1509
enum xmloff::token::XMLTokenEnum XML_RADAR
-include/xmloff/xmltoken.hxx:1496
+include/xmloff/xmltoken.hxx:1510
enum xmloff::token::XMLTokenEnum XML_RANDOM
-include/xmloff/xmltoken.hxx:1497
+include/xmloff/xmltoken.hxx:1511
enum xmloff::token::XMLTokenEnum XML_RANGE_ADDRESS
-include/xmloff/xmltoken.hxx:1498
- enum xmloff::token::XMLTokenEnum XML_RANGE_USABLE_AS
-include/xmloff/xmltoken.hxx:1499
+include/xmloff/xmltoken.hxx:1513
enum xmloff::token::XMLTokenEnum XML_RECREATE_ON_EDIT
-include/xmloff/xmltoken.hxx:1500
+include/xmloff/xmltoken.hxx:1514
enum xmloff::token::XMLTokenEnum XML_RECT
-include/xmloff/xmltoken.hxx:1501
+include/xmloff/xmltoken.hxx:1515
enum xmloff::token::XMLTokenEnum XML_RED
-include/xmloff/xmltoken.hxx:1502
+include/xmloff/xmltoken.hxx:1516
enum xmloff::token::XMLTokenEnum XML_REF_NAME
-include/xmloff/xmltoken.hxx:1503
+include/xmloff/xmltoken.hxx:1517
enum xmloff::token::XMLTokenEnum XML_REFERENCE
-include/xmloff/xmltoken.hxx:1504
+include/xmloff/xmltoken.hxx:1518
enum xmloff::token::XMLTokenEnum XML_REFERENCE_END
-include/xmloff/xmltoken.hxx:1505
+include/xmloff/xmltoken.hxx:1519
enum xmloff::token::XMLTokenEnum XML_REFERENCE_FORMAT
-include/xmloff/xmltoken.hxx:1506
+include/xmloff/xmltoken.hxx:1520
enum xmloff::token::XMLTokenEnum XML_REFERENCE_MARK
-include/xmloff/xmltoken.hxx:1507
+include/xmloff/xmltoken.hxx:1521
enum xmloff::token::XMLTokenEnum XML_REFERENCE_MARK_END
-include/xmloff/xmltoken.hxx:1508
+include/xmloff/xmltoken.hxx:1522
enum xmloff::token::XMLTokenEnum XML_REFERENCE_MARK_START
-include/xmloff/xmltoken.hxx:1509
+include/xmloff/xmltoken.hxx:1523
enum xmloff::token::XMLTokenEnum XML_REFERENCE_REF
-include/xmloff/xmltoken.hxx:1510
+include/xmloff/xmltoken.hxx:1524
enum xmloff::token::XMLTokenEnum XML_REFERENCE_START
-include/xmloff/xmltoken.hxx:1511
+include/xmloff/xmltoken.hxx:1525
enum xmloff::token::XMLTokenEnum XML_REFERENCE_TYPE
-include/xmloff/xmltoken.hxx:1512
- enum xmloff::token::XMLTokenEnum XML_REFRESH_DELAY
-include/xmloff/xmltoken.hxx:1513
+include/xmloff/xmltoken.hxx:1527
enum xmloff::token::XMLTokenEnum XML_REGION_CENTER
-include/xmloff/xmltoken.hxx:1514
+include/xmloff/xmltoken.hxx:1528
enum xmloff::token::XMLTokenEnum XML_REGION_LEFT
-include/xmloff/xmltoken.hxx:1515
+include/xmloff/xmltoken.hxx:1529
enum xmloff::token::XMLTokenEnum XML_REGION_RIGHT
-include/xmloff/xmltoken.hxx:1516
+include/xmloff/xmltoken.hxx:1530
enum xmloff::token::XMLTokenEnum XML_REGISTER_TRUE
-include/xmloff/xmltoken.hxx:1517
+include/xmloff/xmltoken.hxx:1531
enum xmloff::token::XMLTokenEnum XML_REGISTER_TRUTH_REF_STYLE_NAME
-include/xmloff/xmltoken.hxx:1518
+include/xmloff/xmltoken.hxx:1532
enum xmloff::token::XMLTokenEnum XML_REJECTED
-include/xmloff/xmltoken.hxx:1519
- enum xmloff::token::XMLTokenEnum XML_REJECTING_CHANGE_ID
-include/xmloff/xmltoken.hxx:1520
- enum xmloff::token::XMLTokenEnum XML_REJECTION
-include/xmloff/xmltoken.hxx:1521
+include/xmloff/xmltoken.hxx:1535
enum xmloff::token::XMLTokenEnum XML_REL_COLUMN_WIDTH
-include/xmloff/xmltoken.hxx:1522
+include/xmloff/xmltoken.hxx:1536
enum xmloff::token::XMLTokenEnum XML_REL_HEIGHT
-include/xmloff/xmltoken.hxx:1523
+include/xmloff/xmltoken.hxx:1537
enum xmloff::token::XMLTokenEnum XML_REL_HEIGHT_REL
-include/xmloff/xmltoken.hxx:1524
+include/xmloff/xmltoken.hxx:1538
enum xmloff::token::XMLTokenEnum XML_REL_WIDTH
-include/xmloff/xmltoken.hxx:1525
+include/xmloff/xmltoken.hxx:1539
enum xmloff::token::XMLTokenEnum XML_REL_WIDTH_REL
-include/xmloff/xmltoken.hxx:1526
+include/xmloff/xmltoken.hxx:1540
enum xmloff::token::XMLTokenEnum XML_RELATIVE
-include/xmloff/xmltoken.hxx:1527
+include/xmloff/xmltoken.hxx:1541
enum xmloff::token::XMLTokenEnum XML_RELATIVE_TAB_STOP_POSITION
-include/xmloff/xmltoken.hxx:1528
+include/xmloff/xmltoken.hxx:1542
enum xmloff::token::XMLTokenEnum XML_RELN
-include/xmloff/xmltoken.hxx:1529
+include/xmloff/xmltoken.hxx:1543
enum xmloff::token::XMLTokenEnum XML_REM
-include/xmloff/xmltoken.hxx:1530
+include/xmloff/xmltoken.hxx:1544
enum xmloff::token::XMLTokenEnum XML_REMOVE_DEPENDENTS
-include/xmloff/xmltoken.hxx:1531
+include/xmloff/xmltoken.hxx:1545
enum xmloff::token::XMLTokenEnum XML_REMOVE_PRECEDENTS
-include/xmloff/xmltoken.hxx:1532
+include/xmloff/xmltoken.hxx:1546
enum xmloff::token::XMLTokenEnum XML_REPEAT
-include/xmloff/xmltoken.hxx:1533
+include/xmloff/xmltoken.hxx:1547
enum xmloff::token::XMLTokenEnum XML_REPEAT_COLUMN
-include/xmloff/xmltoken.hxx:1534
+include/xmloff/xmltoken.hxx:1548
enum xmloff::token::XMLTokenEnum XML_REPEAT_ROW
-include/xmloff/xmltoken.hxx:1535
+include/xmloff/xmltoken.hxx:1549
enum xmloff::token::XMLTokenEnum XML_REPEATED
-include/xmloff/xmltoken.hxx:1537
+include/xmloff/xmltoken.hxx:1551
enum xmloff::token::XMLTokenEnum XML_REPORT_TYPE
-include/xmloff/xmltoken.hxx:1538
+include/xmloff/xmltoken.hxx:1552
enum xmloff::token::XMLTokenEnum XML_RESTART_ON_PAGE
-include/xmloff/xmltoken.hxx:1539
+include/xmloff/xmltoken.hxx:1553
enum xmloff::token::XMLTokenEnum XML_REVISION
-include/xmloff/xmltoken.hxx:1540
+include/xmloff/xmltoken.hxx:1554
enum xmloff::token::XMLTokenEnum XML_RIDGE
-include/xmloff/xmltoken.hxx:1541
+include/xmloff/xmltoken.hxx:1555
enum xmloff::token::XMLTokenEnum XML_RIGHT
-include/xmloff/xmltoken.hxx:1542
+include/xmloff/xmltoken.hxx:1556
enum xmloff::token::XMLTokenEnum XML_RIGHT_OUTSIDE
-include/xmloff/xmltoken.hxx:1543
+include/xmloff/xmltoken.hxx:1557
enum xmloff::token::XMLTokenEnum XML_RIGHTARC
-include/xmloff/xmltoken.hxx:1544
+include/xmloff/xmltoken.hxx:1558
enum xmloff::token::XMLTokenEnum XML_RIGHTCIRCLE
-include/xmloff/xmltoken.hxx:1545
+include/xmloff/xmltoken.hxx:1559
enum xmloff::token::XMLTokenEnum XML_RING
-include/xmloff/xmltoken.hxx:1546
+include/xmloff/xmltoken.hxx:1560
enum xmloff::token::XMLTokenEnum XML_ROLE
-include/xmloff/xmltoken.hxx:1547
+include/xmloff/xmltoken.hxx:1561
enum xmloff::token::XMLTokenEnum XML_ROLL_FROM_BOTTOM
-include/xmloff/xmltoken.hxx:1548
+include/xmloff/xmltoken.hxx:1562
enum xmloff::token::XMLTokenEnum XML_ROLL_FROM_LEFT
-include/xmloff/xmltoken.hxx:1549
+include/xmloff/xmltoken.hxx:1563
enum xmloff::token::XMLTokenEnum XML_ROLL_FROM_RIGHT
-include/xmloff/xmltoken.hxx:1550
+include/xmloff/xmltoken.hxx:1564
enum xmloff::token::XMLTokenEnum XML_ROMAN
-include/xmloff/xmltoken.hxx:1551
+include/xmloff/xmltoken.hxx:1565
enum xmloff::token::XMLTokenEnum XML_ROOT
-include/xmloff/xmltoken.hxx:1553
+include/xmloff/xmltoken.hxx:1567
enum xmloff::token::XMLTokenEnum XML_ROTATION
-include/xmloff/xmltoken.hxx:1554
+include/xmloff/xmltoken.hxx:1568
enum xmloff::token::XMLTokenEnum XML_ROTATION_ALIGN
-include/xmloff/xmltoken.hxx:1555
+include/xmloff/xmltoken.hxx:1569
enum xmloff::token::XMLTokenEnum XML_ROTATION_ANGLE
-include/xmloff/xmltoken.hxx:1556
+include/xmloff/xmltoken.hxx:1570
enum xmloff::token::XMLTokenEnum XML_ROUND
-include/xmloff/xmltoken.hxx:1559
+include/xmloff/xmltoken.hxx:1572
enum xmloff::token::XMLTokenEnum XML_ROW_HEIGHT
-include/xmloff/xmltoken.hxx:1560
+include/xmloff/xmltoken.hxx:1573
enum xmloff::token::XMLTokenEnum XML_ROW_NUMBER
-include/xmloff/xmltoken.hxx:1561
+include/xmloff/xmltoken.hxx:1574
enum xmloff::token::XMLTokenEnum XML_ROWS
-include/xmloff/xmltoken.hxx:1562
+include/xmloff/xmltoken.hxx:1575
enum xmloff::token::XMLTokenEnum XML_RSID
-include/xmloff/xmltoken.hxx:1563
+include/xmloff/xmltoken.hxx:1576
enum xmloff::token::XMLTokenEnum XML_PARRSID
-include/xmloff/xmltoken.hxx:1564
+include/xmloff/xmltoken.hxx:1577
enum xmloff::token::XMLTokenEnum XML_RUBY
-include/xmloff/xmltoken.hxx:1565
+include/xmloff/xmltoken.hxx:1578
enum xmloff::token::XMLTokenEnum XML_RUBY_ALIGN
-include/xmloff/xmltoken.hxx:1566
+include/xmloff/xmltoken.hxx:1579
enum xmloff::token::XMLTokenEnum XML_RUBY_BASE
-include/xmloff/xmltoken.hxx:1567
+include/xmloff/xmltoken.hxx:1580
enum xmloff::token::XMLTokenEnum XML_RUBY_POSITION
-include/xmloff/xmltoken.hxx:1568
+include/xmloff/xmltoken.hxx:1581
enum xmloff::token::XMLTokenEnum XML_RUBY_TEXT
-include/xmloff/xmltoken.hxx:1569
+include/xmloff/xmltoken.hxx:1582
enum xmloff::token::XMLTokenEnum XML_RUN_THROUGH
-include/xmloff/xmltoken.hxx:1570
+include/xmloff/xmltoken.hxx:1583
enum xmloff::token::XMLTokenEnum XML_RX
-include/xmloff/xmltoken.hxx:1571
+include/xmloff/xmltoken.hxx:1584
enum xmloff::token::XMLTokenEnum XML_RY
-include/xmloff/xmltoken.hxx:1572
- enum xmloff::token::XMLTokenEnum XML_S
-include/xmloff/xmltoken.hxx:1574
+include/xmloff/xmltoken.hxx:1587
enum xmloff::token::XMLTokenEnum XML_SCALE_MIN
-include/xmloff/xmltoken.hxx:1575
+include/xmloff/xmltoken.hxx:1588
enum xmloff::token::XMLTokenEnum XML_SCALE_TEXT
-include/xmloff/xmltoken.hxx:1576
+include/xmloff/xmltoken.hxx:1589
enum xmloff::token::XMLTokenEnum XML_SCALE_TO
-include/xmloff/xmltoken.hxx:1577
+include/xmloff/xmltoken.hxx:1590
enum xmloff::token::XMLTokenEnum XML_SCALE_TO_PAGES
-include/xmloff/xmltoken.hxx:1578
+include/xmloff/xmltoken.hxx:1591
enum xmloff::token::XMLTokenEnum XML_SCATTER
-include/xmloff/xmltoken.hxx:1579
- enum xmloff::token::XMLTokenEnum XML_SCENARIO
-include/xmloff/xmltoken.hxx:1580
- enum xmloff::token::XMLTokenEnum XML_SCENARIO_RANGES
-include/xmloff/xmltoken.hxx:1581
+include/xmloff/xmltoken.hxx:1594
enum xmloff::token::XMLTokenEnum XML_SCENE
-include/xmloff/xmltoken.hxx:1582
+include/xmloff/xmltoken.hxx:1595
enum xmloff::token::XMLTokenEnum XML_SCHOOL
-include/xmloff/xmltoken.hxx:1583
+include/xmloff/xmltoken.hxx:1596
enum xmloff::token::XMLTokenEnum XML_SCIENTIFIC_NUMBER
-include/xmloff/xmltoken.hxx:1584
+include/xmloff/xmltoken.hxx:1597
enum xmloff::token::XMLTokenEnum XML_SCORE_SPACES
-include/xmloff/xmltoken.hxx:1585
- enum xmloff::token::XMLTokenEnum XML_SCRIPT
-include/xmloff/xmltoken.hxx:1586
+include/xmloff/xmltoken.hxx:1599
enum xmloff::token::XMLTokenEnum XML_SCRIPT_ASIAN
-include/xmloff/xmltoken.hxx:1587
+include/xmloff/xmltoken.hxx:1600
enum xmloff::token::XMLTokenEnum XML_SCRIPT_COMPLEX
-include/xmloff/xmltoken.hxx:1588
+include/xmloff/xmltoken.hxx:1601
enum xmloff::token::XMLTokenEnum XML_SCROLL
-include/xmloff/xmltoken.hxx:1589
+include/xmloff/xmltoken.hxx:1602
enum xmloff::token::XMLTokenEnum XML_SDEV
-include/xmloff/xmltoken.hxx:1590
- enum xmloff::token::XMLTokenEnum XML_SEARCH_CRITERIA_MUST_APPLY_TO_WHOLE_CELL
-include/xmloff/xmltoken.hxx:1591
+include/xmloff/xmltoken.hxx:1604
enum xmloff::token::XMLTokenEnum XML_SEC
-include/xmloff/xmltoken.hxx:1592
+include/xmloff/xmltoken.hxx:1605
enum xmloff::token::XMLTokenEnum XML_SECH
-include/xmloff/xmltoken.hxx:1593
+include/xmloff/xmltoken.hxx:1606
enum xmloff::token::XMLTokenEnum XML_SECOND_DATE_TIME
-include/xmloff/xmltoken.hxx:1594
+include/xmloff/xmltoken.hxx:1607
enum xmloff::token::XMLTokenEnum XML_SECONDS
-include/xmloff/xmltoken.hxx:1595
+include/xmloff/xmltoken.hxx:1608
enum xmloff::token::XMLTokenEnum XML_SECTION
-include/xmloff/xmltoken.hxx:1596
+include/xmloff/xmltoken.hxx:1609
enum xmloff::token::XMLTokenEnum XML_SECTION_DESC
-include/xmloff/xmltoken.hxx:1597
+include/xmloff/xmltoken.hxx:1610
enum xmloff::token::XMLTokenEnum XML_SECTION_NAME
-include/xmloff/xmltoken.hxx:1598
+include/xmloff/xmltoken.hxx:1611
enum xmloff::token::XMLTokenEnum XML_SECTION_SOURCE
-include/xmloff/xmltoken.hxx:1599
+include/xmloff/xmltoken.hxx:1612
enum xmloff::token::XMLTokenEnum XML_SELECT_PAGE
-include/xmloff/xmltoken.hxx:1600
- enum xmloff::token::XMLTokenEnum XML_SELECT_PROTECTED_CELLS
-include/xmloff/xmltoken.hxx:1601
- enum xmloff::token::XMLTokenEnum XML_SELECT_UNPROTECTED_CELLS
-include/xmloff/xmltoken.hxx:1602
+include/xmloff/xmltoken.hxx:1615
enum xmloff::token::XMLTokenEnum XML_SELECTOR
-include/xmloff/xmltoken.hxx:1603
+include/xmloff/xmltoken.hxx:1616
enum xmloff::token::XMLTokenEnum XML_SEMANTICS
-include/xmloff/xmltoken.hxx:1604
+include/xmloff/xmltoken.hxx:1617
enum xmloff::token::XMLTokenEnum XML_SEMI_AUTOMATIC
-include/xmloff/xmltoken.hxx:1605
+include/xmloff/xmltoken.hxx:1618
enum xmloff::token::XMLTokenEnum XML_SENDER_CITY
-include/xmloff/xmltoken.hxx:1606
+include/xmloff/xmltoken.hxx:1619
enum xmloff::token::XMLTokenEnum XML_SENDER_COMPANY
-include/xmloff/xmltoken.hxx:1607
+include/xmloff/xmltoken.hxx:1620
enum xmloff::token::XMLTokenEnum XML_SENDER_COUNTRY
-include/xmloff/xmltoken.hxx:1608
+include/xmloff/xmltoken.hxx:1621
enum xmloff::token::XMLTokenEnum XML_SENDER_EMAIL
-include/xmloff/xmltoken.hxx:1609
+include/xmloff/xmltoken.hxx:1622
enum xmloff::token::XMLTokenEnum XML_SENDER_FAX
-include/xmloff/xmltoken.hxx:1610
+include/xmloff/xmltoken.hxx:1623
enum xmloff::token::XMLTokenEnum XML_SENDER_FIRSTNAME
-include/xmloff/xmltoken.hxx:1612
+include/xmloff/xmltoken.hxx:1624
+ enum xmloff::token::XMLTokenEnum XML_SENDER_INITIALS
+include/xmloff/xmltoken.hxx:1625
enum xmloff::token::XMLTokenEnum XML_SENDER_LASTNAME
-include/xmloff/xmltoken.hxx:1613
+include/xmloff/xmltoken.hxx:1626
enum xmloff::token::XMLTokenEnum XML_SENDER_PHONE_PRIVATE
-include/xmloff/xmltoken.hxx:1614
+include/xmloff/xmltoken.hxx:1627
enum xmloff::token::XMLTokenEnum XML_SENDER_PHONE_WORK
-include/xmloff/xmltoken.hxx:1615
+include/xmloff/xmltoken.hxx:1628
enum xmloff::token::XMLTokenEnum XML_SENDER_POSITION
-include/xmloff/xmltoken.hxx:1616
+include/xmloff/xmltoken.hxx:1629
enum xmloff::token::XMLTokenEnum XML_SENDER_POSTAL_CODE
-include/xmloff/xmltoken.hxx:1617
+include/xmloff/xmltoken.hxx:1630
enum xmloff::token::XMLTokenEnum XML_SENDER_STATE_OR_PROVINCE
-include/xmloff/xmltoken.hxx:1618
+include/xmloff/xmltoken.hxx:1631
enum xmloff::token::XMLTokenEnum XML_SENDER_STREET
-include/xmloff/xmltoken.hxx:1619
+include/xmloff/xmltoken.hxx:1632
enum xmloff::token::XMLTokenEnum XML_SENDER_TITLE
-include/xmloff/xmltoken.hxx:1620
+include/xmloff/xmltoken.hxx:1633
enum xmloff::token::XMLTokenEnum XML_SEP
-include/xmloff/xmltoken.hxx:1621
+include/xmloff/xmltoken.hxx:1634
enum xmloff::token::XMLTokenEnum XML_SEPARATION_CHARACTER
-include/xmloff/xmltoken.hxx:1623
+include/xmloff/xmltoken.hxx:1636
enum xmloff::token::XMLTokenEnum XML_SEQUENCE
-include/xmloff/xmltoken.hxx:1624
+include/xmloff/xmltoken.hxx:1637
enum xmloff::token::XMLTokenEnum XML_SEQUENCE_DECL
-include/xmloff/xmltoken.hxx:1625
+include/xmloff/xmltoken.hxx:1638
enum xmloff::token::XMLTokenEnum XML_SEQUENCE_DECLS
-include/xmloff/xmltoken.hxx:1626
+include/xmloff/xmltoken.hxx:1639
enum xmloff::token::XMLTokenEnum XML_SEQUENCE_REF
-include/xmloff/xmltoken.hxx:1627
+include/xmloff/xmltoken.hxx:1640
enum xmloff::token::XMLTokenEnum XML_SERIES
-include/xmloff/xmltoken.hxx:1628
+include/xmloff/xmltoken.hxx:1641
enum xmloff::token::XMLTokenEnum XML_SERIES_SOURCE
-include/xmloff/xmltoken.hxx:1629
+include/xmloff/xmltoken.hxx:1642
enum xmloff::token::XMLTokenEnum XML_SERVER_MAP
-include/xmloff/xmltoken.hxx:1630
+include/xmloff/xmltoken.hxx:1643
enum xmloff::token::XMLTokenEnum XML_SET
-include/xmloff/xmltoken.hxx:1631
+include/xmloff/xmltoken.hxx:1644
enum xmloff::token::XMLTokenEnum XML_SETDIFF
-include/xmloff/xmltoken.hxx:1632
+include/xmloff/xmltoken.hxx:1645
enum xmloff::token::XMLTokenEnum XML_SETTINGS
-include/xmloff/xmltoken.hxx:1633
+include/xmloff/xmltoken.hxx:1646
enum xmloff::token::XMLTokenEnum XML_SHADE_MODE
-include/xmloff/xmltoken.hxx:1634
+include/xmloff/xmltoken.hxx:1647
enum xmloff::token::XMLTokenEnum XML_SHADOW
-include/xmloff/xmltoken.hxx:1635
+include/xmloff/xmltoken.hxx:1648
enum xmloff::token::XMLTokenEnum XML_SHADOW_COLOR
-include/xmloff/xmltoken.hxx:1636
+include/xmloff/xmltoken.hxx:1649
enum xmloff::token::XMLTokenEnum XML_SHADOW_OFFSET_X
-include/xmloff/xmltoken.hxx:1637
+include/xmloff/xmltoken.hxx:1650
enum xmloff::token::XMLTokenEnum XML_SHADOW_OFFSET_Y
-include/xmloff/xmltoken.hxx:1638
+include/xmloff/xmltoken.hxx:1651
enum xmloff::token::XMLTokenEnum XML_SHADOW_SLANT
-include/xmloff/xmltoken.hxx:1639
+include/xmloff/xmltoken.hxx:1652
enum xmloff::token::XMLTokenEnum XML_SHADOW_TRANSPARENCY
-include/xmloff/xmltoken.hxx:1640
+include/xmloff/xmltoken.hxx:1653
enum xmloff::token::XMLTokenEnum XML_SHAPE
-include/xmloff/xmltoken.hxx:1641
+include/xmloff/xmltoken.hxx:1654
enum xmloff::token::XMLTokenEnum XML_SHAPE_ID
-include/xmloff/xmltoken.hxx:1642
- enum xmloff::token::XMLTokenEnum XML_SHAPES
-include/xmloff/xmltoken.hxx:1643
- enum xmloff::token::XMLTokenEnum XML_SHEET_NAME
-include/xmloff/xmltoken.hxx:1644
+include/xmloff/xmltoken.hxx:1657
enum xmloff::token::XMLTokenEnum XML_SHININESS
-include/xmloff/xmltoken.hxx:1645
+include/xmloff/xmltoken.hxx:1658
enum xmloff::token::XMLTokenEnum XML_SHORT
-include/xmloff/xmltoken.hxx:1646
+include/xmloff/xmltoken.hxx:1659
enum xmloff::token::XMLTokenEnum XML_SHOW
-include/xmloff/xmltoken.hxx:1647
+include/xmloff/xmltoken.hxx:1660
enum xmloff::token::XMLTokenEnum XML_SHOW_ACCEPTED_CHANGES
-include/xmloff/xmltoken.hxx:1648
+include/xmloff/xmltoken.hxx:1661
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES
-include/xmloff/xmltoken.hxx:1649
+include/xmloff/xmltoken.hxx:1662
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_AUTHOR
-include/xmloff/xmltoken.hxx:1650
+include/xmloff/xmltoken.hxx:1663
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_AUTHOR_NAME
-include/xmloff/xmltoken.hxx:1651
+include/xmloff/xmltoken.hxx:1664
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_COMMENT
-include/xmloff/xmltoken.hxx:1652
+include/xmloff/xmltoken.hxx:1665
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_COMMENT_TEXT
-include/xmloff/xmltoken.hxx:1653
+include/xmloff/xmltoken.hxx:1666
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_DATETIME
-include/xmloff/xmltoken.hxx:1654
+include/xmloff/xmltoken.hxx:1667
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_DATETIME_FIRST_DATETIME
-include/xmloff/xmltoken.hxx:1655
+include/xmloff/xmltoken.hxx:1668
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_DATETIME_MODE
-include/xmloff/xmltoken.hxx:1656
+include/xmloff/xmltoken.hxx:1669
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_DATETIME_SECOND_DATETIME
-include/xmloff/xmltoken.hxx:1657
+include/xmloff/xmltoken.hxx:1670
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_RANGES
-include/xmloff/xmltoken.hxx:1658
+include/xmloff/xmltoken.hxx:1671
enum xmloff::token::XMLTokenEnum XML_SHOW_CHANGES_BY_RANGES_LIST
-include/xmloff/xmltoken.hxx:1659
+include/xmloff/xmltoken.hxx:1672
enum xmloff::token::XMLTokenEnum XML_SHOW_LOGO
-include/xmloff/xmltoken.hxx:1660
+include/xmloff/xmltoken.hxx:1673
enum xmloff::token::XMLTokenEnum XML_SHOW_REJECTED_CHANGES
-include/xmloff/xmltoken.hxx:1661
+include/xmloff/xmltoken.hxx:1674
enum xmloff::token::XMLTokenEnum XML_SHOW_SHAPE
-include/xmloff/xmltoken.hxx:1662
+include/xmloff/xmltoken.hxx:1675
enum xmloff::token::XMLTokenEnum XML_SHOW_TEXT
-include/xmloff/xmltoken.hxx:1663
+include/xmloff/xmltoken.hxx:1676
enum xmloff::token::XMLTokenEnum XML_SHOW_UNIT
-include/xmloff/xmltoken.hxx:1664
- enum xmloff::token::XMLTokenEnum XML_SHOW_VALUE
-include/xmloff/xmltoken.hxx:1665
+include/xmloff/xmltoken.hxx:1678
enum xmloff::token::XMLTokenEnum XML_SHOWS
-include/xmloff/xmltoken.hxx:1666
+include/xmloff/xmltoken.hxx:1679
enum xmloff::token::XMLTokenEnum XML_SIDE_BY_SIDE
-include/xmloff/xmltoken.hxx:1667
+include/xmloff/xmltoken.hxx:1680
enum xmloff::token::XMLTokenEnum XML_SILVER
-include/xmloff/xmltoken.hxx:1668
+include/xmloff/xmltoken.hxx:1681
enum xmloff::token::XMLTokenEnum XML_SIMPLE
-include/xmloff/xmltoken.hxx:1669
+include/xmloff/xmltoken.hxx:1682
enum xmloff::token::XMLTokenEnum XML_SIN
-include/xmloff/xmltoken.hxx:1670
+include/xmloff/xmltoken.hxx:1683
enum xmloff::token::XMLTokenEnum XML_SINCE_DATE_TIME
-include/xmloff/xmltoken.hxx:1671
+include/xmloff/xmltoken.hxx:1684
enum xmloff::token::XMLTokenEnum XML_SINCE_SAVE
-include/xmloff/xmltoken.hxx:1672
+include/xmloff/xmltoken.hxx:1685
enum xmloff::token::XMLTokenEnum XML_SINH
-include/xmloff/xmltoken.hxx:1673
+include/xmloff/xmltoken.hxx:1686
enum xmloff::token::XMLTokenEnum XML_SIZE
-include/xmloff/xmltoken.hxx:1674
+include/xmloff/xmltoken.hxx:1687
enum xmloff::token::XMLTokenEnum XML_SIZE_PROTECT
-include/xmloff/xmltoken.hxx:1675
+include/xmloff/xmltoken.hxx:1688
enum xmloff::token::XMLTokenEnum XML_SLANT
-include/xmloff/xmltoken.hxx:1676
+include/xmloff/xmltoken.hxx:1689
enum xmloff::token::XMLTokenEnum XML_SLANT_X
-include/xmloff/xmltoken.hxx:1677
+include/xmloff/xmltoken.hxx:1690
enum xmloff::token::XMLTokenEnum XML_SLANT_Y
-include/xmloff/xmltoken.hxx:1678
+include/xmloff/xmltoken.hxx:1691
enum xmloff::token::XMLTokenEnum XML_SLIDE
-include/xmloff/xmltoken.hxx:1679
+include/xmloff/xmltoken.hxx:1692
enum xmloff::token::XMLTokenEnum XML_SLOW
-include/xmloff/xmltoken.hxx:1681
+include/xmloff/xmltoken.hxx:1694
enum xmloff::token::XMLTokenEnum XML_SOLID_TYPE
-include/xmloff/xmltoken.hxx:1682
- enum xmloff::token::XMLTokenEnum XML_SORT
-include/xmloff/xmltoken.hxx:1683
+include/xmloff/xmltoken.hxx:1696
enum xmloff::token::XMLTokenEnum XML_SORT_ASCENDING
-include/xmloff/xmltoken.hxx:1684
- enum xmloff::token::XMLTokenEnum XML_SORT_BY
-include/xmloff/xmltoken.hxx:1685
+include/xmloff/xmltoken.hxx:1698
enum xmloff::token::XMLTokenEnum XML_SORT_BY_POSITION
-include/xmloff/xmltoken.hxx:1686
- enum xmloff::token::XMLTokenEnum XML_SORT_GROUPS
-include/xmloff/xmltoken.hxx:1687
+include/xmloff/xmltoken.hxx:1700
enum xmloff::token::XMLTokenEnum XML_SORT_KEY
-include/xmloff/xmltoken.hxx:1688
+include/xmloff/xmltoken.hxx:1701
enum xmloff::token::XMLTokenEnum XML_SOUND
-include/xmloff/xmltoken.hxx:1689
- enum xmloff::token::XMLTokenEnum XML_SOURCE_CELL_RANGE
-include/xmloff/xmltoken.hxx:1690
- enum xmloff::token::XMLTokenEnum XML_SOURCE_CELL_RANGE_ADDRESSES
-include/xmloff/xmltoken.hxx:1691
- enum xmloff::token::XMLTokenEnum XML_SOURCE_FIELD_NAME
-include/xmloff/xmltoken.hxx:1692
- enum xmloff::token::XMLTokenEnum XML_SOURCE_NAME
-include/xmloff/xmltoken.hxx:1693
- enum xmloff::token::XMLTokenEnum XML_SOURCE_RANGE_ADDRESS
-include/xmloff/xmltoken.hxx:1694
- enum xmloff::token::XMLTokenEnum XML_SOURCE_SERVICE
-include/xmloff/xmltoken.hxx:1695
+include/xmloff/xmltoken.hxx:1708
enum xmloff::token::XMLTokenEnum XML_SPACE_BEFORE
-include/xmloff/xmltoken.hxx:1696
- enum xmloff::token::XMLTokenEnum XML_SPAN
-include/xmloff/xmltoken.hxx:1697
+include/xmloff/xmltoken.hxx:1710
enum xmloff::token::XMLTokenEnum XML_SPECULAR
-include/xmloff/xmltoken.hxx:1698
+include/xmloff/xmltoken.hxx:1711
enum xmloff::token::XMLTokenEnum XML_SPECULAR_COLOR
-include/xmloff/xmltoken.hxx:1699
+include/xmloff/xmltoken.hxx:1712
enum xmloff::token::XMLTokenEnum XML_SPEED
-include/xmloff/xmltoken.hxx:1700
+include/xmloff/xmltoken.hxx:1713
enum xmloff::token::XMLTokenEnum XML_SPHERE
-include/xmloff/xmltoken.hxx:1701
+include/xmloff/xmltoken.hxx:1714
enum xmloff::token::XMLTokenEnum XML_SPIRAL
-include/xmloff/xmltoken.hxx:1702
+include/xmloff/xmltoken.hxx:1715
enum xmloff::token::XMLTokenEnum XML_SPIRAL_IN
-include/xmloff/xmltoken.hxx:1703
+include/xmloff/xmltoken.hxx:1716
enum xmloff::token::XMLTokenEnum XML_SPIRAL_INWARD_LEFT
-include/xmloff/xmltoken.hxx:1704
+include/xmloff/xmltoken.hxx:1717
enum xmloff::token::XMLTokenEnum XML_SPIRAL_INWARD_RIGHT
-include/xmloff/xmltoken.hxx:1705
+include/xmloff/xmltoken.hxx:1718
enum xmloff::token::XMLTokenEnum XML_SPIRAL_OUT
-include/xmloff/xmltoken.hxx:1706
+include/xmloff/xmltoken.hxx:1719
enum xmloff::token::XMLTokenEnum XML_SPIRAL_OUTWARD_LEFT
-include/xmloff/xmltoken.hxx:1707
+include/xmloff/xmltoken.hxx:1720
enum xmloff::token::XMLTokenEnum XML_SPIRAL_OUTWARD_RIGHT
-include/xmloff/xmltoken.hxx:1708
+include/xmloff/xmltoken.hxx:1721
enum xmloff::token::XMLTokenEnum XML_SPIRALIN_LEFT
-include/xmloff/xmltoken.hxx:1709
+include/xmloff/xmltoken.hxx:1722
enum xmloff::token::XMLTokenEnum XML_SPIRALIN_RIGHT
-include/xmloff/xmltoken.hxx:1710
+include/xmloff/xmltoken.hxx:1723
enum xmloff::token::XMLTokenEnum XML_SPIRALOUT_LEFT
-include/xmloff/xmltoken.hxx:1711
+include/xmloff/xmltoken.hxx:1724
enum xmloff::token::XMLTokenEnum XML_SPIRALOUT_RIGHT
-include/xmloff/xmltoken.hxx:1712
+include/xmloff/xmltoken.hxx:1725
enum xmloff::token::XMLTokenEnum XML_SPLINES
-include/xmloff/xmltoken.hxx:1713
+include/xmloff/xmltoken.hxx:1726
enum xmloff::token::XMLTokenEnum XML_SPLIT
-include/xmloff/xmltoken.hxx:1714
+include/xmloff/xmltoken.hxx:1727
enum xmloff::token::XMLTokenEnum XML_SPLIT_COLUMN
-include/xmloff/xmltoken.hxx:1715
+include/xmloff/xmltoken.hxx:1728
enum xmloff::token::XMLTokenEnum XML_SPLIT_POSITION
-include/xmloff/xmltoken.hxx:1716
+include/xmloff/xmltoken.hxx:1729
enum xmloff::token::XMLTokenEnum XML_SPLIT_ROW
-include/xmloff/xmltoken.hxx:1718
+include/xmloff/xmltoken.hxx:1731
enum xmloff::token::XMLTokenEnum XML_SPREADMETHOD
-include/xmloff/xmltoken.hxx:1719
- enum xmloff::token::XMLTokenEnum XML_SQL_STATEMENT
-include/xmloff/xmltoken.hxx:1720
+include/xmloff/xmltoken.hxx:1733
enum xmloff::token::XMLTokenEnum XML_STACKED
-include/xmloff/xmltoken.hxx:1721
+include/xmloff/xmltoken.hxx:1734
enum xmloff::token::XMLTokenEnum XML_STAGGER_EVEN
-include/xmloff/xmltoken.hxx:1722
+include/xmloff/xmltoken.hxx:1735
enum xmloff::token::XMLTokenEnum XML_STAGGER_ODD
-include/xmloff/xmltoken.hxx:1723
+include/xmloff/xmltoken.hxx:1736
enum xmloff::token::XMLTokenEnum XML_STANDARD
-include/xmloff/xmltoken.hxx:1724
+include/xmloff/xmltoken.hxx:1737
enum xmloff::token::XMLTokenEnum XML_STANDARD_DEVIATION
-include/xmloff/xmltoken.hxx:1725
+include/xmloff/xmltoken.hxx:1738
enum xmloff::token::XMLTokenEnum XML_STARBASIC
-include/xmloff/xmltoken.hxx:1726
- enum xmloff::token::XMLTokenEnum XML_START
-include/xmloff/xmltoken.hxx:1727
+include/xmloff/xmltoken.hxx:1740
enum xmloff::token::XMLTokenEnum XML_START_ANGLE
-include/xmloff/xmltoken.hxx:1728
+include/xmloff/xmltoken.hxx:1741
enum xmloff::token::XMLTokenEnum XML_START_COLOR
-include/xmloff/xmltoken.hxx:1729
- enum xmloff::token::XMLTokenEnum XML_START_COLUMN
-include/xmloff/xmltoken.hxx:1730
+include/xmloff/xmltoken.hxx:1743
enum xmloff::token::XMLTokenEnum XML_START_GLUE_POINT
-include/xmloff/xmltoken.hxx:1731
+include/xmloff/xmltoken.hxx:1744
enum xmloff::token::XMLTokenEnum XML_START_GUIDE
-include/xmloff/xmltoken.hxx:1732
+include/xmloff/xmltoken.hxx:1745
enum xmloff::token::XMLTokenEnum XML_START_INTENSITY
-include/xmloff/xmltoken.hxx:1733
+include/xmloff/xmltoken.hxx:1746
enum xmloff::token::XMLTokenEnum XML_START_LINE_SPACING_HORIZONTAL
-include/xmloff/xmltoken.hxx:1734
+include/xmloff/xmltoken.hxx:1747
enum xmloff::token::XMLTokenEnum XML_START_LINE_SPACING_VERTICAL
-include/xmloff/xmltoken.hxx:1735
+include/xmloff/xmltoken.hxx:1748
enum xmloff::token::XMLTokenEnum XML_START_NUMBERING_AT
-include/xmloff/xmltoken.hxx:1736
+include/xmloff/xmltoken.hxx:1749
enum xmloff::token::XMLTokenEnum XML_START_PAGE
-include/xmloff/xmltoken.hxx:1737
+include/xmloff/xmltoken.hxx:1750
enum xmloff::token::XMLTokenEnum XML_START_POSITION
-include/xmloff/xmltoken.hxx:1738
- enum xmloff::token::XMLTokenEnum XML_START_ROW
-include/xmloff/xmltoken.hxx:1739
+include/xmloff/xmltoken.hxx:1752
enum xmloff::token::XMLTokenEnum XML_START_SCALE
-include/xmloff/xmltoken.hxx:1740
+include/xmloff/xmltoken.hxx:1753
enum xmloff::token::XMLTokenEnum XML_START_SHAPE
-include/xmloff/xmltoken.hxx:1741
- enum xmloff::token::XMLTokenEnum XML_START_TABLE
-include/xmloff/xmltoken.hxx:1742
+include/xmloff/xmltoken.hxx:1755
enum xmloff::token::XMLTokenEnum XML_START_VALUE
-include/xmloff/xmltoken.hxx:1743
+include/xmloff/xmltoken.hxx:1756
enum xmloff::token::XMLTokenEnum XML_START_WITH_NAVIGATOR
-include/xmloff/xmltoken.hxx:1744
+include/xmloff/xmltoken.hxx:1757
enum xmloff::token::XMLTokenEnum XML_STATISTICS
-include/xmloff/xmltoken.hxx:1745
- enum xmloff::token::XMLTokenEnum XML_STATUS
-include/xmloff/xmltoken.hxx:1746
+include/xmloff/xmltoken.hxx:1759
enum xmloff::token::XMLTokenEnum XML_STAY_ON_TOP
-include/xmloff/xmltoken.hxx:1747
+include/xmloff/xmltoken.hxx:1760
enum xmloff::token::XMLTokenEnum XML_STDEV
-include/xmloff/xmltoken.hxx:1748
+include/xmloff/xmltoken.hxx:1761
enum xmloff::token::XMLTokenEnum XML_STDEVP
-include/xmloff/xmltoken.hxx:1749
- enum xmloff::token::XMLTokenEnum XML_STEPS
-include/xmloff/xmltoken.hxx:1750
+include/xmloff/xmltoken.hxx:1763
+ enum xmloff::token::XMLTokenEnum XML_STEP_SIZE
+include/xmloff/xmltoken.hxx:1764
enum xmloff::token::XMLTokenEnum XML_STOCK
-include/xmloff/xmltoken.hxx:1751
+include/xmloff/xmltoken.hxx:1765
enum xmloff::token::XMLTokenEnum XML_STOCK_UPDOWN_BARS
-include/xmloff/xmltoken.hxx:1752
+include/xmloff/xmltoken.hxx:1766
enum xmloff::token::XMLTokenEnum XML_STOCK_WITH_VOLUME
-include/xmloff/xmltoken.hxx:1753
+include/xmloff/xmltoken.hxx:1767
enum xmloff::token::XMLTokenEnum XML_STOP
-include/xmloff/xmltoken.hxx:1754
+include/xmloff/xmltoken.hxx:1768
enum xmloff::token::XMLTokenEnum XML_STOP_COLOR
-include/xmloff/xmltoken.hxx:1755
+include/xmloff/xmltoken.hxx:1769
enum xmloff::token::XMLTokenEnum XML_STOP_OPACITY
-include/xmloff/xmltoken.hxx:1756
+include/xmloff/xmltoken.hxx:1770
enum xmloff::token::XMLTokenEnum XML_STRETCH
-include/xmloff/xmltoken.hxx:1757
+include/xmloff/xmltoken.hxx:1771
enum xmloff::token::XMLTokenEnum XML_STRETCH_FROM_BOTTOM
-include/xmloff/xmltoken.hxx:1758
+include/xmloff/xmltoken.hxx:1772
enum xmloff::token::XMLTokenEnum XML_STRETCH_FROM_LEFT
-include/xmloff/xmltoken.hxx:1759
+include/xmloff/xmltoken.hxx:1773
enum xmloff::token::XMLTokenEnum XML_STRETCH_FROM_RIGHT
-include/xmloff/xmltoken.hxx:1760
+include/xmloff/xmltoken.hxx:1774
enum xmloff::token::XMLTokenEnum XML_STRETCH_FROM_TOP
-include/xmloff/xmltoken.hxx:1761
+include/xmloff/xmltoken.hxx:1775
enum xmloff::token::XMLTokenEnum XML_STRETCHY
-include/xmloff/xmltoken.hxx:1762
+include/xmloff/xmltoken.hxx:1776
enum xmloff::token::XMLTokenEnum XML_STRICT
-include/xmloff/xmltoken.hxx:1764
- enum xmloff::token::XMLTokenEnum XML_STRING_VALUE
-include/xmloff/xmltoken.hxx:1765
+include/xmloff/xmltoken.hxx:1779
enum xmloff::token::XMLTokenEnum XML_STRING_VALUE_IF_FALSE
-include/xmloff/xmltoken.hxx:1766
+include/xmloff/xmltoken.hxx:1780
enum xmloff::token::XMLTokenEnum XML_STRING_VALUE_IF_TRUE
-include/xmloff/xmltoken.hxx:1767
+include/xmloff/xmltoken.hxx:1781
enum xmloff::token::XMLTokenEnum XML_STRIPES
-include/xmloff/xmltoken.hxx:1770
+include/xmloff/xmltoken.hxx:1784
enum xmloff::token::XMLTokenEnum XML_STROKE_DASH
-include/xmloff/xmltoken.hxx:1771
+include/xmloff/xmltoken.hxx:1785
enum xmloff::token::XMLTokenEnum XML_STROKE_LINECAP
-include/xmloff/xmltoken.hxx:1772
+include/xmloff/xmltoken.hxx:1786
enum xmloff::token::XMLTokenEnum XML_STROKE_LINEJOIN
-include/xmloff/xmltoken.hxx:1773
+include/xmloff/xmltoken.hxx:1787
enum xmloff::token::XMLTokenEnum XML_STROKE_OPACITY
-include/xmloff/xmltoken.hxx:1774
+include/xmloff/xmltoken.hxx:1788
enum xmloff::token::XMLTokenEnum XML_STROKE_WIDTH
-include/xmloff/xmltoken.hxx:1776
- enum xmloff::token::XMLTokenEnum XML_STYLE
-include/xmloff/xmltoken.hxx:1777
- enum xmloff::token::XMLTokenEnum XML_STYLE_NAME
-include/xmloff/xmltoken.hxx:1778
+include/xmloff/xmltoken.hxx:1792
enum xmloff::token::XMLTokenEnum XML_STYLES
-include/xmloff/xmltoken.hxx:1779
+include/xmloff/xmltoken.hxx:1793
enum xmloff::token::XMLTokenEnum XML_STYLESHEET
-include/xmloff/xmltoken.hxx:1780
- enum xmloff::token::XMLTokenEnum XML_SUB_TABLE
-include/xmloff/xmltoken.hxx:1781
+include/xmloff/xmltoken.hxx:1795
enum xmloff::token::XMLTokenEnum XML_SUBJECT
-include/xmloff/xmltoken.hxx:1782
+include/xmloff/xmltoken.hxx:1796
enum xmloff::token::XMLTokenEnum XML_SUBSET
-include/xmloff/xmltoken.hxx:1783
+include/xmloff/xmltoken.hxx:1797
enum xmloff::token::XMLTokenEnum XML_SUBTITLE
-include/xmloff/xmltoken.hxx:1784
- enum xmloff::token::XMLTokenEnum XML_SUBTOTAL_FIELD
-include/xmloff/xmltoken.hxx:1785
- enum xmloff::token::XMLTokenEnum XML_SUBTOTAL_RULE
-include/xmloff/xmltoken.hxx:1786
- enum xmloff::token::XMLTokenEnum XML_SUBTOTAL_RULES
-include/xmloff/xmltoken.hxx:1787
+include/xmloff/xmltoken.hxx:1801
enum xmloff::token::XMLTokenEnum XML_SUB_VIEW_SIZE
-include/xmloff/xmltoken.hxx:1788
+include/xmloff/xmltoken.hxx:1802
enum xmloff::token::XMLTokenEnum XML_SUFFIX
-include/xmloff/xmltoken.hxx:1789
+include/xmloff/xmltoken.hxx:1803
enum xmloff::token::XMLTokenEnum XML_SUM
-include/xmloff/xmltoken.hxx:1790
+include/xmloff/xmltoken.hxx:1804
enum xmloff::token::XMLTokenEnum XML_SWISS
-include/xmloff/xmltoken.hxx:1791
+include/xmloff/xmltoken.hxx:1805
enum xmloff::token::XMLTokenEnum XML_SYMBOL
-include/xmloff/xmltoken.hxx:1792
+include/xmloff/xmltoken.hxx:1806
enum xmloff::token::XMLTokenEnum XML_SYMBOL_HEIGHT
-include/xmloff/xmltoken.hxx:1793
+include/xmloff/xmltoken.hxx:1807
enum xmloff::token::XMLTokenEnum XML_SYMBOL_IMAGE_NAME
-include/xmloff/xmltoken.hxx:1794
+include/xmloff/xmltoken.hxx:1808
enum xmloff::token::XMLTokenEnum XML_SYMBOL_WIDTH
-include/xmloff/xmltoken.hxx:1795
+include/xmloff/xmltoken.hxx:1809
enum xmloff::token::XMLTokenEnum XML_SYSTEM
-include/xmloff/xmltoken.hxx:1796
+include/xmloff/xmltoken.hxx:1810
enum xmloff::token::XMLTokenEnum XML_TAB_COLOR
-include/xmloff/xmltoken.hxx:1797
+include/xmloff/xmltoken.hxx:1811
enum xmloff::token::XMLTokenEnum XML_TAB_STOP
-include/xmloff/xmltoken.hxx:1798
+include/xmloff/xmltoken.hxx:1812
enum xmloff::token::XMLTokenEnum XML_TAB_STOP_DISTANCE
-include/xmloff/xmltoken.hxx:1799
+include/xmloff/xmltoken.hxx:1813
enum xmloff::token::XMLTokenEnum XML_TAB_STOPS
-include/xmloff/xmltoken.hxx:1801
+include/xmloff/xmltoken.hxx:1815
enum xmloff::token::XMLTokenEnum XML_TABLE_BACKGROUND
-include/xmloff/xmltoken.hxx:1803
+include/xmloff/xmltoken.hxx:1817
enum xmloff::token::XMLTokenEnum XML_TABLE_CENTERING
-include/xmloff/xmltoken.hxx:1804
- enum xmloff::token::XMLTokenEnum XML_TABLE_COLUMN
-include/xmloff/xmltoken.hxx:1805
- enum xmloff::token::XMLTokenEnum XML_TABLE_COLUMN_GROUP
-include/xmloff/xmltoken.hxx:1806
- enum xmloff::token::XMLTokenEnum XML_TABLE_COLUMNS
-include/xmloff/xmltoken.hxx:1807
+include/xmloff/xmltoken.hxx:1821
enum xmloff::token::XMLTokenEnum XML_TABLE_COUNT
-include/xmloff/xmltoken.hxx:1808
+include/xmloff/xmltoken.hxx:1822
enum xmloff::token::XMLTokenEnum XML_TABLE_HEADER
-include/xmloff/xmltoken.hxx:1809
- enum xmloff::token::XMLTokenEnum XML_TABLE_HEADER_COLUMNS
-include/xmloff/xmltoken.hxx:1810
- enum xmloff::token::XMLTokenEnum XML_TABLE_HEADER_ROWS
-include/xmloff/xmltoken.hxx:1811
+include/xmloff/xmltoken.hxx:1825
enum xmloff::token::XMLTokenEnum XML_TABLE_INDEX
-include/xmloff/xmltoken.hxx:1812
+include/xmloff/xmltoken.hxx:1826
enum xmloff::token::XMLTokenEnum XML_TABLE_INDEX_ENTRY_TEMPLATE
-include/xmloff/xmltoken.hxx:1813
+include/xmloff/xmltoken.hxx:1827
enum xmloff::token::XMLTokenEnum XML_TABLE_INDEX_SOURCE
-include/xmloff/xmltoken.hxx:1814
- enum xmloff::token::XMLTokenEnum XML_TABLE_NAME
-include/xmloff/xmltoken.hxx:1815
+include/xmloff/xmltoken.hxx:1829
enum xmloff::token::XMLTokenEnum XML_TABLE_OF_CONTENT
-include/xmloff/xmltoken.hxx:1816
+include/xmloff/xmltoken.hxx:1830
enum xmloff::token::XMLTokenEnum XML_TABLE_OF_CONTENT_ENTRY_TEMPLATE
-include/xmloff/xmltoken.hxx:1817
+include/xmloff/xmltoken.hxx:1831
enum xmloff::token::XMLTokenEnum XML_TABLE_OF_CONTENT_SOURCE
-include/xmloff/xmltoken.hxx:1818
+include/xmloff/xmltoken.hxx:1832
enum xmloff::token::XMLTokenEnum XML_TABLE_PAGE
-include/xmloff/xmltoken.hxx:1819
- enum xmloff::token::XMLTokenEnum XML_TABLE_PROTECTION
-include/xmloff/xmltoken.hxx:1821
- enum xmloff::token::XMLTokenEnum XML_TABLE_ROW_GROUP
-include/xmloff/xmltoken.hxx:1822
- enum xmloff::token::XMLTokenEnum XML_TABLE_ROWS
-include/xmloff/xmltoken.hxx:1823
- enum xmloff::token::XMLTokenEnum XML_TABLE_SOURCE
-include/xmloff/xmltoken.hxx:1824
+include/xmloff/xmltoken.hxx:1838
enum xmloff::token::XMLTokenEnum XML_TABLE_VIEW
-include/xmloff/xmltoken.hxx:1825
+include/xmloff/xmltoken.hxx:1839
enum xmloff::token::XMLTokenEnum XML_TABLES
-include/xmloff/xmltoken.hxx:1826
+include/xmloff/xmltoken.hxx:1840
enum xmloff::token::XMLTokenEnum XML_TAN
-include/xmloff/xmltoken.hxx:1827
+include/xmloff/xmltoken.hxx:1841
enum xmloff::token::XMLTokenEnum XML_TANH
-include/xmloff/xmltoken.hxx:1828
- enum xmloff::token::XMLTokenEnum XML_TARGET_CELL_ADDRESS
-include/xmloff/xmltoken.hxx:1829
- enum xmloff::token::XMLTokenEnum XML_TARGET_FRAME_NAME
-include/xmloff/xmltoken.hxx:1830
- enum xmloff::token::XMLTokenEnum XML_TARGET_RANGE_ADDRESS
-include/xmloff/xmltoken.hxx:1831
+include/xmloff/xmltoken.hxx:1843
+ enum xmloff::token::XMLTokenEnum XML_TARGET_FRAME
+include/xmloff/xmltoken.hxx:1846
enum xmloff::token::XMLTokenEnum XML_TB_RL
-include/xmloff/xmltoken.hxx:1832
+include/xmloff/xmltoken.hxx:1847
enum xmloff::token::XMLTokenEnum XML_TEAL
-include/xmloff/xmltoken.hxx:1833
+include/xmloff/xmltoken.hxx:1848
enum xmloff::token::XMLTokenEnum XML_TECHREPORT
-include/xmloff/xmltoken.hxx:1834
+include/xmloff/xmltoken.hxx:1849
enum xmloff::token::XMLTokenEnum XML_TEMPLATE
-include/xmloff/xmltoken.hxx:1835
+include/xmloff/xmltoken.hxx:1850
enum xmloff::token::XMLTokenEnum XML_TEMPLATE_NAME
-include/xmloff/xmltoken.hxx:1836
+include/xmloff/xmltoken.hxx:1851
enum xmloff::token::XMLTokenEnum XML_TENDSTO
-include/xmloff/xmltoken.hxx:1837
+include/xmloff/xmltoken.hxx:1852
enum xmloff::token::XMLTokenEnum XML_TEX_FILTER
-include/xmloff/xmltoken.hxx:1838
+include/xmloff/xmltoken.hxx:1853
enum xmloff::token::XMLTokenEnum XML_TEX_GENERATION_MODE_X
-include/xmloff/xmltoken.hxx:1839
+include/xmloff/xmltoken.hxx:1854
enum xmloff::token::XMLTokenEnum XML_TEX_GENERATION_MODE_Y
-include/xmloff/xmltoken.hxx:1840
+include/xmloff/xmltoken.hxx:1855
enum xmloff::token::XMLTokenEnum XML_TEX_KIND
-include/xmloff/xmltoken.hxx:1841
+include/xmloff/xmltoken.hxx:1856
enum xmloff::token::XMLTokenEnum XML_TEX_MODE
-include/xmloff/xmltoken.hxx:1843
+include/xmloff/xmltoken.hxx:1858
enum xmloff::token::XMLTokenEnum XML_TEXT_ALIGN
-include/xmloff/xmltoken.hxx:1844
+include/xmloff/xmltoken.hxx:1859
enum xmloff::token::XMLTokenEnum XML_TEXT_ALIGN_LAST
-include/xmloff/xmltoken.hxx:1845
+include/xmloff/xmltoken.hxx:1860
enum xmloff::token::XMLTokenEnum XML_TEXT_ALIGN_SOURCE
-include/xmloff/xmltoken.hxx:1846
+include/xmloff/xmltoken.hxx:1861
enum xmloff::token::XMLTokenEnum XML_TEXT_AUTOSPACE
-include/xmloff/xmltoken.hxx:1847
+include/xmloff/xmltoken.hxx:1862
enum xmloff::token::XMLTokenEnum XML_TEXT_BACKGROUND_COLOR
-include/xmloff/xmltoken.hxx:1848
+include/xmloff/xmltoken.hxx:1863
enum xmloff::token::XMLTokenEnum XML_TEXT_BLINKING
-include/xmloff/xmltoken.hxx:1849
+include/xmloff/xmltoken.hxx:1864
enum xmloff::token::XMLTokenEnum XML_TEXT_BOX
-include/xmloff/xmltoken.hxx:1850
+include/xmloff/xmltoken.hxx:1865
enum xmloff::token::XMLTokenEnum XML_TEXT_COMBINE
-include/xmloff/xmltoken.hxx:1851
+include/xmloff/xmltoken.hxx:1866
enum xmloff::token::XMLTokenEnum XML_TEXT_COMBINE_END_CHAR
-include/xmloff/xmltoken.hxx:1852
+include/xmloff/xmltoken.hxx:1867
enum xmloff::token::XMLTokenEnum XML_TEXT_COMBINE_START_CHAR
-include/xmloff/xmltoken.hxx:1853
+include/xmloff/xmltoken.hxx:1868
enum xmloff::token::XMLTokenEnum XML_TEXT_CONTENT
-include/xmloff/xmltoken.hxx:1854
+include/xmloff/xmltoken.hxx:1869
enum xmloff::token::XMLTokenEnum XML_TEXT_CROSSING_OUT
-include/xmloff/xmltoken.hxx:1855
+include/xmloff/xmltoken.hxx:1870
enum xmloff::token::XMLTokenEnum XML_TEXT_EMPHASIZE
-include/xmloff/xmltoken.hxx:1857
+include/xmloff/xmltoken.hxx:1872
enum xmloff::token::XMLTokenEnum XML_TEXT_INDENT
-include/xmloff/xmltoken.hxx:1858
+include/xmloff/xmltoken.hxx:1873
enum xmloff::token::XMLTokenEnum XML_TEXT_INPUT
-include/xmloff/xmltoken.hxx:1859
+include/xmloff/xmltoken.hxx:1874
enum xmloff::token::XMLTokenEnum XML_TEXT_JUSTIFY
-include/xmloff/xmltoken.hxx:1860
+include/xmloff/xmltoken.hxx:1875
enum xmloff::token::XMLTokenEnum XML_TEXT_OUTLINE
-include/xmloff/xmltoken.hxx:1861
+include/xmloff/xmltoken.hxx:1876
enum xmloff::token::XMLTokenEnum XML_TEXT_POSITION
-include/xmloff/xmltoken.hxx:1863
+include/xmloff/xmltoken.hxx:1878
enum xmloff::token::XMLTokenEnum XML_TEXT_ROTATION_SCALE
-include/xmloff/xmltoken.hxx:1864
+include/xmloff/xmltoken.hxx:1879
enum xmloff::token::XMLTokenEnum XML_TEXT_SCALE
-include/xmloff/xmltoken.hxx:1865
+include/xmloff/xmltoken.hxx:1880
enum xmloff::token::XMLTokenEnum XML_TEXT_SHADOW
-include/xmloff/xmltoken.hxx:1866
+include/xmloff/xmltoken.hxx:1881
enum xmloff::token::XMLTokenEnum XML_TEXT_STYLE
-include/xmloff/xmltoken.hxx:1867
+include/xmloff/xmltoken.hxx:1882
enum xmloff::token::XMLTokenEnum XML_TEXT_TRANSFORM
-include/xmloff/xmltoken.hxx:1869
+include/xmloff/xmltoken.hxx:1884
enum xmloff::token::XMLTokenEnum XML_TEXT_UNDERLINE_COLOR
-include/xmloff/xmltoken.hxx:1870
+include/xmloff/xmltoken.hxx:1885
enum xmloff::token::XMLTokenEnum XML_TEXTAREA_HORIZONTAL_ALIGN
-include/xmloff/xmltoken.hxx:1871
+include/xmloff/xmltoken.hxx:1886
enum xmloff::token::XMLTokenEnum XML_TEXTAREA_VERTICAL_ALIGN
-include/xmloff/xmltoken.hxx:1872
+include/xmloff/xmltoken.hxx:1887
enum xmloff::token::XMLTokenEnum XML_TEXTUAL
-include/xmloff/xmltoken.hxx:1873
+include/xmloff/xmltoken.hxx:1888
enum xmloff::token::XMLTokenEnum XML_THICK
-include/xmloff/xmltoken.hxx:1874
+include/xmloff/xmltoken.hxx:1889
enum xmloff::token::XMLTokenEnum XML_THIN
-include/xmloff/xmltoken.hxx:1875
+include/xmloff/xmltoken.hxx:1890
enum xmloff::token::XMLTokenEnum XML_THREE_DIMENSIONAL
-include/xmloff/xmltoken.hxx:1876
+include/xmloff/xmltoken.hxx:1891
enum xmloff::token::XMLTokenEnum XML_THUMBNAIL
-include/xmloff/xmltoken.hxx:1877
+include/xmloff/xmltoken.hxx:1892
enum xmloff::token::XMLTokenEnum XML_TICK_MARKS_MAJOR_INNER
-include/xmloff/xmltoken.hxx:1878
+include/xmloff/xmltoken.hxx:1893
enum xmloff::token::XMLTokenEnum XML_TICK_MARKS_MAJOR_OUTER
-include/xmloff/xmltoken.hxx:1879
+include/xmloff/xmltoken.hxx:1894
enum xmloff::token::XMLTokenEnum XML_TICK_MARKS_MINOR_INNER
-include/xmloff/xmltoken.hxx:1880
+include/xmloff/xmltoken.hxx:1895
enum xmloff::token::XMLTokenEnum XML_TICK_MARKS_MINOR_OUTER
-include/xmloff/xmltoken.hxx:1881
+include/xmloff/xmltoken.hxx:1896
enum xmloff::token::XMLTokenEnum XML_TILE_REPEAT_OFFSET
-include/xmloff/xmltoken.hxx:1883
+include/xmloff/xmltoken.hxx:1898
enum xmloff::token::XMLTokenEnum XML_TIME_ADJUST
-include/xmloff/xmltoken.hxx:1884
+include/xmloff/xmltoken.hxx:1899
enum xmloff::token::XMLTokenEnum XML_TIME_STYLE
-include/xmloff/xmltoken.hxx:1885
- enum xmloff::token::XMLTokenEnum XML_TIME_VALUE
-include/xmloff/xmltoken.hxx:1886
+include/xmloff/xmltoken.hxx:1901
enum xmloff::token::XMLTokenEnum XML_TIMES
-include/xmloff/xmltoken.hxx:1887
- enum xmloff::token::XMLTokenEnum XML_TITLE
-include/xmloff/xmltoken.hxx:1888
+include/xmloff/xmltoken.hxx:1903
enum xmloff::token::XMLTokenEnum XML_TO_ANOTHER_TABLE
-include/xmloff/xmltoken.hxx:1889
+include/xmloff/xmltoken.hxx:1904
enum xmloff::token::XMLTokenEnum XML_TO_BOTTOM
-include/xmloff/xmltoken.hxx:1890
+include/xmloff/xmltoken.hxx:1905
enum xmloff::token::XMLTokenEnum XML_TO_CENTER
-include/xmloff/xmltoken.hxx:1891
+include/xmloff/xmltoken.hxx:1906
enum xmloff::token::XMLTokenEnum XML_TO_LEFT
-include/xmloff/xmltoken.hxx:1892
+include/xmloff/xmltoken.hxx:1907
enum xmloff::token::XMLTokenEnum XML_TO_LOWER_LEFT
-include/xmloff/xmltoken.hxx:1893
+include/xmloff/xmltoken.hxx:1908
enum xmloff::token::XMLTokenEnum XML_TO_LOWER_RIGHT
-include/xmloff/xmltoken.hxx:1894
+include/xmloff/xmltoken.hxx:1909
enum xmloff::token::XMLTokenEnum XML_TO_RIGHT
-include/xmloff/xmltoken.hxx:1895
+include/xmloff/xmltoken.hxx:1910
enum xmloff::token::XMLTokenEnum XML_TO_TOP
-include/xmloff/xmltoken.hxx:1896
+include/xmloff/xmltoken.hxx:1911
enum xmloff::token::XMLTokenEnum XML_TO_UPPER_LEFT
-include/xmloff/xmltoken.hxx:1897
+include/xmloff/xmltoken.hxx:1912
enum xmloff::token::XMLTokenEnum XML_TO_UPPER_RIGHT
-include/xmloff/xmltoken.hxx:1898
+include/xmloff/xmltoken.hxx:1913
enum xmloff::token::XMLTokenEnum XML_TOC_MARK
-include/xmloff/xmltoken.hxx:1899
+include/xmloff/xmltoken.hxx:1914
enum xmloff::token::XMLTokenEnum XML_TOC_MARK_END
-include/xmloff/xmltoken.hxx:1900
+include/xmloff/xmltoken.hxx:1915
enum xmloff::token::XMLTokenEnum XML_TOC_MARK_START
-include/xmloff/xmltoken.hxx:1901
+include/xmloff/xmltoken.hxx:1916
enum xmloff::token::XMLTokenEnum XML_TOP
-include/xmloff/xmltoken.hxx:1902
+include/xmloff/xmltoken.hxx:1917
enum xmloff::token::XMLTokenEnum XML_TOP_LEFT
-include/xmloff/xmltoken.hxx:1903
+include/xmloff/xmltoken.hxx:1918
enum xmloff::token::XMLTokenEnum XML_TOP_PERCENT
-include/xmloff/xmltoken.hxx:1904
+include/xmloff/xmltoken.hxx:1919
enum xmloff::token::XMLTokenEnum XML_TOP_RIGHT
-include/xmloff/xmltoken.hxx:1905
+include/xmloff/xmltoken.hxx:1920
enum xmloff::token::XMLTokenEnum XML_TOP_VALUES
-include/xmloff/xmltoken.hxx:1906
+include/xmloff/xmltoken.hxx:1921
enum xmloff::token::XMLTokenEnum XML_TOPARC
-include/xmloff/xmltoken.hxx:1907
+include/xmloff/xmltoken.hxx:1922
enum xmloff::token::XMLTokenEnum XML_TOPCIRCLE
-include/xmloff/xmltoken.hxx:1908
+include/xmloff/xmltoken.hxx:1923
enum xmloff::token::XMLTokenEnum XML_TRACE_DEPENDENTS
-include/xmloff/xmltoken.hxx:1909
+include/xmloff/xmltoken.hxx:1924
enum xmloff::token::XMLTokenEnum XML_TRACE_ERRORS
-include/xmloff/xmltoken.hxx:1910
+include/xmloff/xmltoken.hxx:1925
enum xmloff::token::XMLTokenEnum XML_TRACE_PRECEDENTS
-include/xmloff/xmltoken.hxx:1911
+include/xmloff/xmltoken.hxx:1926
enum xmloff::token::XMLTokenEnum XML_TRACK_CHANGES
-include/xmloff/xmltoken.hxx:1912
- enum xmloff::token::XMLTokenEnum XML_TRACKED_CHANGES
-include/xmloff/xmltoken.hxx:1913
+include/xmloff/xmltoken.hxx:1928
enum xmloff::token::XMLTokenEnum XML_TRACKED_CHANGES_VIEW_SETTINGS
-include/xmloff/xmltoken.hxx:1914
+include/xmloff/xmltoken.hxx:1929
enum xmloff::token::XMLTokenEnum XML_TRANSFORM
-include/xmloff/xmltoken.hxx:1915
+include/xmloff/xmltoken.hxx:1930
enum xmloff::token::XMLTokenEnum XML_TRANSITION_ON_CLICK
-include/xmloff/xmltoken.hxx:1916
+include/xmloff/xmltoken.hxx:1931
enum xmloff::token::XMLTokenEnum XML_TRANSPARENCY
-include/xmloff/xmltoken.hxx:1917
+include/xmloff/xmltoken.hxx:1932
enum xmloff::token::XMLTokenEnum XML_TRANSPARENCY_NAME
-include/xmloff/xmltoken.hxx:1918
+include/xmloff/xmltoken.hxx:1933
enum xmloff::token::XMLTokenEnum XML_TRANSPARENT
-include/xmloff/xmltoken.hxx:1919
+include/xmloff/xmltoken.hxx:1934
enum xmloff::token::XMLTokenEnum XML_TRANSPOSE
-include/xmloff/xmltoken.hxx:1920
+include/xmloff/xmltoken.hxx:1935
enum xmloff::token::XMLTokenEnum XML_TRUE
-include/xmloff/xmltoken.hxx:1921
+include/xmloff/xmltoken.hxx:1936
enum xmloff::token::XMLTokenEnum XML_TRUNCATE_ON_OVERFLOW
-include/xmloff/xmltoken.hxx:1922
+include/xmloff/xmltoken.hxx:1937
enum xmloff::token::XMLTokenEnum XML_TRY_STAGGERING_FIRST
-include/xmloff/xmltoken.hxx:1923
+include/xmloff/xmltoken.hxx:1938
enum xmloff::token::XMLTokenEnum XML_TSPAN
-include/xmloff/xmltoken.hxx:1924
+include/xmloff/xmltoken.hxx:1939
enum xmloff::token::XMLTokenEnum XML_TTB
-include/xmloff/xmltoken.hxx:1930
+include/xmloff/xmltoken.hxx:1944
+ enum xmloff::token::XMLTokenEnum XML_SHOW_SIGN_DATE
+include/xmloff/xmltoken.hxx:1945
+ enum xmloff::token::XMLTokenEnum XML_SIGNATURELINE
+include/xmloff/xmltoken.hxx:1946
+ enum xmloff::token::XMLTokenEnum XML_SIGNING_INSTRUCTIONS
+include/xmloff/xmltoken.hxx:1948
enum xmloff::token::XMLTokenEnum XML_SMALL_WAVE
-include/xmloff/xmltoken.hxx:1932
+include/xmloff/xmltoken.hxx:1949
+ enum xmloff::token::XMLTokenEnum XML_SUGGESTED_SIGNER_EMAIL
+include/xmloff/xmltoken.hxx:1950
+ enum xmloff::token::XMLTokenEnum XML_SUGGESTED_SIGNER_NAME
+include/xmloff/xmltoken.hxx:1951
+ enum xmloff::token::XMLTokenEnum XML_SUGGESTED_SIGNER_TITLE
+include/xmloff/xmltoken.hxx:1953
enum xmloff::token::XMLTokenEnum XML_UNFORMATTED_TEXT
-include/xmloff/xmltoken.hxx:1933
+include/xmloff/xmltoken.hxx:1954
enum xmloff::token::XMLTokenEnum XML_UNION
-include/xmloff/xmltoken.hxx:1934
+include/xmloff/xmltoken.hxx:1955
enum xmloff::token::XMLTokenEnum XML_UNIT
-include/xmloff/xmltoken.hxx:1935
+include/xmloff/xmltoken.hxx:1956
enum xmloff::token::XMLTokenEnum XML_UNORDERED_LIST
-include/xmloff/xmltoken.hxx:1936
+include/xmloff/xmltoken.hxx:1957
enum xmloff::token::XMLTokenEnum XML_UNPUBLISHED
-include/xmloff/xmltoken.hxx:1937
+include/xmloff/xmltoken.hxx:1958
enum xmloff::token::XMLTokenEnum XML_UP
-include/xmloff/xmltoken.hxx:1938
+include/xmloff/xmltoken.hxx:1959
enum xmloff::token::XMLTokenEnum XML_UPLIMIT
-include/xmloff/xmltoken.hxx:1939
+include/xmloff/xmltoken.hxx:1960
enum xmloff::token::XMLTokenEnum XML_UPRIGHT
-include/xmloff/xmltoken.hxx:1940
+include/xmloff/xmltoken.hxx:1961
enum xmloff::token::XMLTokenEnum XML_URL
-include/xmloff/xmltoken.hxx:1941
+include/xmloff/xmltoken.hxx:1962
enum xmloff::token::XMLTokenEnum XML_USE
-include/xmloff/xmltoken.hxx:1942
+include/xmloff/xmltoken.hxx:1963
enum xmloff::token::XMLTokenEnum XML_USE_CAPTION
-include/xmloff/xmltoken.hxx:1943
+include/xmloff/xmltoken.hxx:1964
enum xmloff::token::XMLTokenEnum XML_USE_CELL_PROTECTION
-include/xmloff/xmltoken.hxx:1944
+include/xmloff/xmltoken.hxx:1965
enum xmloff::token::XMLTokenEnum XML_USE_CHART_OBJECTS
-include/xmloff/xmltoken.hxx:1945
+include/xmloff/xmltoken.hxx:1966
enum xmloff::token::XMLTokenEnum XML_USE_CONDITION
-include/xmloff/xmltoken.hxx:1946
+include/xmloff/xmltoken.hxx:1967
enum xmloff::token::XMLTokenEnum XML_USE_DRAW_OBJECTS
-include/xmloff/xmltoken.hxx:1947
+include/xmloff/xmltoken.hxx:1968
enum xmloff::token::XMLTokenEnum XML_USE_FLOATING_FRAMES
-include/xmloff/xmltoken.hxx:1948
+include/xmloff/xmltoken.hxx:1969
enum xmloff::token::XMLTokenEnum XML_USE_GRAPHICS
-include/xmloff/xmltoken.hxx:1949
+include/xmloff/xmltoken.hxx:1970
enum xmloff::token::XMLTokenEnum XML_USE_IMAGE_OBJECTS
-include/xmloff/xmltoken.hxx:1950
+include/xmloff/xmltoken.hxx:1971
enum xmloff::token::XMLTokenEnum XML_USE_INDEX_MARKS
-include/xmloff/xmltoken.hxx:1951
+include/xmloff/xmltoken.hxx:1972
enum xmloff::token::XMLTokenEnum XML_USE_INDEX_SOURCE_STYLES
-include/xmloff/xmltoken.hxx:1952
+include/xmloff/xmltoken.hxx:1973
enum xmloff::token::XMLTokenEnum XML_USE_KEYS_AS_ENTRIES
-include/xmloff/xmltoken.hxx:1953
- enum xmloff::token::XMLTokenEnum XML_USE_LABEL
-include/xmloff/xmltoken.hxx:1954
+include/xmloff/xmltoken.hxx:1975
enum xmloff::token::XMLTokenEnum XML_USE_MATH_OBJECTS
-include/xmloff/xmltoken.hxx:1955
+include/xmloff/xmltoken.hxx:1976
enum xmloff::token::XMLTokenEnum XML_USE_OBJECTS
-include/xmloff/xmltoken.hxx:1956
+include/xmloff/xmltoken.hxx:1977
enum xmloff::token::XMLTokenEnum XML_USE_OPTIMAL_COLUMN_WIDTH
-include/xmloff/xmltoken.hxx:1957
+include/xmloff/xmltoken.hxx:1978
enum xmloff::token::XMLTokenEnum XML_USE_OPTIMAL_ROW_HEIGHT
-include/xmloff/xmltoken.hxx:1958
+include/xmloff/xmltoken.hxx:1979
enum xmloff::token::XMLTokenEnum XML_USE_OTHER_OBJECTS
-include/xmloff/xmltoken.hxx:1959
+include/xmloff/xmltoken.hxx:1980
enum xmloff::token::XMLTokenEnum XML_USE_SPREADSHEET_OBJECTS
-include/xmloff/xmltoken.hxx:1960
+include/xmloff/xmltoken.hxx:1981
enum xmloff::token::XMLTokenEnum XML_USE_STYLES
-include/xmloff/xmltoken.hxx:1961
+include/xmloff/xmltoken.hxx:1982
enum xmloff::token::XMLTokenEnum XML_USE_TABLES
-include/xmloff/xmltoken.hxx:1962
+include/xmloff/xmltoken.hxx:1983
enum xmloff::token::XMLTokenEnum XML_USE_WINDOW_FONT_COLOR
-include/xmloff/xmltoken.hxx:1963
- enum xmloff::token::XMLTokenEnum XML_USED_HIERARCHY
-include/xmloff/xmltoken.hxx:1964
+include/xmloff/xmltoken.hxx:1985
enum xmloff::token::XMLTokenEnum XML_USER_DEFINED
-include/xmloff/xmltoken.hxx:1965
+include/xmloff/xmltoken.hxx:1986
enum xmloff::token::XMLTokenEnum XML_USER_FIELD_DECL
-include/xmloff/xmltoken.hxx:1966
+include/xmloff/xmltoken.hxx:1987
enum xmloff::token::XMLTokenEnum XML_USER_FIELD_DECLS
-include/xmloff/xmltoken.hxx:1967
+include/xmloff/xmltoken.hxx:1988
enum xmloff::token::XMLTokenEnum XML_USER_FIELD_GET
-include/xmloff/xmltoken.hxx:1968
+include/xmloff/xmltoken.hxx:1989
enum xmloff::token::XMLTokenEnum XML_USER_FIELD_INPUT
-include/xmloff/xmltoken.hxx:1969
+include/xmloff/xmltoken.hxx:1990
enum xmloff::token::XMLTokenEnum XML_USER_INDEX
-include/xmloff/xmltoken.hxx:1970
+include/xmloff/xmltoken.hxx:1991
enum xmloff::token::XMLTokenEnum XML_USER_INDEX_ENTRY_TEMPLATE
-include/xmloff/xmltoken.hxx:1971
+include/xmloff/xmltoken.hxx:1992
enum xmloff::token::XMLTokenEnum XML_USER_INDEX_MARK
-include/xmloff/xmltoken.hxx:1972
+include/xmloff/xmltoken.hxx:1993
enum xmloff::token::XMLTokenEnum XML_USER_INDEX_MARK_END
-include/xmloff/xmltoken.hxx:1973
+include/xmloff/xmltoken.hxx:1994
enum xmloff::token::XMLTokenEnum XML_USER_INDEX_MARK_START
-include/xmloff/xmltoken.hxx:1974
+include/xmloff/xmltoken.hxx:1995
enum xmloff::token::XMLTokenEnum XML_USER_INDEX_SOURCE
-include/xmloff/xmltoken.hxx:1975
+include/xmloff/xmltoken.hxx:1996
enum xmloff::token::XMLTokenEnum XML_USER_TRANSFORMED
-include/xmloff/xmltoken.hxx:1976
+include/xmloff/xmltoken.hxx:1997
enum xmloff::token::XMLTokenEnum XML_USERNAME
-include/xmloff/xmltoken.hxx:1978
- enum xmloff::token::XMLTokenEnum XML_VALUE_TYPE
-include/xmloff/xmltoken.hxx:1979
+include/xmloff/xmltoken.hxx:2000
enum xmloff::token::XMLTokenEnum XML_VALUES_CELL_RANGE_ADDRESS
-include/xmloff/xmltoken.hxx:1980
+include/xmloff/xmltoken.hxx:2001
enum xmloff::token::XMLTokenEnum XML_VAR
-include/xmloff/xmltoken.hxx:1981
+include/xmloff/xmltoken.hxx:2002
enum xmloff::token::XMLTokenEnum XML_VARIABLE
-include/xmloff/xmltoken.hxx:1982
+include/xmloff/xmltoken.hxx:2003
enum xmloff::token::XMLTokenEnum XML_VARIABLE_DECL
-include/xmloff/xmltoken.hxx:1983
+include/xmloff/xmltoken.hxx:2004
enum xmloff::token::XMLTokenEnum XML_VARIABLE_DECLS
-include/xmloff/xmltoken.hxx:1984
+include/xmloff/xmltoken.hxx:2005
enum xmloff::token::XMLTokenEnum XML_VARIABLE_GET
-include/xmloff/xmltoken.hxx:1985
+include/xmloff/xmltoken.hxx:2006
enum xmloff::token::XMLTokenEnum XML_VARIABLE_INPUT
-include/xmloff/xmltoken.hxx:1986
+include/xmloff/xmltoken.hxx:2007
enum xmloff::token::XMLTokenEnum XML_VARIABLE_SET
-include/xmloff/xmltoken.hxx:1987
+include/xmloff/xmltoken.hxx:2008
enum xmloff::token::XMLTokenEnum XML_VARIANCE
-include/xmloff/xmltoken.hxx:1988
+include/xmloff/xmltoken.hxx:2009
enum xmloff::token::XMLTokenEnum XML_VARP
-include/xmloff/xmltoken.hxx:1989
+include/xmloff/xmltoken.hxx:2010
enum xmloff::token::XMLTokenEnum XML_VECTOR
-include/xmloff/xmltoken.hxx:1990
+include/xmloff/xmltoken.hxx:2011
enum xmloff::token::XMLTokenEnum XML_VERB
-include/xmloff/xmltoken.hxx:1992
+include/xmloff/xmltoken.hxx:2013
enum xmloff::token::XMLTokenEnum XML_VERSION_ENTRY
-include/xmloff/xmltoken.hxx:1993
+include/xmloff/xmltoken.hxx:2014
enum xmloff::token::XMLTokenEnum XML_VERSION_LIST
-include/xmloff/xmltoken.hxx:1994
+include/xmloff/xmltoken.hxx:2015
enum xmloff::token::XMLTokenEnum XML_VERTICAL
-include/xmloff/xmltoken.hxx:1995
+include/xmloff/xmltoken.hxx:2016
enum xmloff::token::XMLTokenEnum XML_VERTICAL_ALIGN
-include/xmloff/xmltoken.hxx:1996
+include/xmloff/xmltoken.hxx:2017
enum xmloff::token::XMLTokenEnum XML_VERTICAL_JUSTIFY
-include/xmloff/xmltoken.hxx:1997
+include/xmloff/xmltoken.hxx:2018
enum xmloff::token::XMLTokenEnum XML_VERTICAL_LINES
-include/xmloff/xmltoken.hxx:1998
+include/xmloff/xmltoken.hxx:2019
enum xmloff::token::XMLTokenEnum XML_VERTICAL_POS
-include/xmloff/xmltoken.hxx:1999
+include/xmloff/xmltoken.hxx:2020
enum xmloff::token::XMLTokenEnum XML_VERTICAL_REL
-include/xmloff/xmltoken.hxx:2000
+include/xmloff/xmltoken.hxx:2021
enum xmloff::token::XMLTokenEnum XML_VERTICAL_SEGMENTS
-include/xmloff/xmltoken.hxx:2001
+include/xmloff/xmltoken.hxx:2022
enum xmloff::token::XMLTokenEnum XML_VERTICAL_SPLIT_MODE
-include/xmloff/xmltoken.hxx:2002
+include/xmloff/xmltoken.hxx:2023
enum xmloff::token::XMLTokenEnum XML_VERTICAL_SPLIT_POSITION
-include/xmloff/xmltoken.hxx:2003
+include/xmloff/xmltoken.hxx:2024
enum xmloff::token::XMLTokenEnum XML_VERTICAL_STRIPES
-include/xmloff/xmltoken.hxx:2004
+include/xmloff/xmltoken.hxx:2025
enum xmloff::token::XMLTokenEnum XML_VIEW
-include/xmloff/xmltoken.hxx:2005
+include/xmloff/xmltoken.hxx:2026
enum xmloff::token::XMLTokenEnum XML_VIEWBOX
-include/xmloff/xmltoken.hxx:2006
+include/xmloff/xmltoken.hxx:2027
enum xmloff::token::XMLTokenEnum XML_VIEW_ID
-include/xmloff/xmltoken.hxx:2007
+include/xmloff/xmltoken.hxx:2028
enum xmloff::token::XMLTokenEnum XML_VIEW_SETTINGS
-include/xmloff/xmltoken.hxx:2009
+include/xmloff/xmltoken.hxx:2030
enum xmloff::token::XMLTokenEnum XML_VISIBLE
-include/xmloff/xmltoken.hxx:2010
+include/xmloff/xmltoken.hxx:2031
enum xmloff::token::XMLTokenEnum XML_VISIBLE_AREA
-include/xmloff/xmltoken.hxx:2011
+include/xmloff/xmltoken.hxx:2032
enum xmloff::token::XMLTokenEnum XML_VISIBLE_AREA_HEIGHT
-include/xmloff/xmltoken.hxx:2012
+include/xmloff/xmltoken.hxx:2033
enum xmloff::token::XMLTokenEnum XML_VISIBLE_AREA_LEFT
-include/xmloff/xmltoken.hxx:2013
+include/xmloff/xmltoken.hxx:2034
enum xmloff::token::XMLTokenEnum XML_VISIBLE_AREA_TOP
-include/xmloff/xmltoken.hxx:2014
+include/xmloff/xmltoken.hxx:2035
enum xmloff::token::XMLTokenEnum XML_VISIBLE_AREA_WIDTH
-include/xmloff/xmltoken.hxx:2015
+include/xmloff/xmltoken.hxx:2036
enum xmloff::token::XMLTokenEnum XML_VISITED_STYLE_NAME
-include/xmloff/xmltoken.hxx:2016
+include/xmloff/xmltoken.hxx:2037
enum xmloff::token::XMLTokenEnum XML_VOLATILE
-include/xmloff/xmltoken.hxx:2017
+include/xmloff/xmltoken.hxx:2038
enum xmloff::token::XMLTokenEnum XML_VOLUME
-include/xmloff/xmltoken.hxx:2018
+include/xmloff/xmltoken.hxx:2039
enum xmloff::token::XMLTokenEnum XML_VPN
-include/xmloff/xmltoken.hxx:2019
+include/xmloff/xmltoken.hxx:2040
enum xmloff::token::XMLTokenEnum XML_VRP
-include/xmloff/xmltoken.hxx:2020
+include/xmloff/xmltoken.hxx:2041
enum xmloff::token::XMLTokenEnum XML_VUP
-include/xmloff/xmltoken.hxx:2021
+include/xmloff/xmltoken.hxx:2042
enum xmloff::token::XMLTokenEnum XML_WALL
-include/xmloff/xmltoken.hxx:2022
+include/xmloff/xmltoken.hxx:2043
enum xmloff::token::XMLTokenEnum XML_WARNING
-include/xmloff/xmltoken.hxx:2023
+include/xmloff/xmltoken.hxx:2044
enum xmloff::token::XMLTokenEnum XML_WATERMARK
-include/xmloff/xmltoken.hxx:2024
+include/xmloff/xmltoken.hxx:2045
enum xmloff::token::XMLTokenEnum XML_WAVYLINE
-include/xmloff/xmltoken.hxx:2025
+include/xmloff/xmltoken.hxx:2046
enum xmloff::token::XMLTokenEnum XML_WAVYLINE_FROM_BOTTOM
-include/xmloff/xmltoken.hxx:2026
+include/xmloff/xmltoken.hxx:2047
enum xmloff::token::XMLTokenEnum XML_WAVYLINE_FROM_LEFT
-include/xmloff/xmltoken.hxx:2027
+include/xmloff/xmltoken.hxx:2048
enum xmloff::token::XMLTokenEnum XML_WAVYLINE_FROM_RIGHT
-include/xmloff/xmltoken.hxx:2028
+include/xmloff/xmltoken.hxx:2049
enum xmloff::token::XMLTokenEnum XML_WAVYLINE_FROM_TOP
-include/xmloff/xmltoken.hxx:2029
+include/xmloff/xmltoken.hxx:2050
enum xmloff::token::XMLTokenEnum XML_WEEK_OF_YEAR
-include/xmloff/xmltoken.hxx:2030
+include/xmloff/xmltoken.hxx:2051
enum xmloff::token::XMLTokenEnum XML_WEIGHT_BOLD
-include/xmloff/xmltoken.hxx:2031
+include/xmloff/xmltoken.hxx:2052
enum xmloff::token::XMLTokenEnum XML_WEIGHT_NORMAL
-include/xmloff/xmltoken.hxx:2032
+include/xmloff/xmltoken.hxx:2053
enum xmloff::token::XMLTokenEnum XML_WHITE
-include/xmloff/xmltoken.hxx:2033
+include/xmloff/xmltoken.hxx:2054
enum xmloff::token::XMLTokenEnum XML_WHOLE_PAGE
-include/xmloff/xmltoken.hxx:2034
+include/xmloff/xmltoken.hxx:2055
enum xmloff::token::XMLTokenEnum XML_WIDOWS
-include/xmloff/xmltoken.hxx:2036
+include/xmloff/xmltoken.hxx:2057
enum xmloff::token::XMLTokenEnum XML_WORD
-include/xmloff/xmltoken.hxx:2037
+include/xmloff/xmltoken.hxx:2058
enum xmloff::token::XMLTokenEnum XML_WORD_COUNT
-include/xmloff/xmltoken.hxx:2038
+include/xmloff/xmltoken.hxx:2059
enum xmloff::token::XMLTokenEnum XML_WRAP
-include/xmloff/xmltoken.hxx:2039
+include/xmloff/xmltoken.hxx:2060
enum xmloff::token::XMLTokenEnum XML_WRAP_CONTOUR
-include/xmloff/xmltoken.hxx:2040
+include/xmloff/xmltoken.hxx:2061
enum xmloff::token::XMLTokenEnum XML_WRAP_CONTOUR_MODE
-include/xmloff/xmltoken.hxx:2041
+include/xmloff/xmltoken.hxx:2062
enum xmloff::token::XMLTokenEnum XML_WRAP_OPTION
-include/xmloff/xmltoken.hxx:2042
+include/xmloff/xmltoken.hxx:2063
enum xmloff::token::XMLTokenEnum XML_WRITING_MODE
-include/xmloff/xmltoken.hxx:2043
+include/xmloff/xmltoken.hxx:2064
enum xmloff::token::XMLTokenEnum XML_WWW
-include/xmloff/xmltoken.hxx:2045
+include/xmloff/xmltoken.hxx:2066
enum xmloff::token::XMLTokenEnum XML_X1
-include/xmloff/xmltoken.hxx:2046
+include/xmloff/xmltoken.hxx:2067
enum xmloff::token::XMLTokenEnum XML_X2
-include/xmloff/xmltoken.hxx:2047
+include/xmloff/xmltoken.hxx:2068
enum xmloff::token::XMLTokenEnum XML_X_MAC_ROMAN
-include/xmloff/xmltoken.hxx:2048
+include/xmloff/xmltoken.hxx:2069
enum xmloff::token::XMLTokenEnum XML_X_SYMBOL
-include/xmloff/xmltoken.hxx:2049
+include/xmloff/xmltoken.hxx:2070
enum xmloff::token::XMLTokenEnum XML_X_SYSTEM
-include/xmloff/xmltoken.hxx:2050
+include/xmloff/xmltoken.hxx:2071
enum xmloff::token::XMLTokenEnum XML_XOR
-include/xmloff/xmltoken.hxx:2052
+include/xmloff/xmltoken.hxx:2073
enum xmloff::token::XMLTokenEnum XML_Y1
-include/xmloff/xmltoken.hxx:2053
+include/xmloff/xmltoken.hxx:2074
enum xmloff::token::XMLTokenEnum XML_Y2
-include/xmloff/xmltoken.hxx:2055
+include/xmloff/xmltoken.hxx:2076
enum xmloff::token::XMLTokenEnum XML_YELLOW
-include/xmloff/xmltoken.hxx:2056
+include/xmloff/xmltoken.hxx:2077
enum xmloff::token::XMLTokenEnum XML_ZERO_VALUES
-include/xmloff/xmltoken.hxx:2057
+include/xmloff/xmltoken.hxx:2078
enum xmloff::token::XMLTokenEnum XML_ZINDEX
-include/xmloff/xmltoken.hxx:2058
+include/xmloff/xmltoken.hxx:2079
enum xmloff::token::XMLTokenEnum XML_ZOOM_TYPE
-include/xmloff/xmltoken.hxx:2059
+include/xmloff/xmltoken.hxx:2080
enum xmloff::token::XMLTokenEnum XML_ZOOM_VALUE
-include/xmloff/xmltoken.hxx:2061
+include/xmloff/xmltoken.hxx:2082
enum xmloff::token::XMLTokenEnum XML_ENABLE
-include/xmloff/xmltoken.hxx:2062
- enum xmloff::token::XMLTokenEnum XML_USE_REGULAR_EXPRESSIONS
-include/xmloff/xmltoken.hxx:2063
- enum xmloff::token::XMLTokenEnum XML_USE_WILDCARDS
-include/xmloff/xmltoken.hxx:2064
+include/xmloff/xmltoken.hxx:2085
enum xmloff::token::XMLTokenEnum XML_DATA_SOURCE_HAS_LABELS
-include/xmloff/xmltoken.hxx:2065
+include/xmloff/xmltoken.hxx:2086
enum xmloff::token::XMLTokenEnum XML_LINK_DATA_STYLE_TO_SOURCE
-include/xmloff/xmltoken.hxx:2066
+include/xmloff/xmltoken.hxx:2087
enum xmloff::token::XMLTokenEnum XML_SORT_ALGORITHM
-include/xmloff/xmltoken.hxx:2067
+include/xmloff/xmltoken.hxx:2088
enum xmloff::token::XMLTokenEnum XML_STRAIGHT_LINE
-include/xmloff/xmltoken.hxx:2068
+include/xmloff/xmltoken.hxx:2089
enum xmloff::token::XMLTokenEnum XML_ANGLED_LINE
-include/xmloff/xmltoken.hxx:2069
+include/xmloff/xmltoken.hxx:2090
enum xmloff::token::XMLTokenEnum XML_ANGLED_CONNECTOR_LINE
-include/xmloff/xmltoken.hxx:2070
+include/xmloff/xmltoken.hxx:2091
enum xmloff::token::XMLTokenEnum XML_APPLICATION_X_WWW_FORM_URLENCODED
-include/xmloff/xmltoken.hxx:2071
+include/xmloff/xmltoken.hxx:2092
enum xmloff::token::XMLTokenEnum XML_MULTIPART_FORMDATA
-include/xmloff/xmltoken.hxx:2072
+include/xmloff/xmltoken.hxx:2093
enum xmloff::token::XMLTokenEnum XML_APPLICATION_TEXT
-include/xmloff/xmltoken.hxx:2073
+include/xmloff/xmltoken.hxx:2094
enum xmloff::token::XMLTokenEnum XML_GET
-include/xmloff/xmltoken.hxx:2074
+include/xmloff/xmltoken.hxx:2095
enum xmloff::token::XMLTokenEnum XML_POST
-include/xmloff/xmltoken.hxx:2075
+include/xmloff/xmltoken.hxx:2096
enum xmloff::token::XMLTokenEnum XML_QUERY
-include/xmloff/xmltoken.hxx:2076
+include/xmloff/xmltoken.hxx:2097
enum xmloff::token::XMLTokenEnum XML_PARENT
-include/xmloff/xmltoken.hxx:2077
+include/xmloff/xmltoken.hxx:2098
enum xmloff::token::XMLTokenEnum XML_RECORDS
-include/xmloff/xmltoken.hxx:2078
+include/xmloff/xmltoken.hxx:2099
enum xmloff::token::XMLTokenEnum XML_PUSH
-include/xmloff/xmltoken.hxx:2079
+include/xmloff/xmltoken.hxx:2100
enum xmloff::token::XMLTokenEnum XML_SUBMIT
-include/xmloff/xmltoken.hxx:2080
+include/xmloff/xmltoken.hxx:2101
enum xmloff::token::XMLTokenEnum XML_RESET
-include/xmloff/xmltoken.hxx:2081
+include/xmloff/xmltoken.hxx:2102
enum xmloff::token::XMLTokenEnum XML_VALUE_LIST
-include/xmloff/xmltoken.hxx:2082
+include/xmloff/xmltoken.hxx:2103
enum xmloff::token::XMLTokenEnum XML_SQL
-include/xmloff/xmltoken.hxx:2083
+include/xmloff/xmltoken.hxx:2104
enum xmloff::token::XMLTokenEnum XML_SQL_PASS_THROUGH
-include/xmloff/xmltoken.hxx:2084
+include/xmloff/xmltoken.hxx:2105
enum xmloff::token::XMLTokenEnum XML_TABLE_FIELDS
-include/xmloff/xmltoken.hxx:2085
+include/xmloff/xmltoken.hxx:2106
enum xmloff::token::XMLTokenEnum XML_UNCHECKED
-include/xmloff/xmltoken.hxx:2086
+include/xmloff/xmltoken.hxx:2107
enum xmloff::token::XMLTokenEnum XML_CHECKED
-include/xmloff/xmltoken.hxx:2087
+include/xmloff/xmltoken.hxx:2108
enum xmloff::token::XMLTokenEnum XML_UNKNOWN
-include/xmloff/xmltoken.hxx:2089
+include/xmloff/xmltoken.hxx:2110
enum xmloff::token::XMLTokenEnum XML_ROLL_FROM_TOP
-include/xmloff/xmltoken.hxx:2091
+include/xmloff/xmltoken.hxx:2112
enum xmloff::token::XMLTokenEnum XML_BINARY_DATA
-include/xmloff/xmltoken.hxx:2092
+include/xmloff/xmltoken.hxx:2113
enum xmloff::token::XMLTokenEnum XML_NOTIFY_ON_UPDATE_OF_TABLE
-include/xmloff/xmltoken.hxx:2094
+include/xmloff/xmltoken.hxx:2115
enum xmloff::token::XMLTokenEnum XML_0
-include/xmloff/xmltoken.hxx:2095
+include/xmloff/xmltoken.hxx:2116
enum xmloff::token::XMLTokenEnum XML_PLAY
-include/xmloff/xmltoken.hxx:2096
+include/xmloff/xmltoken.hxx:2117
enum xmloff::token::XMLTokenEnum XML_HANDOUT_MASTER
-include/xmloff/xmltoken.hxx:2097
+include/xmloff/xmltoken.hxx:2118
enum xmloff::token::XMLTokenEnum XML_TEXT_STYLE_NAME
-include/xmloff/xmltoken.hxx:2098
+include/xmloff/xmltoken.hxx:2119
enum xmloff::token::XMLTokenEnum XML_ESCAPE_DIRECTION
-include/xmloff/xmltoken.hxx:2099
+include/xmloff/xmltoken.hxx:2120
enum xmloff::token::XMLTokenEnum XML_GLUE_POINT
-include/xmloff/xmltoken.hxx:2100
+include/xmloff/xmltoken.hxx:2121
enum xmloff::token::XMLTokenEnum XML_PRIMARY_X
-include/xmloff/xmltoken.hxx:2101
+include/xmloff/xmltoken.hxx:2122
enum xmloff::token::XMLTokenEnum XML_SECONDARY_X
-include/xmloff/xmltoken.hxx:2102
+include/xmloff/xmltoken.hxx:2123
enum xmloff::token::XMLTokenEnum XML_PRIMARY_Y
-include/xmloff/xmltoken.hxx:2103
+include/xmloff/xmltoken.hxx:2124
enum xmloff::token::XMLTokenEnum XML_SECONDARY_Y
-include/xmloff/xmltoken.hxx:2104
+include/xmloff/xmltoken.hxx:2125
enum xmloff::token::XMLTokenEnum XML_PRIMARY_Z
-include/xmloff/xmltoken.hxx:2106
+include/xmloff/xmltoken.hxx:2127
enum xmloff::token::XMLTokenEnum XML_CAPTION_TYPE
-include/xmloff/xmltoken.hxx:2107
+include/xmloff/xmltoken.hxx:2128
enum xmloff::token::XMLTokenEnum XML_CAPTION_ANGLE_TYPE
-include/xmloff/xmltoken.hxx:2108
+include/xmloff/xmltoken.hxx:2129
enum xmloff::token::XMLTokenEnum XML_CAPTION_ANGLE
-include/xmloff/xmltoken.hxx:2109
+include/xmloff/xmltoken.hxx:2130
enum xmloff::token::XMLTokenEnum XML_CAPTION_GAP
-include/xmloff/xmltoken.hxx:2110
+include/xmloff/xmltoken.hxx:2131
enum xmloff::token::XMLTokenEnum XML_CAPTION_ESCAPE_DIRECTION
-include/xmloff/xmltoken.hxx:2111
+include/xmloff/xmltoken.hxx:2132
enum xmloff::token::XMLTokenEnum XML_CAPTION_ESCAPE
-include/xmloff/xmltoken.hxx:2112
+include/xmloff/xmltoken.hxx:2133
enum xmloff::token::XMLTokenEnum XML_CAPTION_LINE_LENGTH
-include/xmloff/xmltoken.hxx:2113
+include/xmloff/xmltoken.hxx:2134
enum xmloff::token::XMLTokenEnum XML_CAPTION_FIT_LINE_LENGTH
-include/xmloff/xmltoken.hxx:2114
+include/xmloff/xmltoken.hxx:2135
enum xmloff::token::XMLTokenEnum XML_FREE
-include/xmloff/xmltoken.hxx:2116
+include/xmloff/xmltoken.hxx:2137
enum xmloff::token::XMLTokenEnum XML_TRANSITION_TYPE
-include/xmloff/xmltoken.hxx:2117
+include/xmloff/xmltoken.hxx:2138
enum xmloff::token::XMLTokenEnum XML_TRANSITION_STYLE
-include/xmloff/xmltoken.hxx:2118
+include/xmloff/xmltoken.hxx:2139
enum xmloff::token::XMLTokenEnum XML_TRANSITION_SPEED
-include/xmloff/xmltoken.hxx:2119
+include/xmloff/xmltoken.hxx:2140
enum xmloff::token::XMLTokenEnum XML_DURATION
-include/xmloff/xmltoken.hxx:2120
+include/xmloff/xmltoken.hxx:2141
enum xmloff::token::XMLTokenEnum XML_BACKGROUND_SIZE
-include/xmloff/xmltoken.hxx:2121
+include/xmloff/xmltoken.hxx:2142
enum xmloff::token::XMLTokenEnum XML_BACKGROUND_OBJECTS_VISIBLE
-include/xmloff/xmltoken.hxx:2122
+include/xmloff/xmltoken.hxx:2143
enum xmloff::token::XMLTokenEnum XML_BACKGROUND_VISIBLE
-include/xmloff/xmltoken.hxx:2124
+include/xmloff/xmltoken.hxx:2145
enum xmloff::token::XMLTokenEnum XML_MOVE_FROM_UPPERLEFT
-include/xmloff/xmltoken.hxx:2125
+include/xmloff/xmltoken.hxx:2146
enum xmloff::token::XMLTokenEnum XML_MOVE_FROM_UPPERRIGHT
-include/xmloff/xmltoken.hxx:2126
+include/xmloff/xmltoken.hxx:2147
enum xmloff::token::XMLTokenEnum XML_MOVE_FROM_LOWERRIGHT
-include/xmloff/xmltoken.hxx:2127
+include/xmloff/xmltoken.hxx:2148
enum xmloff::token::XMLTokenEnum XML_MOVE_FROM_LOWERLEFT
-include/xmloff/xmltoken.hxx:2128
+include/xmloff/xmltoken.hxx:2149
enum xmloff::token::XMLTokenEnum XML_UNCOVER_TO_LEFT
-include/xmloff/xmltoken.hxx:2129
+include/xmloff/xmltoken.hxx:2150
enum xmloff::token::XMLTokenEnum XML_UNCOVER_TO_UPPERLEFT
-include/xmloff/xmltoken.hxx:2130
+include/xmloff/xmltoken.hxx:2151
enum xmloff::token::XMLTokenEnum XML_UNCOVER_TO_TOP
-include/xmloff/xmltoken.hxx:2131
+include/xmloff/xmltoken.hxx:2152
enum xmloff::token::XMLTokenEnum XML_UNCOVER_TO_UPPERRIGHT
-include/xmloff/xmltoken.hxx:2132
+include/xmloff/xmltoken.hxx:2153
enum xmloff::token::XMLTokenEnum XML_UNCOVER_TO_RIGHT
-include/xmloff/xmltoken.hxx:2133
+include/xmloff/xmltoken.hxx:2154
enum xmloff::token::XMLTokenEnum XML_UNCOVER_TO_LOWERRIGHT
-include/xmloff/xmltoken.hxx:2134
+include/xmloff/xmltoken.hxx:2155
enum xmloff::token::XMLTokenEnum XML_UNCOVER_TO_BOTTOM
-include/xmloff/xmltoken.hxx:2135
+include/xmloff/xmltoken.hxx:2156
enum xmloff::token::XMLTokenEnum XML_UNCOVER_TO_LOWERLEFT
-include/xmloff/xmltoken.hxx:2136
+include/xmloff/xmltoken.hxx:2157
enum xmloff::token::XMLTokenEnum XML_VERTICAL_CHECKERBOARD
-include/xmloff/xmltoken.hxx:2137
+include/xmloff/xmltoken.hxx:2158
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_CHECKERBOARD
-include/xmloff/xmltoken.hxx:2138
+include/xmloff/xmltoken.hxx:2159
enum xmloff::token::XMLTokenEnum XML_NOTIFY_ON_UPDATE_OF_RANGES
-include/xmloff/xmltoken.hxx:2139
+include/xmloff/xmltoken.hxx:2160
enum xmloff::token::XMLTokenEnum XML_BYTE
-include/xmloff/xmltoken.hxx:2140
+include/xmloff/xmltoken.hxx:2161
enum xmloff::token::XMLTokenEnum XML_MACRO
-include/xmloff/xmltoken.hxx:2141
+include/xmloff/xmltoken.hxx:2162
enum xmloff::token::XMLTokenEnum XML_LOCATION
-include/xmloff/xmltoken.hxx:2142
+include/xmloff/xmltoken.hxx:2163
enum xmloff::token::XMLTokenEnum XML_APPLICATION
-include/xmloff/xmltoken.hxx:2143
+include/xmloff/xmltoken.hxx:2164
enum xmloff::token::XMLTokenEnum XML_SYMBOL_IMAGE
-include/xmloff/xmltoken.hxx:2144
+include/xmloff/xmltoken.hxx:2165
enum xmloff::token::XMLTokenEnum XML_TEXT_OVERLAP
-include/xmloff/xmltoken.hxx:2145
+include/xmloff/xmltoken.hxx:2166
enum xmloff::token::XMLTokenEnum XML_SPLINE_ORDER
-include/xmloff/xmltoken.hxx:2146
+include/xmloff/xmltoken.hxx:2167
enum xmloff::token::XMLTokenEnum XML_SPLINE_RESOLUTION
-include/xmloff/xmltoken.hxx:2148
+include/xmloff/xmltoken.hxx:2169
enum xmloff::token::XMLTokenEnum XML_PAPER_TRAY_NAME
-include/xmloff/xmltoken.hxx:2150
+include/xmloff/xmltoken.hxx:2171
enum xmloff::token::XMLTokenEnum XML_COLUMN_MAPPING
-include/xmloff/xmltoken.hxx:2151
+include/xmloff/xmltoken.hxx:2172
enum xmloff::token::XMLTokenEnum XML_ROW_MAPPING
-include/xmloff/xmltoken.hxx:2153
+include/xmloff/xmltoken.hxx:2174
enum xmloff::token::XMLTokenEnum XML_TABLE_FORMULA
-include/xmloff/xmltoken.hxx:2155
+include/xmloff/xmltoken.hxx:2176
enum xmloff::token::XMLTokenEnum XML_EMBEDDED_TEXT
-include/xmloff/xmltoken.hxx:2157
+include/xmloff/xmltoken.hxx:2178
enum xmloff::token::XMLTokenEnum XML_MERGE_LAST_PARAGRAPH
-include/xmloff/xmltoken.hxx:2159
+include/xmloff/xmltoken.hxx:2180
enum xmloff::token::XMLTokenEnum XML_STOCK_LOSS_MARKER
-include/xmloff/xmltoken.hxx:2160
+include/xmloff/xmltoken.hxx:2181
enum xmloff::token::XMLTokenEnum XML_STOCK_GAIN_MARKER
-include/xmloff/xmltoken.hxx:2161
+include/xmloff/xmltoken.hxx:2182
enum xmloff::token::XMLTokenEnum XML_STOCK_RANGE_LINE
-include/xmloff/xmltoken.hxx:2163
+include/xmloff/xmltoken.hxx:2184
enum xmloff::token::XMLTokenEnum XML_RL_TB
-include/xmloff/xmltoken.hxx:2164
+include/xmloff/xmltoken.hxx:2185
enum xmloff::token::XMLTokenEnum XML_TB_LR
-include/xmloff/xmltoken.hxx:2165
+include/xmloff/xmltoken.hxx:2186
enum xmloff::token::XMLTokenEnum XML_LR
-include/xmloff/xmltoken.hxx:2166
+include/xmloff/xmltoken.hxx:2187
enum xmloff::token::XMLTokenEnum XML_RL
-include/xmloff/xmltoken.hxx:2167
+include/xmloff/xmltoken.hxx:2188
enum xmloff::token::XMLTokenEnum XML_TB
-include/xmloff/xmltoken.hxx:2169
+include/xmloff/xmltoken.hxx:2190
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_COLOR
-include/xmloff/xmltoken.hxx:2170
+include/xmloff/xmltoken.hxx:2191
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_LINES
-include/xmloff/xmltoken.hxx:2171
+include/xmloff/xmltoken.hxx:2192
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_BASE_HEIGHT
-include/xmloff/xmltoken.hxx:2172
+include/xmloff/xmltoken.hxx:2193
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_RUBY_HEIGHT
-include/xmloff/xmltoken.hxx:2173
+include/xmloff/xmltoken.hxx:2194
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_MODE
-include/xmloff/xmltoken.hxx:2174
+include/xmloff/xmltoken.hxx:2195
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_RUBY_BELOW
-include/xmloff/xmltoken.hxx:2175
+include/xmloff/xmltoken.hxx:2196
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_PRINT
-include/xmloff/xmltoken.hxx:2176
+include/xmloff/xmltoken.hxx:2197
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_DISPLAY
-include/xmloff/xmltoken.hxx:2179
+include/xmloff/xmltoken.hxx:2200
enum xmloff::token::XMLTokenEnum XML_DEFAULT_PAGE_LAYOUT
-include/xmloff/xmltoken.hxx:2180
+include/xmloff/xmltoken.hxx:2201
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_STANDARD_MODE
-include/xmloff/xmltoken.hxx:2181
+include/xmloff/xmltoken.hxx:2202
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_BASE_WIDTH
-include/xmloff/xmltoken.hxx:2182
+include/xmloff/xmltoken.hxx:2203
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_SNAP_TO_CHARS
-include/xmloff/xmltoken.hxx:2183
+include/xmloff/xmltoken.hxx:2204
enum xmloff::token::XMLTokenEnum XML_LAYOUT_GRID_SNAP_TO
-include/xmloff/xmltoken.hxx:2185
+include/xmloff/xmltoken.hxx:2206
enum xmloff::token::XMLTokenEnum XML_SNAP_TO_LAYOUT_GRID
-include/xmloff/xmltoken.hxx:2186
+include/xmloff/xmltoken.hxx:2207
enum xmloff::token::XMLTokenEnum XML_DONT_BALANCE_TEXT_COLUMNS
-include/xmloff/xmltoken.hxx:2188
+include/xmloff/xmltoken.hxx:2209
enum xmloff::token::XMLTokenEnum XML_GLYPH_ORIENTATION_VERTICAL
-include/xmloff/xmltoken.hxx:2190
- enum xmloff::token::XMLTokenEnum XML_MARKED_INVALID
-include/xmloff/xmltoken.hxx:2192
+include/xmloff/xmltoken.hxx:2213
enum xmloff::token::XMLTokenEnum XML_REGRESSION_CURVE
-include/xmloff/xmltoken.hxx:2193
+include/xmloff/xmltoken.hxx:2214
enum xmloff::token::XMLTokenEnum XML_REGRESSION_TYPE
-include/xmloff/xmltoken.hxx:2194
+include/xmloff/xmltoken.hxx:2215
enum xmloff::token::XMLTokenEnum XML_REGRESSION_CURVE_NAME
-include/xmloff/xmltoken.hxx:2195
+include/xmloff/xmltoken.hxx:2216
enum xmloff::token::XMLTokenEnum XML_REGRESSION_EXTRAPOLATE_FORWARD
-include/xmloff/xmltoken.hxx:2196
+include/xmloff/xmltoken.hxx:2217
enum xmloff::token::XMLTokenEnum XML_REGRESSION_EXTRAPOLATE_BACKWARD
-include/xmloff/xmltoken.hxx:2197
+include/xmloff/xmltoken.hxx:2218
enum xmloff::token::XMLTokenEnum XML_REGRESSION_MAX_DEGREE
-include/xmloff/xmltoken.hxx:2198
+include/xmloff/xmltoken.hxx:2219
enum xmloff::token::XMLTokenEnum XML_REGRESSION_MIN_DEGREE
-include/xmloff/xmltoken.hxx:2199
+include/xmloff/xmltoken.hxx:2220
enum xmloff::token::XMLTokenEnum XML_REGRESSION_MOVING_TYPE
-include/xmloff/xmltoken.hxx:2200
+include/xmloff/xmltoken.hxx:2221
enum xmloff::token::XMLTokenEnum XML_REGRESSION_PERIOD
-include/xmloff/xmltoken.hxx:2201
+include/xmloff/xmltoken.hxx:2222
enum xmloff::token::XMLTokenEnum XML_REGRESSION_FORCE_INTERCEPT
-include/xmloff/xmltoken.hxx:2202
+include/xmloff/xmltoken.hxx:2223
enum xmloff::token::XMLTokenEnum XML_REGRESSION_INTERCEPT_VALUE
-include/xmloff/xmltoken.hxx:2203
+include/xmloff/xmltoken.hxx:2224
enum xmloff::token::XMLTokenEnum XML_REGRESSION_X_NAME
-include/xmloff/xmltoken.hxx:2204
+include/xmloff/xmltoken.hxx:2225
enum xmloff::token::XMLTokenEnum XML_REGRESSION_Y_NAME
-include/xmloff/xmltoken.hxx:2206
+include/xmloff/xmltoken.hxx:2227
enum xmloff::token::XMLTokenEnum XML_ERROR_INDICATOR
-include/xmloff/xmltoken.hxx:2208
+include/xmloff/xmltoken.hxx:2229
enum xmloff::token::XMLTokenEnum XML_TABLE_TYPE
-include/xmloff/xmltoken.hxx:2210
+include/xmloff/xmltoken.hxx:2231
enum xmloff::token::XMLTokenEnum XML_DISPLAY_FACTOR
-include/xmloff/xmltoken.hxx:2212
+include/xmloff/xmltoken.hxx:2233
enum xmloff::token::XMLTokenEnum XML_TRANSLITERATION_FORMAT
-include/xmloff/xmltoken.hxx:2213
+include/xmloff/xmltoken.hxx:2234
enum xmloff::token::XMLTokenEnum XML_TRANSLITERATION_LANGUAGE
-include/xmloff/xmltoken.hxx:2214
+include/xmloff/xmltoken.hxx:2235
enum xmloff::token::XMLTokenEnum XML_TRANSLITERATION_COUNTRY
-include/xmloff/xmltoken.hxx:2215
+include/xmloff/xmltoken.hxx:2236
enum xmloff::token::XMLTokenEnum XML_TRANSLITERATION_STYLE
-include/xmloff/xmltoken.hxx:2217
+include/xmloff/xmltoken.hxx:2238
enum xmloff::token::XMLTokenEnum XML_KEY1_PHONETIC
-include/xmloff/xmltoken.hxx:2218
+include/xmloff/xmltoken.hxx:2239
enum xmloff::token::XMLTokenEnum XML_KEY2_PHONETIC
-include/xmloff/xmltoken.hxx:2219
+include/xmloff/xmltoken.hxx:2240
enum xmloff::token::XMLTokenEnum XML_STRING_VALUE_PHONETIC
-include/xmloff/xmltoken.hxx:2221
+include/xmloff/xmltoken.hxx:2242
enum xmloff::token::XMLTokenEnum XML_BACKGROUND_TRANSPARENCY
-include/xmloff/xmltoken.hxx:2222
+include/xmloff/xmltoken.hxx:2243
enum xmloff::token::XMLTokenEnum XML_BACKGROUND_IMAGE_TRANSPARENCY
-include/xmloff/xmltoken.hxx:2224
+include/xmloff/xmltoken.hxx:2245
enum xmloff::token::XMLTokenEnum XML_DYNAMIC_SPACING
-include/xmloff/xmltoken.hxx:2225
+include/xmloff/xmltoken.hxx:2246
enum xmloff::token::XMLTokenEnum XML_MAIN_ENTRY
-include/xmloff/xmltoken.hxx:2227
+include/xmloff/xmltoken.hxx:2248
enum xmloff::token::XMLTokenEnum XML_USE_OUTLINE_LEVEL
-include/xmloff/xmltoken.hxx:2230
+include/xmloff/xmltoken.hxx:2251
enum xmloff::token::XMLTokenEnum XML_CLOSE_FRONT
-include/xmloff/xmltoken.hxx:2231
+include/xmloff/xmltoken.hxx:2252
enum xmloff::token::XMLTokenEnum XML_CLOSE_BACK
-include/xmloff/xmltoken.hxx:2233
+include/xmloff/xmltoken.hxx:2254
enum xmloff::token::XMLTokenEnum XML_DROP_DOWN
-include/xmloff/xmltoken.hxx:2234
+include/xmloff/xmltoken.hxx:2255
enum xmloff::token::XMLTokenEnum XML_CURRENT_SELECTED
-include/xmloff/xmltoken.hxx:2236
+include/xmloff/xmltoken.hxx:2257
enum xmloff::token::XMLTokenEnum XML_JOIN_BORDER
-include/xmloff/xmltoken.hxx:2238
- enum xmloff::token::XMLTokenEnum XML_DISPLAY_LIST
-include/xmloff/xmltoken.hxx:2239
+include/xmloff/xmltoken.hxx:2260
enum xmloff::token::XMLTokenEnum XML_NO
-include/xmloff/xmltoken.hxx:2240
+include/xmloff/xmltoken.hxx:2261
enum xmloff::token::XMLTokenEnum XML_UNSORTED
-include/xmloff/xmltoken.hxx:2241
+include/xmloff/xmltoken.hxx:2262
enum xmloff::token::XMLTokenEnum XML_FONT_INDEPENDENT_LINE_SPACING
-include/xmloff/xmltoken.hxx:2244
+include/xmloff/xmltoken.hxx:2265
enum xmloff::token::XMLTokenEnum XML_SORTED_ASCENDING
-include/xmloff/xmltoken.hxx:2246
+include/xmloff/xmltoken.hxx:2267
enum xmloff::token::XMLTokenEnum XML_DATABASE
-include/xmloff/xmltoken.hxx:2247
+include/xmloff/xmltoken.hxx:2268
enum xmloff::token::XMLTokenEnum XML_DATASOURCE
-include/xmloff/xmltoken.hxx:2248
+include/xmloff/xmltoken.hxx:2269
enum xmloff::token::XMLTokenEnum XML_QUERIES
-include/xmloff/xmltoken.hxx:2249
+include/xmloff/xmltoken.hxx:2270
enum xmloff::token::XMLTokenEnum XML_REPORTS
-include/xmloff/xmltoken.hxx:2250
+include/xmloff/xmltoken.hxx:2271
enum xmloff::token::XMLTokenEnum XML_REPORT
-include/xmloff/xmltoken.hxx:2251
+include/xmloff/xmltoken.hxx:2272
enum xmloff::token::XMLTokenEnum XML_AS_TEMPLATE
-include/xmloff/xmltoken.hxx:2253
- enum xmloff::token::XMLTokenEnum XML_CONNECTION_RESOURCE
-include/xmloff/xmltoken.hxx:2254
+include/xmloff/xmltoken.hxx:2275
enum xmloff::token::XMLTokenEnum XML_SUPPRESS_VERSION_COLUMNS
-include/xmloff/xmltoken.hxx:2255
+include/xmloff/xmltoken.hxx:2276
enum xmloff::token::XMLTokenEnum XML_JAVA_DRIVER_CLASS
-include/xmloff/xmltoken.hxx:2256
+include/xmloff/xmltoken.hxx:2277
enum xmloff::token::XMLTokenEnum XML_EXTENSION
-include/xmloff/xmltoken.hxx:2257
+include/xmloff/xmltoken.hxx:2278
enum xmloff::token::XMLTokenEnum XML_IS_FIRST_ROW_HEADER_LINE
-include/xmloff/xmltoken.hxx:2258
+include/xmloff/xmltoken.hxx:2279
enum xmloff::token::XMLTokenEnum XML_SHOW_DELETED
-include/xmloff/xmltoken.hxx:2259
+include/xmloff/xmltoken.hxx:2280
enum xmloff::token::XMLTokenEnum XML_IS_TABLE_NAME_LENGTH_LIMITED
-include/xmloff/xmltoken.hxx:2260
+include/xmloff/xmltoken.hxx:2281
enum xmloff::token::XMLTokenEnum XML_SYSTEM_DRIVER_SETTINGS
-include/xmloff/xmltoken.hxx:2261
+include/xmloff/xmltoken.hxx:2282
enum xmloff::token::XMLTokenEnum XML_ENABLE_SQL92_CHECK
-include/xmloff/xmltoken.hxx:2262
+include/xmloff/xmltoken.hxx:2283
enum xmloff::token::XMLTokenEnum XML_APPEND_TABLE_ALIAS_NAME
-include/xmloff/xmltoken.hxx:2263
+include/xmloff/xmltoken.hxx:2284
enum xmloff::token::XMLTokenEnum XML_PARAMETER_NAME_SUBSTITUTION
-include/xmloff/xmltoken.hxx:2264
+include/xmloff/xmltoken.hxx:2285
enum xmloff::token::XMLTokenEnum XML_IGNORE_DRIVER_PRIVILEGES
-include/xmloff/xmltoken.hxx:2265
+include/xmloff/xmltoken.hxx:2286
enum xmloff::token::XMLTokenEnum XML_BOOLEAN_COMPARISON_MODE
-include/xmloff/xmltoken.hxx:2266
+include/xmloff/xmltoken.hxx:2287
enum xmloff::token::XMLTokenEnum XML_USE_CATALOG
-include/xmloff/xmltoken.hxx:2267
+include/xmloff/xmltoken.hxx:2288
enum xmloff::token::XMLTokenEnum XML_BASE_DN
-include/xmloff/xmltoken.hxx:2268
+include/xmloff/xmltoken.hxx:2289
enum xmloff::token::XMLTokenEnum XML_MAX_ROW_COUNT
-include/xmloff/xmltoken.hxx:2269
+include/xmloff/xmltoken.hxx:2290
enum xmloff::token::XMLTokenEnum XML_LOGIN
-include/xmloff/xmltoken.hxx:2270
- enum xmloff::token::XMLTokenEnum XML_USER_NAME
-include/xmloff/xmltoken.hxx:2271
+include/xmloff/xmltoken.hxx:2292
enum xmloff::token::XMLTokenEnum XML_IS_PASSWORD_REQUIRED
-include/xmloff/xmltoken.hxx:2272
+include/xmloff/xmltoken.hxx:2293
enum xmloff::token::XMLTokenEnum XML_LOGIN_TIMEOUT
-include/xmloff/xmltoken.hxx:2273
+include/xmloff/xmltoken.hxx:2294
enum xmloff::token::XMLTokenEnum XML_DELIMITER
-include/xmloff/xmltoken.hxx:2274
+include/xmloff/xmltoken.hxx:2295
enum xmloff::token::XMLTokenEnum XML_FIELD
-include/xmloff/xmltoken.hxx:2276
+include/xmloff/xmltoken.hxx:2297
enum xmloff::token::XMLTokenEnum XML_THOUSAND
-include/xmloff/xmltoken.hxx:2277
+include/xmloff/xmltoken.hxx:2298
enum xmloff::token::XMLTokenEnum XML_TABLE_FILTER
-include/xmloff/xmltoken.hxx:2278
+include/xmloff/xmltoken.hxx:2299
enum xmloff::token::XMLTokenEnum XML_TABLE_FILTER_PATTERN
-include/xmloff/xmltoken.hxx:2279
+include/xmloff/xmltoken.hxx:2300
enum xmloff::token::XMLTokenEnum XML_TABLE_TYPE_FILTER
-include/xmloff/xmltoken.hxx:2280
+include/xmloff/xmltoken.hxx:2301
enum xmloff::token::XMLTokenEnum XML_AUTO_INCREMENT
-include/xmloff/xmltoken.hxx:2281
+include/xmloff/xmltoken.hxx:2302
enum xmloff::token::XMLTokenEnum XML_ADDITIONAL_COLUMN_STATEMENT
-include/xmloff/xmltoken.hxx:2282
+include/xmloff/xmltoken.hxx:2303
enum xmloff::token::XMLTokenEnum XML_ROW_RETRIEVING_STATEMENT
-include/xmloff/xmltoken.hxx:2283
+include/xmloff/xmltoken.hxx:2304
enum xmloff::token::XMLTokenEnum XML_DATA_SOURCE_SETTINGS
-include/xmloff/xmltoken.hxx:2284
+include/xmloff/xmltoken.hxx:2305
enum xmloff::token::XMLTokenEnum XML_DATA_SOURCE_SETTING
-include/xmloff/xmltoken.hxx:2285
+include/xmloff/xmltoken.hxx:2306
enum xmloff::token::XMLTokenEnum XML_DATA_SOURCE_SETTING_VALUE
-include/xmloff/xmltoken.hxx:2286
+include/xmloff/xmltoken.hxx:2307
enum xmloff::token::XMLTokenEnum XML_DATA_SOURCE_SETTING_IS_LIST
-include/xmloff/xmltoken.hxx:2287
+include/xmloff/xmltoken.hxx:2308
enum xmloff::token::XMLTokenEnum XML_DATA_SOURCE_SETTING_TYPE
-include/xmloff/xmltoken.hxx:2288
+include/xmloff/xmltoken.hxx:2309
enum xmloff::token::XMLTokenEnum XML_DATA_SOURCE_SETTING_NAME
-include/xmloff/xmltoken.hxx:2289
+include/xmloff/xmltoken.hxx:2310
enum xmloff::token::XMLTokenEnum XML_COMPONENT
-include/xmloff/xmltoken.hxx:2290
+include/xmloff/xmltoken.hxx:2311
enum xmloff::token::XMLTokenEnum XML_COMPONENT_COLLECTION
-include/xmloff/xmltoken.hxx:2291
+include/xmloff/xmltoken.hxx:2312
enum xmloff::token::XMLTokenEnum XML_QUERY_COLLECTION
-include/xmloff/xmltoken.hxx:2292
+include/xmloff/xmltoken.hxx:2313
enum xmloff::token::XMLTokenEnum XML_UPDATE_TABLE
-include/xmloff/xmltoken.hxx:2293
+include/xmloff/xmltoken.hxx:2314
enum xmloff::token::XMLTokenEnum XML_FILTER_STATEMENT
-include/xmloff/xmltoken.hxx:2294
+include/xmloff/xmltoken.hxx:2315
enum xmloff::token::XMLTokenEnum XML_ORDER_STATEMENT
-include/xmloff/xmltoken.hxx:2295
+include/xmloff/xmltoken.hxx:2316
enum xmloff::token::XMLTokenEnum XML_ESCAPE_PROCESSING
-include/xmloff/xmltoken.hxx:2296
+include/xmloff/xmltoken.hxx:2317
enum xmloff::token::XMLTokenEnum XML_KEYS
-include/xmloff/xmltoken.hxx:2297
+include/xmloff/xmltoken.hxx:2318
enum xmloff::token::XMLTokenEnum XML_INDICES
-include/xmloff/xmltoken.hxx:2298
+include/xmloff/xmltoken.hxx:2319
enum xmloff::token::XMLTokenEnum XML_TYPE_NAME
-include/xmloff/xmltoken.hxx:2299
- enum xmloff::token::XMLTokenEnum XML_PRECISION
-include/xmloff/xmltoken.hxx:2300
+include/xmloff/xmltoken.hxx:2321
enum xmloff::token::XMLTokenEnum XML_IS_NULLABLE
-include/xmloff/xmltoken.hxx:2301
+include/xmloff/xmltoken.hxx:2322
enum xmloff::token::XMLTokenEnum XML_IS_AUTOINCREMENT
-include/xmloff/xmltoken.hxx:2302
+include/xmloff/xmltoken.hxx:2323
enum xmloff::token::XMLTokenEnum XML_DEFAULT_VALUE
-include/xmloff/xmltoken.hxx:2303
+include/xmloff/xmltoken.hxx:2324
enum xmloff::token::XMLTokenEnum XML_REFERENCED_TABLE_NAME
-include/xmloff/xmltoken.hxx:2304
+include/xmloff/xmltoken.hxx:2325
enum xmloff::token::XMLTokenEnum XML_UPDATE_RULE
-include/xmloff/xmltoken.hxx:2305
+include/xmloff/xmltoken.hxx:2326
enum xmloff::token::XMLTokenEnum XML_DELETE_RULE
-include/xmloff/xmltoken.hxx:2306
+include/xmloff/xmltoken.hxx:2327
enum xmloff::token::XMLTokenEnum XML_KEY_COLUMNS
-include/xmloff/xmltoken.hxx:2307
+include/xmloff/xmltoken.hxx:2328
enum xmloff::token::XMLTokenEnum XML_KEY_COLUMN
-include/xmloff/xmltoken.hxx:2308
+include/xmloff/xmltoken.hxx:2329
enum xmloff::token::XMLTokenEnum XML_RELATED_COLUMN_NAME
-include/xmloff/xmltoken.hxx:2309
+include/xmloff/xmltoken.hxx:2330
enum xmloff::token::XMLTokenEnum XML_CATALOG_NAME
-include/xmloff/xmltoken.hxx:2310
+include/xmloff/xmltoken.hxx:2331
enum xmloff::token::XMLTokenEnum XML_IS_UNIQUE
-include/xmloff/xmltoken.hxx:2311
+include/xmloff/xmltoken.hxx:2332
enum xmloff::token::XMLTokenEnum XML_IS_CLUSTERED
-include/xmloff/xmltoken.hxx:2312
+include/xmloff/xmltoken.hxx:2333
enum xmloff::token::XMLTokenEnum XML_INDEX_COLUMNS
-include/xmloff/xmltoken.hxx:2313
+include/xmloff/xmltoken.hxx:2334
enum xmloff::token::XMLTokenEnum XML_INDEX_COLUMN
-include/xmloff/xmltoken.hxx:2314
+include/xmloff/xmltoken.hxx:2335
enum xmloff::token::XMLTokenEnum XML_IS_ASCENDING
-include/xmloff/xmltoken.hxx:2315
+include/xmloff/xmltoken.hxx:2336
enum xmloff::token::XMLTokenEnum XML_SCHEMA_NAME
-include/xmloff/xmltoken.hxx:2316
- enum xmloff::token::XMLTokenEnum XML_NP_DB
-include/xmloff/xmltoken.hxx:2317
- enum xmloff::token::XMLTokenEnum XML_N_DB
-include/xmloff/xmltoken.hxx:2318
+include/xmloff/xmltoken.hxx:2339
enum xmloff::token::XMLTokenEnum XML_APPLY_FILTER
-include/xmloff/xmltoken.hxx:2319
+include/xmloff/xmltoken.hxx:2340
enum xmloff::token::XMLTokenEnum XML_APPLY_ORDER
-include/xmloff/xmltoken.hxx:2320
+include/xmloff/xmltoken.hxx:2341
enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_PRINT_RANGE
-include/xmloff/xmltoken.hxx:2322
+include/xmloff/xmltoken.hxx:2343
enum xmloff::token::XMLTokenEnum XML_SELECTION
-include/xmloff/xmltoken.hxx:2323
+include/xmloff/xmltoken.hxx:2344
enum xmloff::token::XMLTokenEnum XML_SELECTION_INDEXES
-include/xmloff/xmltoken.hxx:2325
+include/xmloff/xmltoken.hxx:2346
enum xmloff::token::XMLTokenEnum XML_SCALE_TO_X
-include/xmloff/xmltoken.hxx:2326
+include/xmloff/xmltoken.hxx:2347
enum xmloff::token::XMLTokenEnum XML_SCALE_TO_Y
-include/xmloff/xmltoken.hxx:2328
+include/xmloff/xmltoken.hxx:2349
enum xmloff::token::XMLTokenEnum XML_KEEP_TOGETHER
-include/xmloff/xmltoken.hxx:2330
+include/xmloff/xmltoken.hxx:2351
enum xmloff::token::XMLTokenEnum XML_USE_HEADER_NAME
-include/xmloff/xmltoken.hxx:2331
+include/xmloff/xmltoken.hxx:2352
enum xmloff::token::XMLTokenEnum XML_USE_FOOTER_NAME
-include/xmloff/xmltoken.hxx:2332
+include/xmloff/xmltoken.hxx:2353
enum xmloff::token::XMLTokenEnum XML_USE_DATE_TIME_NAME
-include/xmloff/xmltoken.hxx:2333
+include/xmloff/xmltoken.hxx:2354
enum xmloff::token::XMLTokenEnum XML_DISPLAY_HEADER
-include/xmloff/xmltoken.hxx:2334
+include/xmloff/xmltoken.hxx:2355
enum xmloff::token::XMLTokenEnum XML_DISPLAY_FOOTER
-include/xmloff/xmltoken.hxx:2335
+include/xmloff/xmltoken.hxx:2356
enum xmloff::token::XMLTokenEnum XML_DISPLAY_PAGE_NUMBER
-include/xmloff/xmltoken.hxx:2336
+include/xmloff/xmltoken.hxx:2357
enum xmloff::token::XMLTokenEnum XML_DISPLAY_DATE_TIME
-include/xmloff/xmltoken.hxx:2337
+include/xmloff/xmltoken.hxx:2358
enum xmloff::token::XMLTokenEnum XML_SOURCE
-include/xmloff/xmltoken.hxx:2338
+include/xmloff/xmltoken.hxx:2359
enum xmloff::token::XMLTokenEnum XML_CURRENT_DATE
-include/xmloff/xmltoken.hxx:2340
+include/xmloff/xmltoken.hxx:2361
enum xmloff::token::XMLTokenEnum XML_HEADER_DECL
-include/xmloff/xmltoken.hxx:2341
+include/xmloff/xmltoken.hxx:2362
enum xmloff::token::XMLTokenEnum XML_FOOTER_DECL
-include/xmloff/xmltoken.hxx:2342
+include/xmloff/xmltoken.hxx:2363
enum xmloff::token::XMLTokenEnum XML_DATE_TIME_DECL
-include/xmloff/xmltoken.hxx:2344
- enum xmloff::token::XMLTokenEnum XML_SELECTED_PAGE
-include/xmloff/xmltoken.hxx:2347
+include/xmloff/xmltoken.hxx:2368
enum xmloff::token::XMLTokenEnum XML_FLOW_WITH_TEXT
-include/xmloff/xmltoken.hxx:2349
+include/xmloff/xmltoken.hxx:2370
enum xmloff::token::XMLTokenEnum XML_WITH_TAB
-include/xmloff/xmltoken.hxx:2351
+include/xmloff/xmltoken.hxx:2372
enum xmloff::token::XMLTokenEnum XML_CUSTOM_SHAPE
-include/xmloff/xmltoken.hxx:2352
+include/xmloff/xmltoken.hxx:2373
enum xmloff::token::XMLTokenEnum XML_ENGINE
-include/xmloff/xmltoken.hxx:2353
+include/xmloff/xmltoken.hxx:2374
enum xmloff::token::XMLTokenEnum XML_ENHANCED_GEOMETRY
-include/xmloff/xmltoken.hxx:2354
+include/xmloff/xmltoken.hxx:2375
enum xmloff::token::XMLTokenEnum XML_TEXT_ROTATE_ANGLE
-include/xmloff/xmltoken.hxx:2355
+include/xmloff/xmltoken.hxx:2376
enum xmloff::token::XMLTokenEnum XML_MIRROR_VERTICAL
-include/xmloff/xmltoken.hxx:2356
+include/xmloff/xmltoken.hxx:2377
enum xmloff::token::XMLTokenEnum XML_MIRROR_HORIZONTAL
-include/xmloff/xmltoken.hxx:2357
+include/xmloff/xmltoken.hxx:2378
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_ALLOWED
-include/xmloff/xmltoken.hxx:2358
+include/xmloff/xmltoken.hxx:2379
enum xmloff::token::XMLTokenEnum XML_TEXT_PATH_ALLOWED
-include/xmloff/xmltoken.hxx:2359
+include/xmloff/xmltoken.hxx:2380
enum xmloff::token::XMLTokenEnum XML_CONCENTRIC_GRADIENT_FILL_ALLOWED
-include/xmloff/xmltoken.hxx:2360
+include/xmloff/xmltoken.hxx:2381
enum xmloff::token::XMLTokenEnum XML_EXTRUSION
-include/xmloff/xmltoken.hxx:2361
+include/xmloff/xmltoken.hxx:2382
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_BRIGHTNESS
-include/xmloff/xmltoken.hxx:2362
+include/xmloff/xmltoken.hxx:2383
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_DEPTH
-include/xmloff/xmltoken.hxx:2363
+include/xmloff/xmltoken.hxx:2384
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_DIFFUSION
-include/xmloff/xmltoken.hxx:2364
+include/xmloff/xmltoken.hxx:2385
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_NUMBER_OF_LINE_SEGMENTS
-include/xmloff/xmltoken.hxx:2365
+include/xmloff/xmltoken.hxx:2386
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_LIGHT_FACE
-include/xmloff/xmltoken.hxx:2366
+include/xmloff/xmltoken.hxx:2387
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_FIRST_LIGHT_HARSH
-include/xmloff/xmltoken.hxx:2367
+include/xmloff/xmltoken.hxx:2388
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_SECOND_LIGHT_HARSH
-include/xmloff/xmltoken.hxx:2368
+include/xmloff/xmltoken.hxx:2389
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_FIRST_LIGHT_LEVEL
-include/xmloff/xmltoken.hxx:2369
+include/xmloff/xmltoken.hxx:2390
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_SECOND_LIGHT_LEVEL
-include/xmloff/xmltoken.hxx:2370
+include/xmloff/xmltoken.hxx:2391
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_FIRST_LIGHT_DIRECTION
-include/xmloff/xmltoken.hxx:2371
+include/xmloff/xmltoken.hxx:2392
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_SECOND_LIGHT_DIRECTION
-include/xmloff/xmltoken.hxx:2372
+include/xmloff/xmltoken.hxx:2393
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_METAL
-include/xmloff/xmltoken.hxx:2373
+include/xmloff/xmltoken.hxx:2394
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_ROTATION_ANGLE
-include/xmloff/xmltoken.hxx:2374
+include/xmloff/xmltoken.hxx:2395
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_ROTATION_CENTER
-include/xmloff/xmltoken.hxx:2375
+include/xmloff/xmltoken.hxx:2396
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_SHININESS
-include/xmloff/xmltoken.hxx:2376
+include/xmloff/xmltoken.hxx:2397
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_SKEW
-include/xmloff/xmltoken.hxx:2377
+include/xmloff/xmltoken.hxx:2398
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_SPECULARITY
-include/xmloff/xmltoken.hxx:2378
+include/xmloff/xmltoken.hxx:2399
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_PROJECTION_MODE
-include/xmloff/xmltoken.hxx:2379
+include/xmloff/xmltoken.hxx:2400
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_VIEWPOINT
-include/xmloff/xmltoken.hxx:2380
+include/xmloff/xmltoken.hxx:2401
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_ORIGIN
-include/xmloff/xmltoken.hxx:2381
+include/xmloff/xmltoken.hxx:2402
enum xmloff::token::XMLTokenEnum XML_EXTRUSION_COLOR
-include/xmloff/xmltoken.hxx:2382
+include/xmloff/xmltoken.hxx:2403
enum xmloff::token::XMLTokenEnum XML_SECONDARY_FILL_COLOR
-include/xmloff/xmltoken.hxx:2383
+include/xmloff/xmltoken.hxx:2404
enum xmloff::token::XMLTokenEnum XML_ENHANCED_PATH
-include/xmloff/xmltoken.hxx:2384
+include/xmloff/xmltoken.hxx:2405
enum xmloff::token::XMLTokenEnum XML_PATH_STRETCHPOINT_X
-include/xmloff/xmltoken.hxx:2385
+include/xmloff/xmltoken.hxx:2406
enum xmloff::token::XMLTokenEnum XML_PATH_STRETCHPOINT_Y
-include/xmloff/xmltoken.hxx:2386
+include/xmloff/xmltoken.hxx:2407
enum xmloff::token::XMLTokenEnum XML_TEXT_AREAS
-include/xmloff/xmltoken.hxx:2387
+include/xmloff/xmltoken.hxx:2408
enum xmloff::token::XMLTokenEnum XML_GLUE_POINTS
-include/xmloff/xmltoken.hxx:2388
+include/xmloff/xmltoken.hxx:2409
enum xmloff::token::XMLTokenEnum XML_GLUE_POINT_TYPE
-include/xmloff/xmltoken.hxx:2389
+include/xmloff/xmltoken.hxx:2410
enum xmloff::token::XMLTokenEnum XML_GLUE_POINT_LEAVING_DIRECTIONS
-include/xmloff/xmltoken.hxx:2390
+include/xmloff/xmltoken.hxx:2411
enum xmloff::token::XMLTokenEnum XML_TEXT_PATH
-include/xmloff/xmltoken.hxx:2391
+include/xmloff/xmltoken.hxx:2412
enum xmloff::token::XMLTokenEnum XML_TEXT_PATH_MODE
-include/xmloff/xmltoken.hxx:2392
+include/xmloff/xmltoken.hxx:2413
enum xmloff::token::XMLTokenEnum XML_TEXT_PATH_SCALE
-include/xmloff/xmltoken.hxx:2393
+include/xmloff/xmltoken.hxx:2414
enum xmloff::token::XMLTokenEnum XML_TEXT_PATH_SAME_LETTER_HEIGHTS
-include/xmloff/xmltoken.hxx:2394
+include/xmloff/xmltoken.hxx:2415
enum xmloff::token::XMLTokenEnum XML_MODIFIERS
-include/xmloff/xmltoken.hxx:2395
+include/xmloff/xmltoken.hxx:2416
enum xmloff::token::XMLTokenEnum XML_EQUATION
-include/xmloff/xmltoken.hxx:2396
+include/xmloff/xmltoken.hxx:2417
enum xmloff::token::XMLTokenEnum XML_XSTRETCH
-include/xmloff/xmltoken.hxx:2397
+include/xmloff/xmltoken.hxx:2418
enum xmloff::token::XMLTokenEnum XML_YSTRETCH
-include/xmloff/xmltoken.hxx:2398
+include/xmloff/xmltoken.hxx:2419
enum xmloff::token::XMLTokenEnum XML_HASSTROKE
-include/xmloff/xmltoken.hxx:2399
+include/xmloff/xmltoken.hxx:2420
enum xmloff::token::XMLTokenEnum XML_HASFILL
-include/xmloff/xmltoken.hxx:2400
+include/xmloff/xmltoken.hxx:2421
enum xmloff::token::XMLTokenEnum XML_LOGWIDTH
-include/xmloff/xmltoken.hxx:2401
+include/xmloff/xmltoken.hxx:2422
enum xmloff::token::XMLTokenEnum XML_LOGHEIGHT
-include/xmloff/xmltoken.hxx:2402
+include/xmloff/xmltoken.hxx:2423
enum xmloff::token::XMLTokenEnum XML_HANDLE
-include/xmloff/xmltoken.hxx:2403
+include/xmloff/xmltoken.hxx:2424
enum xmloff::token::XMLTokenEnum XML_HANDLE_MIRROR_VERTICAL
-include/xmloff/xmltoken.hxx:2404
+include/xmloff/xmltoken.hxx:2425
enum xmloff::token::XMLTokenEnum XML_HANDLE_MIRROR_HORIZONTAL
-include/xmloff/xmltoken.hxx:2405
+include/xmloff/xmltoken.hxx:2426
enum xmloff::token::XMLTokenEnum XML_HANDLE_SWITCHED
-include/xmloff/xmltoken.hxx:2406
+include/xmloff/xmltoken.hxx:2427
enum xmloff::token::XMLTokenEnum XML_HANDLE_POSITION
-include/xmloff/xmltoken.hxx:2407
+include/xmloff/xmltoken.hxx:2428
enum xmloff::token::XMLTokenEnum XML_HANDLE_RANGE_X_MINIMUM
-include/xmloff/xmltoken.hxx:2408
+include/xmloff/xmltoken.hxx:2429
enum xmloff::token::XMLTokenEnum XML_HANDLE_RANGE_X_MAXIMUM
-include/xmloff/xmltoken.hxx:2409
+include/xmloff/xmltoken.hxx:2430
enum xmloff::token::XMLTokenEnum XML_HANDLE_RANGE_Y_MINIMUM
-include/xmloff/xmltoken.hxx:2410
+include/xmloff/xmltoken.hxx:2431
enum xmloff::token::XMLTokenEnum XML_HANDLE_RANGE_Y_MAXIMUM
-include/xmloff/xmltoken.hxx:2411
+include/xmloff/xmltoken.hxx:2432
enum xmloff::token::XMLTokenEnum XML_HANDLE_POLAR
-include/xmloff/xmltoken.hxx:2412
+include/xmloff/xmltoken.hxx:2433
enum xmloff::token::XMLTokenEnum XML_HANDLE_RADIUS_RANGE_MINIMUM
-include/xmloff/xmltoken.hxx:2413
+include/xmloff/xmltoken.hxx:2434
enum xmloff::token::XMLTokenEnum XML_HANDLE_RADIUS_RANGE_MAXIMUM
-include/xmloff/xmltoken.hxx:2414
+include/xmloff/xmltoken.hxx:2435
enum xmloff::token::XMLTokenEnum XML_RECTANGLE
-include/xmloff/xmltoken.hxx:2415
+include/xmloff/xmltoken.hxx:2436
enum xmloff::token::XMLTokenEnum XML_ROUNDRECTANGLE
-include/xmloff/xmltoken.hxx:2416
+include/xmloff/xmltoken.hxx:2437
enum xmloff::token::XMLTokenEnum XML_OVAL
-include/xmloff/xmltoken.hxx:2417
+include/xmloff/xmltoken.hxx:2438
enum xmloff::token::XMLTokenEnum XML_CLOUD
-include/xmloff/xmltoken.hxx:2418
+include/xmloff/xmltoken.hxx:2439
enum xmloff::token::XMLTokenEnum XML_BOUNDINGCUBE
-include/xmloff/xmltoken.hxx:2419
+include/xmloff/xmltoken.hxx:2440
enum xmloff::token::XMLTokenEnum XML_WIREFRAME
-include/xmloff/xmltoken.hxx:2420
+include/xmloff/xmltoken.hxx:2441
enum xmloff::token::XMLTokenEnum XML_SEGMENTS
-include/xmloff/xmltoken.hxx:2421
+include/xmloff/xmltoken.hxx:2442
enum xmloff::token::XMLTokenEnum XML_WORD_WRAP
-include/xmloff/xmltoken.hxx:2423
+include/xmloff/xmltoken.hxx:2444
enum xmloff::token::XMLTokenEnum XML_COLLAPSING
-include/xmloff/xmltoken.hxx:2424
+include/xmloff/xmltoken.hxx:2445
enum xmloff::token::XMLTokenEnum XML_SEPARATING
-include/xmloff/xmltoken.hxx:2425
+include/xmloff/xmltoken.hxx:2446
enum xmloff::token::XMLTokenEnum XML_BORDER_MODEL
-include/xmloff/xmltoken.hxx:2427
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_FIELD_REFERENCE
-include/xmloff/xmltoken.hxx:2428
+include/xmloff/xmltoken.hxx:2449
enum xmloff::token::XMLTokenEnum XML_MEMBER_DIFFERENCE
-include/xmloff/xmltoken.hxx:2429
+include/xmloff/xmltoken.hxx:2450
enum xmloff::token::XMLTokenEnum XML_MEMBER_PERCENTAGE
-include/xmloff/xmltoken.hxx:2430
+include/xmloff/xmltoken.hxx:2451
enum xmloff::token::XMLTokenEnum XML_MEMBER_PERCENTAGE_DIFFERENCE
-include/xmloff/xmltoken.hxx:2431
+include/xmloff/xmltoken.hxx:2452
enum xmloff::token::XMLTokenEnum XML_RUNNING_TOTAL
-include/xmloff/xmltoken.hxx:2432
+include/xmloff/xmltoken.hxx:2453
enum xmloff::token::XMLTokenEnum XML_ROW_PERCENTAGE
-include/xmloff/xmltoken.hxx:2433
+include/xmloff/xmltoken.hxx:2454
enum xmloff::token::XMLTokenEnum XML_COLUMN_PERCENTAGE
-include/xmloff/xmltoken.hxx:2434
+include/xmloff/xmltoken.hxx:2455
enum xmloff::token::XMLTokenEnum XML_TOTAL_PERCENTAGE
-include/xmloff/xmltoken.hxx:2435
- enum xmloff::token::XMLTokenEnum XML_FIELD_NAME
-include/xmloff/xmltoken.hxx:2436
- enum xmloff::token::XMLTokenEnum XML_MEMBER_TYPE
-include/xmloff/xmltoken.hxx:2437
+include/xmloff/xmltoken.hxx:2458
enum xmloff::token::XMLTokenEnum XML_NAMED
-include/xmloff/xmltoken.hxx:2438
- enum xmloff::token::XMLTokenEnum XML_MEMBER_NAME
-include/xmloff/xmltoken.hxx:2439
- enum xmloff::token::XMLTokenEnum XML_DISPLAY_MEMBER_MODE
-include/xmloff/xmltoken.hxx:2440
- enum xmloff::token::XMLTokenEnum XML_MEMBER_COUNT
-include/xmloff/xmltoken.hxx:2441
- enum xmloff::token::XMLTokenEnum XML_DATA_FIELD
-include/xmloff/xmltoken.hxx:2442
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_DISPLAY_INFO
-include/xmloff/xmltoken.hxx:2443
- enum xmloff::token::XMLTokenEnum XML_SORT_MODE
-include/xmloff/xmltoken.hxx:2444
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_SORT_INFO
-include/xmloff/xmltoken.hxx:2445
- enum xmloff::token::XMLTokenEnum XML_ADD_EMPTY_LINES
-include/xmloff/xmltoken.hxx:2446
+include/xmloff/xmltoken.hxx:2467
enum xmloff::token::XMLTokenEnum XML_TABULAR_LAYOUT
-include/xmloff/xmltoken.hxx:2447
+include/xmloff/xmltoken.hxx:2468
enum xmloff::token::XMLTokenEnum XML_OUTLINE_SUBTOTALS_TOP
-include/xmloff/xmltoken.hxx:2448
+include/xmloff/xmltoken.hxx:2469
enum xmloff::token::XMLTokenEnum XML_OUTLINE_SUBTOTALS_BOTTOM
-include/xmloff/xmltoken.hxx:2449
- enum xmloff::token::XMLTokenEnum XML_LAYOUT_MODE
-include/xmloff/xmltoken.hxx:2450
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_LAYOUT_INFO
-include/xmloff/xmltoken.hxx:2452
+include/xmloff/xmltoken.hxx:2473
enum xmloff::token::XMLTokenEnum XML_SYMBOL_COLOR
-include/xmloff/xmltoken.hxx:2454
+include/xmloff/xmltoken.hxx:2475
enum xmloff::token::XMLTokenEnum XML_3D
-include/xmloff/xmltoken.hxx:2455
+include/xmloff/xmltoken.hxx:2476
enum xmloff::token::XMLTokenEnum XML_IMAGE_POSITION
-include/xmloff/xmltoken.hxx:2456
+include/xmloff/xmltoken.hxx:2477
enum xmloff::token::XMLTokenEnum XML_IMAGE_ALIGN
-include/xmloff/xmltoken.hxx:2458
+include/xmloff/xmltoken.hxx:2479
enum xmloff::token::XMLTokenEnum XML_DIAGONAL_BL_TR
-include/xmloff/xmltoken.hxx:2459
+include/xmloff/xmltoken.hxx:2480
enum xmloff::token::XMLTokenEnum XML_DIAGONAL_BL_TR_WIDTH
-include/xmloff/xmltoken.hxx:2460
+include/xmloff/xmltoken.hxx:2481
enum xmloff::token::XMLTokenEnum XML_DIAGONAL_TL_BR
-include/xmloff/xmltoken.hxx:2461
+include/xmloff/xmltoken.hxx:2482
enum xmloff::token::XMLTokenEnum XML_DIAGONAL_TL_BR_WIDTH
-include/xmloff/xmltoken.hxx:2462
+include/xmloff/xmltoken.hxx:2483
enum xmloff::token::XMLTokenEnum XML_REPEAT_CONTENT
-include/xmloff/xmltoken.hxx:2463
+include/xmloff/xmltoken.hxx:2484
enum xmloff::token::XMLTokenEnum XML_SHRINK_TO_FIT
-include/xmloff/xmltoken.hxx:2468
+include/xmloff/xmltoken.hxx:2489
enum xmloff::token::XMLTokenEnum XML_WRAP_INFLUENCE_ON_POSITION
-include/xmloff/xmltoken.hxx:2470
+include/xmloff/xmltoken.hxx:2491
enum xmloff::token::XMLTokenEnum XML_ONCE_SUCCESSIVE
-include/xmloff/xmltoken.hxx:2471
+include/xmloff/xmltoken.hxx:2492
enum xmloff::token::XMLTokenEnum XML_ONCE_CONCURRENT
-include/xmloff/xmltoken.hxx:2474
- enum xmloff::token::XMLTokenEnum XML_N_OFFICE_OOO
-include/xmloff/xmltoken.hxx:2475
- enum xmloff::token::XMLTokenEnum XML_N_META_OOO
-include/xmloff/xmltoken.hxx:2476
- enum xmloff::token::XMLTokenEnum XML_N_STYLE_OOO
-include/xmloff/xmltoken.hxx:2477
- enum xmloff::token::XMLTokenEnum XML_N_NUMBER_OOO
-include/xmloff/xmltoken.hxx:2478
- enum xmloff::token::XMLTokenEnum XML_N_TEXT_OOO
-include/xmloff/xmltoken.hxx:2479
- enum xmloff::token::XMLTokenEnum XML_N_TABLE_OOO
-include/xmloff/xmltoken.hxx:2480
- enum xmloff::token::XMLTokenEnum XML_N_DRAW_OOO
-include/xmloff/xmltoken.hxx:2481
- enum xmloff::token::XMLTokenEnum XML_N_DR3D_OOO
-include/xmloff/xmltoken.hxx:2482
- enum xmloff::token::XMLTokenEnum XML_N_PRESENTATION_OOO
-include/xmloff/xmltoken.hxx:2483
- enum xmloff::token::XMLTokenEnum XML_N_CHART_OOO
-include/xmloff/xmltoken.hxx:2484
- enum xmloff::token::XMLTokenEnum XML_N_CONFIG_OOO
-include/xmloff/xmltoken.hxx:2485
- enum xmloff::token::XMLTokenEnum XML_N_FORM_OOO
-include/xmloff/xmltoken.hxx:2486
- enum xmloff::token::XMLTokenEnum XML_N_SCRIPT_OOO
-include/xmloff/xmltoken.hxx:2488
+include/xmloff/xmltoken.hxx:2509
enum xmloff::token::XMLTokenEnum XML_GLOBAL
-include/xmloff/xmltoken.hxx:2489
+include/xmloff/xmltoken.hxx:2510
enum xmloff::token::XMLTokenEnum XML_NOTE_CLASS
-include/xmloff/xmltoken.hxx:2490
+include/xmloff/xmltoken.hxx:2511
enum xmloff::token::XMLTokenEnum XML_NOTE_CITATION
-include/xmloff/xmltoken.hxx:2491
+include/xmloff/xmltoken.hxx:2512
enum xmloff::token::XMLTokenEnum XML_NOTE_BODY
-include/xmloff/xmltoken.hxx:2494
+include/xmloff/xmltoken.hxx:2515
enum xmloff::token::XMLTokenEnum XML_IS_SUB_TABLE
-include/xmloff/xmltoken.hxx:2495
+include/xmloff/xmltoken.hxx:2516
enum xmloff::token::XMLTokenEnum XML_PAGE_LAYOUT
-include/xmloff/xmltoken.hxx:2496
+include/xmloff/xmltoken.hxx:2517
enum xmloff::token::XMLTokenEnum XML_PAGE_LAYOUT_NAME
-include/xmloff/xmltoken.hxx:2498
+include/xmloff/xmltoken.hxx:2519
enum xmloff::token::XMLTokenEnum XML_DRAWING_PAGE_PROPERTIES
-include/xmloff/xmltoken.hxx:2499
+include/xmloff/xmltoken.hxx:2520
enum xmloff::token::XMLTokenEnum XML_PAGE_LAYOUT_PROPERTIES
-include/xmloff/xmltoken.hxx:2500
+include/xmloff/xmltoken.hxx:2521
enum xmloff::token::XMLTokenEnum XML_HEADER_FOOTER_PROPERTIES
-include/xmloff/xmltoken.hxx:2501
+include/xmloff/xmltoken.hxx:2522
enum xmloff::token::XMLTokenEnum XML_TEXT_PROPERTIES
-include/xmloff/xmltoken.hxx:2502
+include/xmloff/xmltoken.hxx:2523
enum xmloff::token::XMLTokenEnum XML_PARAGRAPH_PROPERTIES
-include/xmloff/xmltoken.hxx:2503
+include/xmloff/xmltoken.hxx:2524
enum xmloff::token::XMLTokenEnum XML_RUBY_PROPERTIES
-include/xmloff/xmltoken.hxx:2504
+include/xmloff/xmltoken.hxx:2525
enum xmloff::token::XMLTokenEnum XML_SECTION_PROPERTIES
-include/xmloff/xmltoken.hxx:2505
+include/xmloff/xmltoken.hxx:2526
enum xmloff::token::XMLTokenEnum XML_TABLE_PROPERTIES
-include/xmloff/xmltoken.hxx:2506
+include/xmloff/xmltoken.hxx:2527
enum xmloff::token::XMLTokenEnum XML_TABLE_COLUMN_PROPERTIES
-include/xmloff/xmltoken.hxx:2507
+include/xmloff/xmltoken.hxx:2528
enum xmloff::token::XMLTokenEnum XML_TABLE_ROW_PROPERTIES
-include/xmloff/xmltoken.hxx:2508
+include/xmloff/xmltoken.hxx:2529
enum xmloff::token::XMLTokenEnum XML_TABLE_CELL_PROPERTIES
-include/xmloff/xmltoken.hxx:2509
+include/xmloff/xmltoken.hxx:2530
enum xmloff::token::XMLTokenEnum XML_LIST_LEVEL_PROPERTIES
-include/xmloff/xmltoken.hxx:2510
+include/xmloff/xmltoken.hxx:2531
enum xmloff::token::XMLTokenEnum XML_CHART_PROPERTIES
-include/xmloff/xmltoken.hxx:2511
+include/xmloff/xmltoken.hxx:2532
enum xmloff::token::XMLTokenEnum XML_DRAWING_PAGE
-include/xmloff/xmltoken.hxx:2513
+include/xmloff/xmltoken.hxx:2534
enum xmloff::token::XMLTokenEnum XML_TAB
-include/xmloff/xmltoken.hxx:2514
+include/xmloff/xmltoken.hxx:2535
enum xmloff::token::XMLTokenEnum XML_TEXT_UNDERLINE_MODE
-include/xmloff/xmltoken.hxx:2515
+include/xmloff/xmltoken.hxx:2536
enum xmloff::token::XMLTokenEnum XML_TEXT_LINE_THROUGH_MODE
-include/xmloff/xmltoken.hxx:2516
+include/xmloff/xmltoken.hxx:2537
enum xmloff::token::XMLTokenEnum XML_CONTINUOUS
-include/xmloff/xmltoken.hxx:2517
+include/xmloff/xmltoken.hxx:2538
enum xmloff::token::XMLTokenEnum XML_SKIP_WHITE_SPACE
-include/xmloff/xmltoken.hxx:2518
+include/xmloff/xmltoken.hxx:2539
enum xmloff::token::XMLTokenEnum XML_SCRIPTS
-include/xmloff/xmltoken.hxx:2519
+include/xmloff/xmltoken.hxx:2540
enum xmloff::token::XMLTokenEnum XML_FONT_FACE_DECLS
-include/xmloff/xmltoken.hxx:2520
+include/xmloff/xmltoken.hxx:2541
enum xmloff::token::XMLTokenEnum XML_FONT_FACE
-include/xmloff/xmltoken.hxx:2521
+include/xmloff/xmltoken.hxx:2542
enum xmloff::token::XMLTokenEnum XML_FONT_FACE_SRC
-include/xmloff/xmltoken.hxx:2522
+include/xmloff/xmltoken.hxx:2543
enum xmloff::token::XMLTokenEnum XML_FONT_FACE_URI
-include/xmloff/xmltoken.hxx:2523
+include/xmloff/xmltoken.hxx:2544
enum xmloff::token::XMLTokenEnum XML_FONT_FACE_FORMAT
-include/xmloff/xmltoken.hxx:2524
+include/xmloff/xmltoken.hxx:2545
enum xmloff::token::XMLTokenEnum XML_FONT_ADORNMENTS
-include/xmloff/xmltoken.hxx:2525
+include/xmloff/xmltoken.hxx:2546
enum xmloff::token::XMLTokenEnum XML_INCH
-include/xmloff/xmltoken.hxx:2526
+include/xmloff/xmltoken.hxx:2547
enum xmloff::token::XMLTokenEnum XML_SPACE_AFTER
-include/xmloff/xmltoken.hxx:2527
+include/xmloff/xmltoken.hxx:2548
enum xmloff::token::XMLTokenEnum XML_START_INDENT
-include/xmloff/xmltoken.hxx:2528
+include/xmloff/xmltoken.hxx:2549
enum xmloff::token::XMLTokenEnum XML_END_INDENT
-include/xmloff/xmltoken.hxx:2531
+include/xmloff/xmltoken.hxx:2552
enum xmloff::token::XMLTokenEnum XML_INTERVAL_MINOR_DIVISOR
-include/xmloff/xmltoken.hxx:2532
+include/xmloff/xmltoken.hxx:2553
enum xmloff::token::XMLTokenEnum XML_DATE_STRING
-include/xmloff/xmltoken.hxx:2534
+include/xmloff/xmltoken.hxx:2555
enum xmloff::token::XMLTokenEnum XML_TEXT_UNDERLINE_STYLE
-include/xmloff/xmltoken.hxx:2535
+include/xmloff/xmltoken.hxx:2556
enum xmloff::token::XMLTokenEnum XML_TEXT_UNDERLINE_TYPE
-include/xmloff/xmltoken.hxx:2536
+include/xmloff/xmltoken.hxx:2557
enum xmloff::token::XMLTokenEnum XML_TEXT_UNDERLINE_WIDTH
-include/xmloff/xmltoken.hxx:2538
+include/xmloff/xmltoken.hxx:2559
enum xmloff::token::XMLTokenEnum XML_TEXT_OVERLINE_TYPE
-include/xmloff/xmltoken.hxx:2539
+include/xmloff/xmltoken.hxx:2560
enum xmloff::token::XMLTokenEnum XML_TEXT_OVERLINE_STYLE
-include/xmloff/xmltoken.hxx:2540
+include/xmloff/xmltoken.hxx:2561
enum xmloff::token::XMLTokenEnum XML_TEXT_OVERLINE_WIDTH
-include/xmloff/xmltoken.hxx:2541
+include/xmloff/xmltoken.hxx:2562
enum xmloff::token::XMLTokenEnum XML_TEXT_OVERLINE_COLOR
-include/xmloff/xmltoken.hxx:2542
+include/xmloff/xmltoken.hxx:2563
enum xmloff::token::XMLTokenEnum XML_TEXT_OVERLINE_MODE
-include/xmloff/xmltoken.hxx:2544
+include/xmloff/xmltoken.hxx:2565
enum xmloff::token::XMLTokenEnum XML_TEXT_LINE_THROUGH_STYLE
-include/xmloff/xmltoken.hxx:2545
+include/xmloff/xmltoken.hxx:2566
enum xmloff::token::XMLTokenEnum XML_TEXT_LINE_THROUGH_TYPE
-include/xmloff/xmltoken.hxx:2546
+include/xmloff/xmltoken.hxx:2567
enum xmloff::token::XMLTokenEnum XML_TEXT_LINE_THROUGH_WIDTH
-include/xmloff/xmltoken.hxx:2547
+include/xmloff/xmltoken.hxx:2568
enum xmloff::token::XMLTokenEnum XML_TEXT_LINE_THROUGH_TEXT
-include/xmloff/xmltoken.hxx:2549
+include/xmloff/xmltoken.hxx:2570
enum xmloff::token::XMLTokenEnum XML_LEADER_STYLE
-include/xmloff/xmltoken.hxx:2550
+include/xmloff/xmltoken.hxx:2571
enum xmloff::token::XMLTokenEnum XML_LEADER_TEXT
-include/xmloff/xmltoken.hxx:2563
+include/xmloff/xmltoken.hxx:2584
enum xmloff::token::XMLTokenEnum XML_TEXT_LINE_THROUGH_COLOR
-include/xmloff/xmltoken.hxx:2564
+include/xmloff/xmltoken.hxx:2585
enum xmloff::token::XMLTokenEnum XML_TEXT_LINE_THROUGH_TEXT_STYLE
-include/xmloff/xmltoken.hxx:2565
+include/xmloff/xmltoken.hxx:2586
enum xmloff::token::XMLTokenEnum XML_LEADER_COLOR
-include/xmloff/xmltoken.hxx:2566
+include/xmloff/xmltoken.hxx:2587
enum xmloff::token::XMLTokenEnum XML_LEADER_TYPE
-include/xmloff/xmltoken.hxx:2567
+include/xmloff/xmltoken.hxx:2588
enum xmloff::token::XMLTokenEnum XML_LEADER_WIDTH
-include/xmloff/xmltoken.hxx:2568
+include/xmloff/xmltoken.hxx:2589
enum xmloff::token::XMLTokenEnum XML_LEADER_TEXT_STYLE
-include/xmloff/xmltoken.hxx:2571
+include/xmloff/xmltoken.hxx:2592
enum xmloff::token::XMLTokenEnum XML_OPACITY_NAME
-include/xmloff/xmltoken.hxx:2572
+include/xmloff/xmltoken.hxx:2593
enum xmloff::token::XMLTokenEnum XML_SHADOW_OPACITY
-include/xmloff/xmltoken.hxx:2573
+include/xmloff/xmltoken.hxx:2594
enum xmloff::token::XMLTokenEnum XML_ALWAYS
-include/xmloff/xmltoken.hxx:2574
+include/xmloff/xmltoken.hxx:2595
enum xmloff::token::XMLTokenEnum XML_COUNT_IN_TEXT_BOXES
-include/xmloff/xmltoken.hxx:2576
- enum xmloff::token::XMLTokenEnum XML_NP_OOO
-include/xmloff/xmltoken.hxx:2577
- enum xmloff::token::XMLTokenEnum XML_N_OOO
-include/xmloff/xmltoken.hxx:2578
- enum xmloff::token::XMLTokenEnum XML_NP_OOOW
-include/xmloff/xmltoken.hxx:2579
- enum xmloff::token::XMLTokenEnum XML_N_OOOW
-include/xmloff/xmltoken.hxx:2580
- enum xmloff::token::XMLTokenEnum XML_NP_OOOC
-include/xmloff/xmltoken.hxx:2581
- enum xmloff::token::XMLTokenEnum XML_N_OOOC
-include/xmloff/xmltoken.hxx:2582
- enum xmloff::token::XMLTokenEnum XML_NP_DOM
-include/xmloff/xmltoken.hxx:2583
- enum xmloff::token::XMLTokenEnum XML_N_DOM
-include/xmloff/xmltoken.hxx:2585
+include/xmloff/xmltoken.hxx:2606
enum xmloff::token::XMLTokenEnum XML_EVENT_LISTENERS
-include/xmloff/xmltoken.hxx:2586
+include/xmloff/xmltoken.hxx:2607
enum xmloff::token::XMLTokenEnum XML_EVENT_LISTENER
-include/xmloff/xmltoken.hxx:2588
+include/xmloff/xmltoken.hxx:2609
enum xmloff::token::XMLTokenEnum XML_FORM
-include/xmloff/xmltoken.hxx:2589
+include/xmloff/xmltoken.hxx:2610
enum xmloff::token::XMLTokenEnum XML_VOID
-include/xmloff/xmltoken.hxx:2590
+include/xmloff/xmltoken.hxx:2611
enum xmloff::token::XMLTokenEnum XML_PROPERTY
-include/xmloff/xmltoken.hxx:2591
+include/xmloff/xmltoken.hxx:2612
enum xmloff::token::XMLTokenEnum XML_PROPERTY_NAME
-include/xmloff/xmltoken.hxx:2594
+include/xmloff/xmltoken.hxx:2615
enum xmloff::token::XMLTokenEnum XML_COLUMN_STYLE_NAME
-include/xmloff/xmltoken.hxx:2596
+include/xmloff/xmltoken.hxx:2617
enum xmloff::token::XMLTokenEnum XML_TEXTAREA
-include/xmloff/xmltoken.hxx:2597
+include/xmloff/xmltoken.hxx:2618
enum xmloff::token::XMLTokenEnum XML_FIXED_TEXT
-include/xmloff/xmltoken.hxx:2598
+include/xmloff/xmltoken.hxx:2619
enum xmloff::token::XMLTokenEnum XML_FILE
-include/xmloff/xmltoken.hxx:2599
+include/xmloff/xmltoken.hxx:2620
enum xmloff::token::XMLTokenEnum XML_FORMATTED_TEXT
-include/xmloff/xmltoken.hxx:2600
+include/xmloff/xmltoken.hxx:2621
enum xmloff::token::XMLTokenEnum XML_BUTTON
-include/xmloff/xmltoken.hxx:2601
+include/xmloff/xmltoken.hxx:2622
enum xmloff::token::XMLTokenEnum XML_CHECKBOX
-include/xmloff/xmltoken.hxx:2602
+include/xmloff/xmltoken.hxx:2623
enum xmloff::token::XMLTokenEnum XML_RADIO
-include/xmloff/xmltoken.hxx:2603
+include/xmloff/xmltoken.hxx:2624
enum xmloff::token::XMLTokenEnum XML_LISTBOX
-include/xmloff/xmltoken.hxx:2604
+include/xmloff/xmltoken.hxx:2625
enum xmloff::token::XMLTokenEnum XML_COMBOBOX
-include/xmloff/xmltoken.hxx:2605
+include/xmloff/xmltoken.hxx:2626
enum xmloff::token::XMLTokenEnum XML_IMAGE_FRAME
-include/xmloff/xmltoken.hxx:2606
+include/xmloff/xmltoken.hxx:2627
enum xmloff::token::XMLTokenEnum XML_VALUE_RANGE
-include/xmloff/xmltoken.hxx:2607
+include/xmloff/xmltoken.hxx:2628
enum xmloff::token::XMLTokenEnum XML_GENERIC_CONTROL
-include/xmloff/xmltoken.hxx:2608
+include/xmloff/xmltoken.hxx:2629
enum xmloff::token::XMLTokenEnum XML_SERVICE_NAME
-include/xmloff/xmltoken.hxx:2609
+include/xmloff/xmltoken.hxx:2630
enum xmloff::token::XMLTokenEnum XML_PROPERTY_TYPE
-include/xmloff/xmltoken.hxx:2610
+include/xmloff/xmltoken.hxx:2631
enum xmloff::token::XMLTokenEnum XML_INTEGER
-include/xmloff/xmltoken.hxx:2611
+include/xmloff/xmltoken.hxx:2632
enum xmloff::token::XMLTokenEnum XML_PROPERTY_IS_VOID
-include/xmloff/xmltoken.hxx:2612
+include/xmloff/xmltoken.hxx:2633
enum xmloff::token::XMLTokenEnum XML_PROPERTY_IS_LIST
-include/xmloff/xmltoken.hxx:2613
+include/xmloff/xmltoken.hxx:2634
enum xmloff::token::XMLTokenEnum XML_PROPERTY_VALUE
-include/xmloff/xmltoken.hxx:2614
+include/xmloff/xmltoken.hxx:2635
enum xmloff::token::XMLTokenEnum XML_MIMETYPE
-include/xmloff/xmltoken.hxx:2615
+include/xmloff/xmltoken.hxx:2636
enum xmloff::token::XMLTokenEnum XML_DATABASE_ROW_SELECT
-include/xmloff/xmltoken.hxx:2616
+include/xmloff/xmltoken.hxx:2637
enum xmloff::token::XMLTokenEnum XML_CONTROL_IMPLEMENTATION
-include/xmloff/xmltoken.hxx:2617
+include/xmloff/xmltoken.hxx:2638
enum xmloff::token::XMLTokenEnum XML_INTERPOLATION
-include/xmloff/xmltoken.hxx:2618
+include/xmloff/xmltoken.hxx:2639
enum xmloff::token::XMLTokenEnum XML_CUBIC_SPLINE
-include/xmloff/xmltoken.hxx:2619
+include/xmloff/xmltoken.hxx:2640
enum xmloff::token::XMLTokenEnum XML_B_SPLINE
-include/xmloff/xmltoken.hxx:2620
+include/xmloff/xmltoken.hxx:2641
enum xmloff::token::XMLTokenEnum XML_STEP_START
-include/xmloff/xmltoken.hxx:2621
+include/xmloff/xmltoken.hxx:2642
enum xmloff::token::XMLTokenEnum XML_STEP_END
-include/xmloff/xmltoken.hxx:2622
+include/xmloff/xmltoken.hxx:2643
enum xmloff::token::XMLTokenEnum XML_STEP_CENTER_X
-include/xmloff/xmltoken.hxx:2623
+include/xmloff/xmltoken.hxx:2644
enum xmloff::token::XMLTokenEnum XML_STEP_CENTER_Y
-include/xmloff/xmltoken.hxx:2624
+include/xmloff/xmltoken.hxx:2645
enum xmloff::token::XMLTokenEnum XML_GNM_STEP_START
-include/xmloff/xmltoken.hxx:2625
+include/xmloff/xmltoken.hxx:2646
enum xmloff::token::XMLTokenEnum XML_GNM_STEP_END
-include/xmloff/xmltoken.hxx:2626
+include/xmloff/xmltoken.hxx:2647
enum xmloff::token::XMLTokenEnum XML_GNM_STEP_CENTER_X
-include/xmloff/xmltoken.hxx:2627
+include/xmloff/xmltoken.hxx:2648
enum xmloff::token::XMLTokenEnum XML_GNM_STEP_CENTER_Y
-include/xmloff/xmltoken.hxx:2628
- enum xmloff::token::XMLTokenEnum XML_N_DB_OASIS
-include/xmloff/xmltoken.hxx:2630
- enum xmloff::token::XMLTokenEnum XML_SHOW_FILTER_BUTTON
-include/xmloff/xmltoken.hxx:2631
- enum xmloff::token::XMLTokenEnum XML_DRILL_DOWN_ON_DOUBLE_CLICK
-include/xmloff/xmltoken.hxx:2632
- enum xmloff::token::XMLTokenEnum XML_HEADER_GRID_LAYOUT
-include/xmloff/xmltoken.hxx:2633
- enum xmloff::token::XMLTokenEnum XML_GROUPED_BY
-include/xmloff/xmltoken.hxx:2634
+include/xmloff/xmltoken.hxx:2655
enum xmloff::token::XMLTokenEnum XML_DAYS
-include/xmloff/xmltoken.hxx:2635
+include/xmloff/xmltoken.hxx:2656
enum xmloff::token::XMLTokenEnum XML_MONTHS
-include/xmloff/xmltoken.hxx:2636
+include/xmloff/xmltoken.hxx:2657
enum xmloff::token::XMLTokenEnum XML_QUARTERS
-include/xmloff/xmltoken.hxx:2637
+include/xmloff/xmltoken.hxx:2658
enum xmloff::token::XMLTokenEnum XML_YEARS
-include/xmloff/xmltoken.hxx:2638
- enum xmloff::token::XMLTokenEnum XML_DATE_START
-include/xmloff/xmltoken.hxx:2639
- enum xmloff::token::XMLTokenEnum XML_DATE_END
-include/xmloff/xmltoken.hxx:2640
- enum xmloff::token::XMLTokenEnum XML_STEP
-include/xmloff/xmltoken.hxx:2641
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_GROUPS
-include/xmloff/xmltoken.hxx:2642
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_GROUP
-include/xmloff/xmltoken.hxx:2643
- enum xmloff::token::XMLTokenEnum XML_DATA_PILOT_GROUP_MEMBER
-include/xmloff/xmltoken.hxx:2645
+include/xmloff/xmltoken.hxx:2666
enum xmloff::token::XMLTokenEnum XML_JAPANESE_CANDLE_STICK
-include/xmloff/xmltoken.hxx:2646
+include/xmloff/xmltoken.hxx:2667
enum xmloff::token::XMLTokenEnum XML_NAMED_SYMBOL
-include/xmloff/xmltoken.hxx:2647
+include/xmloff/xmltoken.hxx:2668
enum xmloff::token::XMLTokenEnum XML_DIAMOND
-include/xmloff/xmltoken.hxx:2648
+include/xmloff/xmltoken.hxx:2669
enum xmloff::token::XMLTokenEnum XML_ARROW_DOWN
-include/xmloff/xmltoken.hxx:2649
+include/xmloff/xmltoken.hxx:2670
enum xmloff::token::XMLTokenEnum XML_ARROW_UP
-include/xmloff/xmltoken.hxx:2650
+include/xmloff/xmltoken.hxx:2671
enum xmloff::token::XMLTokenEnum XML_ARROW_RIGHT
-include/xmloff/xmltoken.hxx:2651
+include/xmloff/xmltoken.hxx:2672
enum xmloff::token::XMLTokenEnum XML_ARROW_LEFT
-include/xmloff/xmltoken.hxx:2652
+include/xmloff/xmltoken.hxx:2673
enum xmloff::token::XMLTokenEnum XML_BOW_TIE
-include/xmloff/xmltoken.hxx:2653
+include/xmloff/xmltoken.hxx:2674
enum xmloff::token::XMLTokenEnum XML_HOURGLASS
-include/xmloff/xmltoken.hxx:2654
+include/xmloff/xmltoken.hxx:2675
enum xmloff::token::XMLTokenEnum XML_SYMBOL_NAME
-include/xmloff/xmltoken.hxx:2655
+include/xmloff/xmltoken.hxx:2676
enum xmloff::token::XMLTokenEnum XML_SYMBOL_TYPE
-include/xmloff/xmltoken.hxx:2656
+include/xmloff/xmltoken.hxx:2677
enum xmloff::token::XMLTokenEnum XML_IMAGE_OPACITY
-include/xmloff/xmltoken.hxx:2658
+include/xmloff/xmltoken.hxx:2679
enum xmloff::token::XMLTokenEnum XML_DEFAULT_OUTLINE_LEVEL
-include/xmloff/xmltoken.hxx:2659
- enum xmloff::token::XMLTokenEnum XML_SHOW_DETAILS
-include/xmloff/xmltoken.hxx:2660
- enum xmloff::token::XMLTokenEnum XML_SHOW_EMPTY
-include/xmloff/xmltoken.hxx:2661
- enum xmloff::token::XMLTokenEnum XML_REPEAT_ITEM_LABELS
-include/xmloff/xmltoken.hxx:2662
+include/xmloff/xmltoken.hxx:2683
enum xmloff::token::XMLTokenEnum XML_ITERATIVE
-include/xmloff/xmltoken.hxx:2664
- enum xmloff::token::XMLTokenEnum XML_NP_DLG
-include/xmloff/xmltoken.hxx:2665
- enum xmloff::token::XMLTokenEnum XML_N_DLG
-include/xmloff/xmltoken.hxx:2666
+include/xmloff/xmltoken.hxx:2687
enum xmloff::token::XMLTokenEnum XML_SCRIPT_DATA
-include/xmloff/xmltoken.hxx:2667
+include/xmloff/xmltoken.hxx:2688
enum xmloff::token::XMLTokenEnum XML_LIBRARIES
-include/xmloff/xmltoken.hxx:2668
+include/xmloff/xmltoken.hxx:2689
enum xmloff::token::XMLTokenEnum XML_SOURCE_CODE
-include/xmloff/xmltoken.hxx:2672
+include/xmloff/xmltoken.hxx:2693
enum xmloff::token::XMLTokenEnum XML_DIMENSION
-include/xmloff/xmltoken.hxx:2673
+include/xmloff/xmltoken.hxx:2694
enum xmloff::token::XMLTokenEnum XML_VALIDATION_NAME
-include/xmloff/xmltoken.hxx:2675
+include/xmloff/xmltoken.hxx:2696
enum xmloff::token::XMLTokenEnum XML_SCREEN
-include/xmloff/xmltoken.hxx:2676
+include/xmloff/xmltoken.hxx:2697
enum xmloff::token::XMLTokenEnum XML_PRINTER
-include/xmloff/xmltoken.hxx:2681
+include/xmloff/xmltoken.hxx:2702
enum xmloff::token::XMLTokenEnum XML_MODEL
-include/xmloff/xmltoken.hxx:2698
+include/xmloff/xmltoken.hxx:2719
enum xmloff::token::XMLTokenEnum XML_MAXOCCURS
-include/xmloff/xmltoken.hxx:2699
+include/xmloff/xmltoken.hxx:2720
enum xmloff::token::XMLTokenEnum XML_MINOCCURS
-include/xmloff/xmltoken.hxx:2700
+include/xmloff/xmltoken.hxx:2721
enum xmloff::token::XMLTokenEnum XML_P3PTYPE
-include/xmloff/xmltoken.hxx:2707
+include/xmloff/xmltoken.hxx:2728
enum xmloff::token::XMLTokenEnum XML_TARGETNAMESPACE
-include/xmloff/xmltoken.hxx:2717
+include/xmloff/xmltoken.hxx:2738
enum xmloff::token::XMLTokenEnum XML_ENUMERATION
-include/xmloff/xmltoken.hxx:2721
+include/xmloff/xmltoken.hxx:2742
enum xmloff::token::XMLTokenEnum XML_PRESERVE
-include/xmloff/xmltoken.hxx:2724
+include/xmloff/xmltoken.hxx:2745
enum xmloff::token::XMLTokenEnum XML_MAIN_ETRY
-include/xmloff/xmltoken.hxx:2727
+include/xmloff/xmltoken.hxx:2748
enum xmloff::token::XMLTokenEnum XML_REMOVE
-include/xmloff/xmltoken.hxx:2728
+include/xmloff/xmltoken.hxx:2749
enum xmloff::token::XMLTokenEnum XML_HOLD
-include/xmloff/xmltoken.hxx:2729
+include/xmloff/xmltoken.hxx:2750
enum xmloff::token::XMLTokenEnum XML_TRANSITION
-include/xmloff/xmltoken.hxx:2730
+include/xmloff/xmltoken.hxx:2751
enum xmloff::token::XMLTokenEnum XML_INHERIT
-include/xmloff/xmltoken.hxx:2731
+include/xmloff/xmltoken.hxx:2752
enum xmloff::token::XMLTokenEnum XML_FILLDEFAULT
-include/xmloff/xmltoken.hxx:2732
+include/xmloff/xmltoken.hxx:2753
enum xmloff::token::XMLTokenEnum XML_RESTART
-include/xmloff/xmltoken.hxx:2733
+include/xmloff/xmltoken.hxx:2754
enum xmloff::token::XMLTokenEnum XML_RESTARTDEFAULT
-include/xmloff/xmltoken.hxx:2734
+include/xmloff/xmltoken.hxx:2755
enum xmloff::token::XMLTokenEnum XML_WHENNOTACTIVE
-include/xmloff/xmltoken.hxx:2735
+include/xmloff/xmltoken.hxx:2756
enum xmloff::token::XMLTokenEnum XML_NEVER
-include/xmloff/xmltoken.hxx:2736
+include/xmloff/xmltoken.hxx:2757
enum xmloff::token::XMLTokenEnum XML_ACCELERATE
-include/xmloff/xmltoken.hxx:2737
+include/xmloff/xmltoken.hxx:2758
enum xmloff::token::XMLTokenEnum XML_DECELERATE
-include/xmloff/xmltoken.hxx:2738
+include/xmloff/xmltoken.hxx:2759
enum xmloff::token::XMLTokenEnum XML_AUTOREVERSE
-include/xmloff/xmltoken.hxx:2739
+include/xmloff/xmltoken.hxx:2760
enum xmloff::token::XMLTokenEnum XML_INDEFINITE
-include/xmloff/xmltoken.hxx:2740
+include/xmloff/xmltoken.hxx:2761
enum xmloff::token::XMLTokenEnum XML_REPEATCOUNT
-include/xmloff/xmltoken.hxx:2741
+include/xmloff/xmltoken.hxx:2762
enum xmloff::token::XMLTokenEnum XML_REPEATDUR
-include/xmloff/xmltoken.hxx:2742
+include/xmloff/xmltoken.hxx:2763
enum xmloff::token::XMLTokenEnum XML_ENDSYNC
-include/xmloff/xmltoken.hxx:2743
+include/xmloff/xmltoken.hxx:2764
enum xmloff::token::XMLTokenEnum XML_FIRST
-include/xmloff/xmltoken.hxx:2744
+include/xmloff/xmltoken.hxx:2765
enum xmloff::token::XMLTokenEnum XML_LAST
-include/xmloff/xmltoken.hxx:2745
+include/xmloff/xmltoken.hxx:2766
enum xmloff::token::XMLTokenEnum XML_MEDIA
-include/xmloff/xmltoken.hxx:2746
+include/xmloff/xmltoken.hxx:2767
enum xmloff::token::XMLTokenEnum XML_DUR
-include/xmloff/xmltoken.hxx:2747
+include/xmloff/xmltoken.hxx:2768
enum xmloff::token::XMLTokenEnum XML_BEGIN
-include/xmloff/xmltoken.hxx:2748
+include/xmloff/xmltoken.hxx:2769
enum xmloff::token::XMLTokenEnum XML_WHOLE
-include/xmloff/xmltoken.hxx:2749
+include/xmloff/xmltoken.hxx:2770
enum xmloff::token::XMLTokenEnum XML_FROM
-include/xmloff/xmltoken.hxx:2750
+include/xmloff/xmltoken.hxx:2771
enum xmloff::token::XMLTokenEnum XML_TO
-include/xmloff/xmltoken.hxx:2751
+include/xmloff/xmltoken.hxx:2772
enum xmloff::token::XMLTokenEnum XML_BY
-include/xmloff/xmltoken.hxx:2752
+include/xmloff/xmltoken.hxx:2773
enum xmloff::token::XMLTokenEnum XML_VALUES
-include/xmloff/xmltoken.hxx:2753
+include/xmloff/xmltoken.hxx:2774
enum xmloff::token::XMLTokenEnum XML_KEYTIMES
-include/xmloff/xmltoken.hxx:2754
+include/xmloff/xmltoken.hxx:2775
enum xmloff::token::XMLTokenEnum XML_KEYSPLINES
-include/xmloff/xmltoken.hxx:2755
+include/xmloff/xmltoken.hxx:2776
enum xmloff::token::XMLTokenEnum XML_CALCMODE
-include/xmloff/xmltoken.hxx:2756
+include/xmloff/xmltoken.hxx:2777
enum xmloff::token::XMLTokenEnum XML_DISCRETE
-include/xmloff/xmltoken.hxx:2757
+include/xmloff/xmltoken.hxx:2778
enum xmloff::token::XMLTokenEnum XML_PACED
-include/xmloff/xmltoken.hxx:2758
+include/xmloff/xmltoken.hxx:2779
enum xmloff::token::XMLTokenEnum XML_SPLINE
-include/xmloff/xmltoken.hxx:2759
+include/xmloff/xmltoken.hxx:2780
enum xmloff::token::XMLTokenEnum XML_ACCUMULATE
-include/xmloff/xmltoken.hxx:2760
+include/xmloff/xmltoken.hxx:2781
enum xmloff::token::XMLTokenEnum XML_ADDITIVE
-include/xmloff/xmltoken.hxx:2761
+include/xmloff/xmltoken.hxx:2782
enum xmloff::token::XMLTokenEnum XML_MULTIPLY
-include/xmloff/xmltoken.hxx:2762
+include/xmloff/xmltoken.hxx:2783
enum xmloff::token::XMLTokenEnum XML_ANIMATE
-include/xmloff/xmltoken.hxx:2765
+include/xmloff/xmltoken.hxx:2786
enum xmloff::token::XMLTokenEnum XML_ANIMATECOLOR
-include/xmloff/xmltoken.hxx:2767
+include/xmloff/xmltoken.hxx:2788
enum xmloff::token::XMLTokenEnum XML_ATTRIBUTENAME
-include/xmloff/xmltoken.hxx:2769
- enum xmloff::token::XMLTokenEnum XML_NP_SMIL
-include/xmloff/xmltoken.hxx:2770
- enum xmloff::token::XMLTokenEnum XML_N_SMIL
-include/xmloff/xmltoken.hxx:2772
- enum xmloff::token::XMLTokenEnum XML_NP_ANIMATION
-include/xmloff/xmltoken.hxx:2773
- enum xmloff::token::XMLTokenEnum XML_N_ANIMATION
-include/xmloff/xmltoken.hxx:2775
+include/xmloff/xmltoken.hxx:2796
enum xmloff::token::XMLTokenEnum XML_PAR
-include/xmloff/xmltoken.hxx:2776
+include/xmloff/xmltoken.hxx:2797
enum xmloff::token::XMLTokenEnum XML_SEQ
-include/xmloff/xmltoken.hxx:2782
+include/xmloff/xmltoken.hxx:2803
enum xmloff::token::XMLTokenEnum XML_AUDIO
-include/xmloff/xmltoken.hxx:2784
+include/xmloff/xmltoken.hxx:2805
enum xmloff::token::XMLTokenEnum XML_COLOR_INTERPOLATION
-include/xmloff/xmltoken.hxx:2785
+include/xmloff/xmltoken.hxx:2806
enum xmloff::token::XMLTokenEnum XML_COLOR_INTERPOLATION_DIRECTION
-include/xmloff/xmltoken.hxx:2786
+include/xmloff/xmltoken.hxx:2807
enum xmloff::token::XMLTokenEnum XML_HSL
-include/xmloff/xmltoken.hxx:2787
+include/xmloff/xmltoken.hxx:2808
enum xmloff::token::XMLTokenEnum XML_RGB
-include/xmloff/xmltoken.hxx:2789
+include/xmloff/xmltoken.hxx:2810
enum xmloff::token::XMLTokenEnum XML_BARWIPE
-include/xmloff/xmltoken.hxx:2790
+include/xmloff/xmltoken.hxx:2811
enum xmloff::token::XMLTokenEnum XML_BOXWIPE
-include/xmloff/xmltoken.hxx:2791
+include/xmloff/xmltoken.hxx:2812
enum xmloff::token::XMLTokenEnum XML_FOURBOXWIPE
-include/xmloff/xmltoken.hxx:2792
+include/xmloff/xmltoken.hxx:2813
enum xmloff::token::XMLTokenEnum XML_BARNDOORWIPE
-include/xmloff/xmltoken.hxx:2793
+include/xmloff/xmltoken.hxx:2814
enum xmloff::token::XMLTokenEnum XML_DIAGONALWIPE
-include/xmloff/xmltoken.hxx:2794
+include/xmloff/xmltoken.hxx:2815
enum xmloff::token::XMLTokenEnum XML_BOWTIEWIPE
-include/xmloff/xmltoken.hxx:2795
+include/xmloff/xmltoken.hxx:2816
enum xmloff::token::XMLTokenEnum XML_MISCDIAGONALWIPE
-include/xmloff/xmltoken.hxx:2796
+include/xmloff/xmltoken.hxx:2817
enum xmloff::token::XMLTokenEnum XML_VEEWIPE
-include/xmloff/xmltoken.hxx:2797
+include/xmloff/xmltoken.hxx:2818
enum xmloff::token::XMLTokenEnum XML_BARNVEEWIPE
-include/xmloff/xmltoken.hxx:2798
+include/xmloff/xmltoken.hxx:2819
enum xmloff::token::XMLTokenEnum XML_ZIGZAGWIPE
-include/xmloff/xmltoken.hxx:2799
+include/xmloff/xmltoken.hxx:2820
enum xmloff::token::XMLTokenEnum XML_BARNZIGZAGWIPE
-include/xmloff/xmltoken.hxx:2800
+include/xmloff/xmltoken.hxx:2821
enum xmloff::token::XMLTokenEnum XML_IRISWIPE
-include/xmloff/xmltoken.hxx:2801
+include/xmloff/xmltoken.hxx:2822
enum xmloff::token::XMLTokenEnum XML_TRIANGLEWIPE
-include/xmloff/xmltoken.hxx:2802
+include/xmloff/xmltoken.hxx:2823
enum xmloff::token::XMLTokenEnum XML_ARROWHEADWIPE
-include/xmloff/xmltoken.hxx:2803
+include/xmloff/xmltoken.hxx:2824
enum xmloff::token::XMLTokenEnum XML_PENTAGONWIPE
-include/xmloff/xmltoken.hxx:2804
+include/xmloff/xmltoken.hxx:2825
enum xmloff::token::XMLTokenEnum XML_HEXAGONWIPE
-include/xmloff/xmltoken.hxx:2805
+include/xmloff/xmltoken.hxx:2826
enum xmloff::token::XMLTokenEnum XML_ELLIPSEWIPE
-include/xmloff/xmltoken.hxx:2806
+include/xmloff/xmltoken.hxx:2827
enum xmloff::token::XMLTokenEnum XML_EYEWIPE
-include/xmloff/xmltoken.hxx:2807
+include/xmloff/xmltoken.hxx:2828
enum xmloff::token::XMLTokenEnum XML_ROUNDRECTWIPE
-include/xmloff/xmltoken.hxx:2808
+include/xmloff/xmltoken.hxx:2829
enum xmloff::token::XMLTokenEnum XML_STARWIPE
-include/xmloff/xmltoken.hxx:2809
+include/xmloff/xmltoken.hxx:2830
enum xmloff::token::XMLTokenEnum XML_MISCSHAPEWIPE
-include/xmloff/xmltoken.hxx:2810
+include/xmloff/xmltoken.hxx:2831
enum xmloff::token::XMLTokenEnum XML_CLOCKWIPE
-include/xmloff/xmltoken.hxx:2811
+include/xmloff/xmltoken.hxx:2832
enum xmloff::token::XMLTokenEnum XML_PINWHEELWIPE
-include/xmloff/xmltoken.hxx:2812
+include/xmloff/xmltoken.hxx:2833
enum xmloff::token::XMLTokenEnum XML_SINGLESWEEPWIPE
-include/xmloff/xmltoken.hxx:2813
+include/xmloff/xmltoken.hxx:2834
enum xmloff::token::XMLTokenEnum XML_FANWIPE
-include/xmloff/xmltoken.hxx:2814
+include/xmloff/xmltoken.hxx:2835
enum xmloff::token::XMLTokenEnum XML_DOUBLEFANWIPE
-include/xmloff/xmltoken.hxx:2815
+include/xmloff/xmltoken.hxx:2836
enum xmloff::token::XMLTokenEnum XML_DOUBLESWEEPWIPE
-include/xmloff/xmltoken.hxx:2816
+include/xmloff/xmltoken.hxx:2837
enum xmloff::token::XMLTokenEnum XML_SALOONDOORWIPE
-include/xmloff/xmltoken.hxx:2817
+include/xmloff/xmltoken.hxx:2838
enum xmloff::token::XMLTokenEnum XML_WINDSHIELDWIPE
-include/xmloff/xmltoken.hxx:2818
+include/xmloff/xmltoken.hxx:2839
enum xmloff::token::XMLTokenEnum XML_SNAKEWIPE
-include/xmloff/xmltoken.hxx:2819
+include/xmloff/xmltoken.hxx:2840
enum xmloff::token::XMLTokenEnum XML_SPIRALWIPE
-include/xmloff/xmltoken.hxx:2820
+include/xmloff/xmltoken.hxx:2841
enum xmloff::token::XMLTokenEnum XML_PARALLELSNAKESWIPE
-include/xmloff/xmltoken.hxx:2821
+include/xmloff/xmltoken.hxx:2842
enum xmloff::token::XMLTokenEnum XML_BOXSNAKESWIPE
-include/xmloff/xmltoken.hxx:2822
+include/xmloff/xmltoken.hxx:2843
enum xmloff::token::XMLTokenEnum XML_WATERFALLWIPE
-include/xmloff/xmltoken.hxx:2823
+include/xmloff/xmltoken.hxx:2844
enum xmloff::token::XMLTokenEnum XML_PUSHWIPE
-include/xmloff/xmltoken.hxx:2824
+include/xmloff/xmltoken.hxx:2845
enum xmloff::token::XMLTokenEnum XML_SLIDEWIPE
-include/xmloff/xmltoken.hxx:2825
+include/xmloff/xmltoken.hxx:2846
enum xmloff::token::XMLTokenEnum XML_BLINDSWIPE
-include/xmloff/xmltoken.hxx:2826
+include/xmloff/xmltoken.hxx:2847
enum xmloff::token::XMLTokenEnum XML_RANDOMBARWIPE
-include/xmloff/xmltoken.hxx:2827
+include/xmloff/xmltoken.hxx:2848
enum xmloff::token::XMLTokenEnum XML_CHECKERBOARDWIPE
-include/xmloff/xmltoken.hxx:2828
+include/xmloff/xmltoken.hxx:2849
enum xmloff::token::XMLTokenEnum XML_ZOOM
-include/xmloff/xmltoken.hxx:2830
+include/xmloff/xmltoken.hxx:2851
enum xmloff::token::XMLTokenEnum XML_LEFTTORIGHT
-include/xmloff/xmltoken.hxx:2831
+include/xmloff/xmltoken.hxx:2852
enum xmloff::token::XMLTokenEnum XML_TOPTOBOTTOM
-include/xmloff/xmltoken.hxx:2832
+include/xmloff/xmltoken.hxx:2853
enum xmloff::token::XMLTokenEnum XML_TOPLEFT
-include/xmloff/xmltoken.hxx:2833
+include/xmloff/xmltoken.hxx:2854
enum xmloff::token::XMLTokenEnum XML_TOPRIGHT
-include/xmloff/xmltoken.hxx:2834
+include/xmloff/xmltoken.hxx:2855
enum xmloff::token::XMLTokenEnum XML_BOTTOMRIGHT
-include/xmloff/xmltoken.hxx:2835
+include/xmloff/xmltoken.hxx:2856
enum xmloff::token::XMLTokenEnum XML_BOTTOMLEFT
-include/xmloff/xmltoken.hxx:2836
+include/xmloff/xmltoken.hxx:2857
enum xmloff::token::XMLTokenEnum XML_TOPCENTER
-include/xmloff/xmltoken.hxx:2837
+include/xmloff/xmltoken.hxx:2858
enum xmloff::token::XMLTokenEnum XML_RIGHTCENTER
-include/xmloff/xmltoken.hxx:2838
+include/xmloff/xmltoken.hxx:2859
enum xmloff::token::XMLTokenEnum XML_BOTTOMCENTER
-include/xmloff/xmltoken.hxx:2839
+include/xmloff/xmltoken.hxx:2860
enum xmloff::token::XMLTokenEnum XML_LEFTCENTER
-include/xmloff/xmltoken.hxx:2840
+include/xmloff/xmltoken.hxx:2861
enum xmloff::token::XMLTokenEnum XML_CORNERSIN
-include/xmloff/xmltoken.hxx:2841
+include/xmloff/xmltoken.hxx:2862
enum xmloff::token::XMLTokenEnum XML_CORNERSOUT
-include/xmloff/xmltoken.hxx:2842
+include/xmloff/xmltoken.hxx:2863
enum xmloff::token::XMLTokenEnum XML_DIAGONALBOTTOMLEFT
-include/xmloff/xmltoken.hxx:2843
+include/xmloff/xmltoken.hxx:2864
enum xmloff::token::XMLTokenEnum XML_DIAGONALTOPLEFT
-include/xmloff/xmltoken.hxx:2844
+include/xmloff/xmltoken.hxx:2865
enum xmloff::token::XMLTokenEnum XML_DOUBLEBARNDOOR
-include/xmloff/xmltoken.hxx:2845
+include/xmloff/xmltoken.hxx:2866
enum xmloff::token::XMLTokenEnum XML_DOUBLEDIAMOND
-include/xmloff/xmltoken.hxx:2846
+include/xmloff/xmltoken.hxx:2867
enum xmloff::token::XMLTokenEnum XML_FOURPOINT
-include/xmloff/xmltoken.hxx:2847
+include/xmloff/xmltoken.hxx:2868
enum xmloff::token::XMLTokenEnum XML_FIVEPOINT
-include/xmloff/xmltoken.hxx:2848
+include/xmloff/xmltoken.hxx:2869
enum xmloff::token::XMLTokenEnum XML_SIXPOINT
-include/xmloff/xmltoken.hxx:2849
+include/xmloff/xmltoken.hxx:2870
enum xmloff::token::XMLTokenEnum XML_HEART
-include/xmloff/xmltoken.hxx:2850
+include/xmloff/xmltoken.hxx:2871
enum xmloff::token::XMLTokenEnum XML_KEYHOLE
-include/xmloff/xmltoken.hxx:2851
+include/xmloff/xmltoken.hxx:2872
enum xmloff::token::XMLTokenEnum XML_CLOCKWISETWELVE
-include/xmloff/xmltoken.hxx:2852
+include/xmloff/xmltoken.hxx:2873
enum xmloff::token::XMLTokenEnum XML_CLOCKWISETHREE
-include/xmloff/xmltoken.hxx:2853
+include/xmloff/xmltoken.hxx:2874
enum xmloff::token::XMLTokenEnum XML_CLOCKWISESIX
-include/xmloff/xmltoken.hxx:2854
+include/xmloff/xmltoken.hxx:2875
enum xmloff::token::XMLTokenEnum XML_CLOCKWISENINE
-include/xmloff/xmltoken.hxx:2855
+include/xmloff/xmltoken.hxx:2876
enum xmloff::token::XMLTokenEnum XML_TWOBLADEVERTICAL
-include/xmloff/xmltoken.hxx:2856
+include/xmloff/xmltoken.hxx:2877
enum xmloff::token::XMLTokenEnum XML_TWOBLADEHORIZONTAL
-include/xmloff/xmltoken.hxx:2857
+include/xmloff/xmltoken.hxx:2878
enum xmloff::token::XMLTokenEnum XML_FOURBLADE
-include/xmloff/xmltoken.hxx:2858
+include/xmloff/xmltoken.hxx:2879
enum xmloff::token::XMLTokenEnum XML_CLOCKWISETOP
-include/xmloff/xmltoken.hxx:2859
+include/xmloff/xmltoken.hxx:2880
enum xmloff::token::XMLTokenEnum XML_CLOCKWISERIGHT
-include/xmloff/xmltoken.hxx:2860
+include/xmloff/xmltoken.hxx:2881
enum xmloff::token::XMLTokenEnum XML_CLOCKWISEBOTTOM
-include/xmloff/xmltoken.hxx:2861
+include/xmloff/xmltoken.hxx:2882
enum xmloff::token::XMLTokenEnum XML_CLOCKWISELEFT
-include/xmloff/xmltoken.hxx:2862
+include/xmloff/xmltoken.hxx:2883
enum xmloff::token::XMLTokenEnum XML_CLOCKWISETOPLEFT
-include/xmloff/xmltoken.hxx:2863
+include/xmloff/xmltoken.hxx:2884
enum xmloff::token::XMLTokenEnum XML_COUNTERCLOCKWISEBOTTOMLEFT
-include/xmloff/xmltoken.hxx:2864
+include/xmloff/xmltoken.hxx:2885
enum xmloff::token::XMLTokenEnum XML_CLOCKWISEBOTTOMRIGHT
-include/xmloff/xmltoken.hxx:2865
+include/xmloff/xmltoken.hxx:2886
enum xmloff::token::XMLTokenEnum XML_COUNTERCLOCKWISETOPRIGHT
-include/xmloff/xmltoken.hxx:2866
+include/xmloff/xmltoken.hxx:2887
enum xmloff::token::XMLTokenEnum XML_CENTERTOP
-include/xmloff/xmltoken.hxx:2867
+include/xmloff/xmltoken.hxx:2888
enum xmloff::token::XMLTokenEnum XML_CENTERRIGHT
-include/xmloff/xmltoken.hxx:2868
+include/xmloff/xmltoken.hxx:2889
enum xmloff::token::XMLTokenEnum XML_FANOUTVERTICAL
-include/xmloff/xmltoken.hxx:2869
+include/xmloff/xmltoken.hxx:2890
enum xmloff::token::XMLTokenEnum XML_FANOUTHORIZONTAL
-include/xmloff/xmltoken.hxx:2870
+include/xmloff/xmltoken.hxx:2891
enum xmloff::token::XMLTokenEnum XML_FANINVERTICAL
-include/xmloff/xmltoken.hxx:2871
+include/xmloff/xmltoken.hxx:2892
enum xmloff::token::XMLTokenEnum XML_FANINHORIZONTAL
-include/xmloff/xmltoken.hxx:2872
+include/xmloff/xmltoken.hxx:2893
enum xmloff::token::XMLTokenEnum XML_PARALLELVERTICAL
-include/xmloff/xmltoken.hxx:2873
+include/xmloff/xmltoken.hxx:2894
enum xmloff::token::XMLTokenEnum XML_PARALLELDIAGONAL
-include/xmloff/xmltoken.hxx:2874
+include/xmloff/xmltoken.hxx:2895
enum xmloff::token::XMLTokenEnum XML_OPPOSITEVERTICAL
-include/xmloff/xmltoken.hxx:2875
+include/xmloff/xmltoken.hxx:2896
enum xmloff::token::XMLTokenEnum XML_OPPOSITEHORIZONTAL
-include/xmloff/xmltoken.hxx:2876
+include/xmloff/xmltoken.hxx:2897
enum xmloff::token::XMLTokenEnum XML_PARALLELDIAGONALTOPLEFT
-include/xmloff/xmltoken.hxx:2877
+include/xmloff/xmltoken.hxx:2898
enum xmloff::token::XMLTokenEnum XML_PARALLELDIAGONALBOTTOMLEFT
-include/xmloff/xmltoken.hxx:2878
+include/xmloff/xmltoken.hxx:2899
enum xmloff::token::XMLTokenEnum XML_TOPLEFTHORIZONTAL
-include/xmloff/xmltoken.hxx:2879
+include/xmloff/xmltoken.hxx:2900
enum xmloff::token::XMLTokenEnum XML_TOPLEFTDIAGONAL
-include/xmloff/xmltoken.hxx:2880
+include/xmloff/xmltoken.hxx:2901
enum xmloff::token::XMLTokenEnum XML_TOPLEFTVERTICAL
-include/xmloff/xmltoken.hxx:2881
+include/xmloff/xmltoken.hxx:2902
enum xmloff::token::XMLTokenEnum XML_TOPRIGHTDIAGONAL
-include/xmloff/xmltoken.hxx:2882
+include/xmloff/xmltoken.hxx:2903
enum xmloff::token::XMLTokenEnum XML_BOTTOMRIGHTDIAGONAL
-include/xmloff/xmltoken.hxx:2883
+include/xmloff/xmltoken.hxx:2904
enum xmloff::token::XMLTokenEnum XML_BOTTOMLEFTDIAGONAL
-include/xmloff/xmltoken.hxx:2884
+include/xmloff/xmltoken.hxx:2905
enum xmloff::token::XMLTokenEnum XML_TOPLEFTCLOCKWISE
-include/xmloff/xmltoken.hxx:2885
+include/xmloff/xmltoken.hxx:2906
enum xmloff::token::XMLTokenEnum XML_TOPRIGHTCLOCKWISE
-include/xmloff/xmltoken.hxx:2886
+include/xmloff/xmltoken.hxx:2907
enum xmloff::token::XMLTokenEnum XML_BOTTOMRIGHTCLOCKWISE
-include/xmloff/xmltoken.hxx:2887
+include/xmloff/xmltoken.hxx:2908
enum xmloff::token::XMLTokenEnum XML_BOTTOMLEFTCLOCKWISE
-include/xmloff/xmltoken.hxx:2888
+include/xmloff/xmltoken.hxx:2909
enum xmloff::token::XMLTokenEnum XML_TOPLEFTCOUNTERCLOCKWISE
-include/xmloff/xmltoken.hxx:2889
+include/xmloff/xmltoken.hxx:2910
enum xmloff::token::XMLTokenEnum XML_TOPRIGHTCOUNTERCLOCKWISE
-include/xmloff/xmltoken.hxx:2890
+include/xmloff/xmltoken.hxx:2911
enum xmloff::token::XMLTokenEnum XML_BOTTOMRIGHTCOUNTERCLOCKWISE
-include/xmloff/xmltoken.hxx:2891
+include/xmloff/xmltoken.hxx:2912
enum xmloff::token::XMLTokenEnum XML_BOTTOMLEFTCOUNTERCLOCKWISE
-include/xmloff/xmltoken.hxx:2892
+include/xmloff/xmltoken.hxx:2913
enum xmloff::token::XMLTokenEnum XML_VERTICALTOPSAME
-include/xmloff/xmltoken.hxx:2893
+include/xmloff/xmltoken.hxx:2914
enum xmloff::token::XMLTokenEnum XML_VERTICALBOTTOMSAME
-include/xmloff/xmltoken.hxx:2894
+include/xmloff/xmltoken.hxx:2915
enum xmloff::token::XMLTokenEnum XML_VERTICALTOPLEFTOPPOSITE
-include/xmloff/xmltoken.hxx:2895
+include/xmloff/xmltoken.hxx:2916
enum xmloff::token::XMLTokenEnum XML_VERTICALBOTTOMLEFTOPPOSITE
-include/xmloff/xmltoken.hxx:2896
+include/xmloff/xmltoken.hxx:2917
enum xmloff::token::XMLTokenEnum XML_HORIZONTALLEFTSAME
-include/xmloff/xmltoken.hxx:2897
+include/xmloff/xmltoken.hxx:2918
enum xmloff::token::XMLTokenEnum XML_HORIZONTALRIGHTSAME
-include/xmloff/xmltoken.hxx:2898
+include/xmloff/xmltoken.hxx:2919
enum xmloff::token::XMLTokenEnum XML_HORIZONTALTOPLEFTOPPOSITE
-include/xmloff/xmltoken.hxx:2899
+include/xmloff/xmltoken.hxx:2920
enum xmloff::token::XMLTokenEnum XML_HORIZONTALTOPRIGHTOPPOSITE
-include/xmloff/xmltoken.hxx:2900
+include/xmloff/xmltoken.hxx:2921
enum xmloff::token::XMLTokenEnum XML_DIAGONALBOTTOMLEFTOPPOSITE
-include/xmloff/xmltoken.hxx:2901
+include/xmloff/xmltoken.hxx:2922
enum xmloff::token::XMLTokenEnum XML_DIAGONALTOPLEFTOPPOSITE
-include/xmloff/xmltoken.hxx:2902
+include/xmloff/xmltoken.hxx:2923
enum xmloff::token::XMLTokenEnum XML_TWOBOXTOP
-include/xmloff/xmltoken.hxx:2903
+include/xmloff/xmltoken.hxx:2924
enum xmloff::token::XMLTokenEnum XML_TWOBOXBOTTOM
-include/xmloff/xmltoken.hxx:2904
+include/xmloff/xmltoken.hxx:2925
enum xmloff::token::XMLTokenEnum XML_TWOBOXLEFT
-include/xmloff/xmltoken.hxx:2905
+include/xmloff/xmltoken.hxx:2926
enum xmloff::token::XMLTokenEnum XML_TWOBOXRIGHT
-include/xmloff/xmltoken.hxx:2906
+include/xmloff/xmltoken.hxx:2927
enum xmloff::token::XMLTokenEnum XML_FOURBOXVERTICAL
-include/xmloff/xmltoken.hxx:2907
+include/xmloff/xmltoken.hxx:2928
enum xmloff::token::XMLTokenEnum XML_FOURBOXHORIZONTAL
-include/xmloff/xmltoken.hxx:2908
+include/xmloff/xmltoken.hxx:2929
enum xmloff::token::XMLTokenEnum XML_VERTICALLEFT
-include/xmloff/xmltoken.hxx:2909
+include/xmloff/xmltoken.hxx:2930
enum xmloff::token::XMLTokenEnum XML_VERTICALRIGHT
-include/xmloff/xmltoken.hxx:2910
+include/xmloff/xmltoken.hxx:2931
enum xmloff::token::XMLTokenEnum XML_HORIZONTALLEFT
-include/xmloff/xmltoken.hxx:2911
+include/xmloff/xmltoken.hxx:2932
enum xmloff::token::XMLTokenEnum XML_HORIZONTALRIGHT
-include/xmloff/xmltoken.hxx:2912
+include/xmloff/xmltoken.hxx:2933
enum xmloff::token::XMLTokenEnum XML_FROMLEFT
-include/xmloff/xmltoken.hxx:2913
+include/xmloff/xmltoken.hxx:2934
enum xmloff::token::XMLTokenEnum XML_FROMTOP
-include/xmloff/xmltoken.hxx:2914
+include/xmloff/xmltoken.hxx:2935
enum xmloff::token::XMLTokenEnum XML_FROMRIGHT
-include/xmloff/xmltoken.hxx:2915
+include/xmloff/xmltoken.hxx:2936
enum xmloff::token::XMLTokenEnum XML_FROMBOTTOM
-include/xmloff/xmltoken.hxx:2916
+include/xmloff/xmltoken.hxx:2937
enum xmloff::token::XMLTokenEnum XML_CROSSFADE
-include/xmloff/xmltoken.hxx:2917
+include/xmloff/xmltoken.hxx:2938
enum xmloff::token::XMLTokenEnum XML_FADETOCOLOR
-include/xmloff/xmltoken.hxx:2918
+include/xmloff/xmltoken.hxx:2939
enum xmloff::token::XMLTokenEnum XML_FADEFROMCOLOR
-include/xmloff/xmltoken.hxx:2919
+include/xmloff/xmltoken.hxx:2940
enum xmloff::token::XMLTokenEnum XML_FADEOVERCOLOR
-include/xmloff/xmltoken.hxx:2920
+include/xmloff/xmltoken.hxx:2941
enum xmloff::token::XMLTokenEnum XML_THREEBLADE
-include/xmloff/xmltoken.hxx:2921
+include/xmloff/xmltoken.hxx:2942
enum xmloff::token::XMLTokenEnum XML_EIGHTBLADE
-include/xmloff/xmltoken.hxx:2922
+include/xmloff/xmltoken.hxx:2943
enum xmloff::token::XMLTokenEnum XML_ONEBLADE
-include/xmloff/xmltoken.hxx:2923
+include/xmloff/xmltoken.hxx:2944
enum xmloff::token::XMLTokenEnum XML_ACROSS
-include/xmloff/xmltoken.hxx:2924
+include/xmloff/xmltoken.hxx:2945
enum xmloff::token::XMLTokenEnum XML_COMBHORIZONTAL
-include/xmloff/xmltoken.hxx:2925
+include/xmloff/xmltoken.hxx:2946
enum xmloff::token::XMLTokenEnum XML_COMBVERTICAL
-include/xmloff/xmltoken.hxx:2926
+include/xmloff/xmltoken.hxx:2947
enum xmloff::token::XMLTokenEnum XML_ROTATEIN
-include/xmloff/xmltoken.hxx:2927
+include/xmloff/xmltoken.hxx:2948
enum xmloff::token::XMLTokenEnum XML_ROTATEOUT
-include/xmloff/xmltoken.hxx:2928
+include/xmloff/xmltoken.hxx:2949
enum xmloff::token::XMLTokenEnum XML_FROMTOPLEFT
-include/xmloff/xmltoken.hxx:2929
+include/xmloff/xmltoken.hxx:2950
enum xmloff::token::XMLTokenEnum XML_FROMTOPRIGHT
-include/xmloff/xmltoken.hxx:2930
+include/xmloff/xmltoken.hxx:2951
enum xmloff::token::XMLTokenEnum XML_FROMBOTTOMLEFT
-include/xmloff/xmltoken.hxx:2931
+include/xmloff/xmltoken.hxx:2952
enum xmloff::token::XMLTokenEnum XML_FROMBOTTOMRIGHT
-include/xmloff/xmltoken.hxx:2933
+include/xmloff/xmltoken.hxx:2954
enum xmloff::token::XMLTokenEnum XML_SUBTYPE
-include/xmloff/xmltoken.hxx:2934
+include/xmloff/xmltoken.hxx:2955
enum xmloff::token::XMLTokenEnum XML_OUT
-include/xmloff/xmltoken.hxx:2936
+include/xmloff/xmltoken.hxx:2957
enum xmloff::token::XMLTokenEnum XML_FORWARD
-include/xmloff/xmltoken.hxx:2937
+include/xmloff/xmltoken.hxx:2958
enum xmloff::token::XMLTokenEnum XML_REVERSE
-include/xmloff/xmltoken.hxx:2939
+include/xmloff/xmltoken.hxx:2960
enum xmloff::token::XMLTokenEnum XML_FADECOLOR
-include/xmloff/xmltoken.hxx:2941
+include/xmloff/xmltoken.hxx:2962
enum xmloff::token::XMLTokenEnum XML_ONBEGIN
-include/xmloff/xmltoken.hxx:2942
+include/xmloff/xmltoken.hxx:2963
enum xmloff::token::XMLTokenEnum XML_ONEND
-include/xmloff/xmltoken.hxx:2943
+include/xmloff/xmltoken.hxx:2964
enum xmloff::token::XMLTokenEnum XML_CLICK
-include/xmloff/xmltoken.hxx:2944
+include/xmloff/xmltoken.hxx:2965
enum xmloff::token::XMLTokenEnum XML_DOUBLECLICK
-include/xmloff/xmltoken.hxx:2945
+include/xmloff/xmltoken.hxx:2966
enum xmloff::token::XMLTokenEnum XML_MOUSEOVER
-include/xmloff/xmltoken.hxx:2946
+include/xmloff/xmltoken.hxx:2967
enum xmloff::token::XMLTokenEnum XML_MOUSEOUT
-include/xmloff/xmltoken.hxx:2948
+include/xmloff/xmltoken.hxx:2969
enum xmloff::token::XMLTokenEnum XML_NODE_TYPE
-include/xmloff/xmltoken.hxx:2949
+include/xmloff/xmltoken.hxx:2970
enum xmloff::token::XMLTokenEnum XML_PRESET_ID
-include/xmloff/xmltoken.hxx:2950
+include/xmloff/xmltoken.hxx:2971
enum xmloff::token::XMLTokenEnum XML_PRESET_SUB_TYPE
-include/xmloff/xmltoken.hxx:2951
+include/xmloff/xmltoken.hxx:2972
enum xmloff::token::XMLTokenEnum XML_PRESET_CLASS
-include/xmloff/xmltoken.hxx:2952
+include/xmloff/xmltoken.hxx:2973
enum xmloff::token::XMLTokenEnum XML_CUSTOM
-include/xmloff/xmltoken.hxx:2953
+include/xmloff/xmltoken.hxx:2974
enum xmloff::token::XMLTokenEnum XML_ENTRANCE
-include/xmloff/xmltoken.hxx:2954
+include/xmloff/xmltoken.hxx:2975
enum xmloff::token::XMLTokenEnum XML_EXIT
-include/xmloff/xmltoken.hxx:2955
+include/xmloff/xmltoken.hxx:2976
enum xmloff::token::XMLTokenEnum XML_EMPHASIS
-include/xmloff/xmltoken.hxx:2956
+include/xmloff/xmltoken.hxx:2977
enum xmloff::token::XMLTokenEnum XML_MOTION_PATH
-include/xmloff/xmltoken.hxx:2957
+include/xmloff/xmltoken.hxx:2978
enum xmloff::token::XMLTokenEnum XML_OLE_ACTION
-include/xmloff/xmltoken.hxx:2958
+include/xmloff/xmltoken.hxx:2979
enum xmloff::token::XMLTokenEnum XML_MEDIA_CALL
-include/xmloff/xmltoken.hxx:2959
+include/xmloff/xmltoken.hxx:2980
enum xmloff::token::XMLTokenEnum XML_ON_CLICK
-include/xmloff/xmltoken.hxx:2960
+include/xmloff/xmltoken.hxx:2981
enum xmloff::token::XMLTokenEnum XML_WITH_PREVIOUS
-include/xmloff/xmltoken.hxx:2961
+include/xmloff/xmltoken.hxx:2982
enum xmloff::token::XMLTokenEnum XML_AFTER_PREVIOUS
-include/xmloff/xmltoken.hxx:2962
+include/xmloff/xmltoken.hxx:2983
enum xmloff::token::XMLTokenEnum XML_MAIN_SEQUENCE
-include/xmloff/xmltoken.hxx:2963
+include/xmloff/xmltoken.hxx:2984
enum xmloff::token::XMLTokenEnum XML_TIMING_ROOT
-include/xmloff/xmltoken.hxx:2964
+include/xmloff/xmltoken.hxx:2985
enum xmloff::token::XMLTokenEnum XML_INTERACTIVE_SEQUENCE
-include/xmloff/xmltoken.hxx:2966
+include/xmloff/xmltoken.hxx:2987
enum xmloff::token::XMLTokenEnum XML_SUB_ITEM
-include/xmloff/xmltoken.hxx:2967
+include/xmloff/xmltoken.hxx:2988
enum xmloff::token::XMLTokenEnum XML_ITERATE_TYPE
-include/xmloff/xmltoken.hxx:2968
+include/xmloff/xmltoken.hxx:2989
enum xmloff::token::XMLTokenEnum XML_ITERATE_INTERVAL
-include/xmloff/xmltoken.hxx:2969
+include/xmloff/xmltoken.hxx:2990
enum xmloff::token::XMLTokenEnum XML_ITERATE
-include/xmloff/xmltoken.hxx:2970
+include/xmloff/xmltoken.hxx:2991
enum xmloff::token::XMLTokenEnum XML_BY_PARAGRAPH
-include/xmloff/xmltoken.hxx:2971
+include/xmloff/xmltoken.hxx:2992
enum xmloff::token::XMLTokenEnum XML_BY_WORD
-include/xmloff/xmltoken.hxx:2972
+include/xmloff/xmltoken.hxx:2993
enum xmloff::token::XMLTokenEnum XML_BY_LETTER
-include/xmloff/xmltoken.hxx:2974
+include/xmloff/xmltoken.hxx:2995
enum xmloff::token::XMLTokenEnum XML_AFTER_EFFECT
-include/xmloff/xmltoken.hxx:2975
+include/xmloff/xmltoken.hxx:2996
enum xmloff::token::XMLTokenEnum XML_MASTER
-include/xmloff/xmltoken.hxx:2977
+include/xmloff/xmltoken.hxx:2998
enum xmloff::token::XMLTokenEnum XML_GROUP_ID
-include/xmloff/xmltoken.hxx:2978
+include/xmloff/xmltoken.hxx:2999
enum xmloff::token::XMLTokenEnum XML_TARGETELEMENT
-include/xmloff/xmltoken.hxx:2979
+include/xmloff/xmltoken.hxx:3000
enum xmloff::token::XMLTokenEnum XML_TOGGLE_PAUSE
-include/xmloff/xmltoken.hxx:2980
+include/xmloff/xmltoken.hxx:3001
enum xmloff::token::XMLTokenEnum XML_MASTER_ELEMENT
-include/xmloff/xmltoken.hxx:2981
+include/xmloff/xmltoken.hxx:3002
enum xmloff::token::XMLTokenEnum XML_STOP_AUDIO
-include/xmloff/xmltoken.hxx:2983
+include/xmloff/xmltoken.hxx:3004
enum xmloff::token::XMLTokenEnum XML_AUDIO_LEVEL
-include/xmloff/xmltoken.hxx:2985
+include/xmloff/xmltoken.hxx:3006
enum xmloff::token::XMLTokenEnum XML_URN_OASIS_NAMES_TC
-include/xmloff/xmltoken.hxx:2986
+include/xmloff/xmltoken.hxx:3007
enum xmloff::token::XMLTokenEnum XML_OPENDOCUMENT
-include/xmloff/xmltoken.hxx:2987
+include/xmloff/xmltoken.hxx:3008
enum xmloff::token::XMLTokenEnum XML_1_0
-include/xmloff/xmltoken.hxx:2989
+include/xmloff/xmltoken.hxx:3010
enum xmloff::token::XMLTokenEnum XML_IS_LIST_HEADER
-include/xmloff/xmltoken.hxx:2990
- enum xmloff::token::XMLTokenEnum XML_N_SVG_COMPAT
-include/xmloff/xmltoken.hxx:2991
- enum xmloff::token::XMLTokenEnum XML_N_FO_COMPAT
-include/xmloff/xmltoken.hxx:2992
- enum xmloff::token::XMLTokenEnum XML_N_SMIL_COMPAT
-include/xmloff/xmltoken.hxx:2993
- enum xmloff::token::XMLTokenEnum XML_N_SMIL_OLD
-include/xmloff/xmltoken.hxx:2994
+include/xmloff/xmltoken.hxx:3015
enum xmloff::token::XMLTokenEnum XML_XFORMS_SUBMISSION
-include/xmloff/xmltoken.hxx:2995
+include/xmloff/xmltoken.hxx:3016
enum xmloff::token::XMLTokenEnum XML_XFORMS_LIST_SOURCE
-include/xmloff/xmltoken.hxx:2997
+include/xmloff/xmltoken.hxx:3018
enum xmloff::token::XMLTokenEnum XML_URI_W3_PREFIX
-include/xmloff/xmltoken.hxx:2998
+include/xmloff/xmltoken.hxx:3019
enum xmloff::token::XMLTokenEnum XML_URI_XFORMS_SUFFIX
-include/xmloff/xmltoken.hxx:3002
+include/xmloff/xmltoken.hxx:3023
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_ON_EVEN
-include/xmloff/xmltoken.hxx:3003
- enum xmloff::token::XMLTokenEnum XML_N_RPT_OASIS
-include/xmloff/xmltoken.hxx:3004
- enum xmloff::token::XMLTokenEnum XML_N_RPT
-include/xmloff/xmltoken.hxx:3005
+include/xmloff/xmltoken.hxx:3026
enum xmloff::token::XMLTokenEnum XML_GROUP
-include/xmloff/xmltoken.hxx:3006
+include/xmloff/xmltoken.hxx:3027
enum xmloff::token::XMLTokenEnum XML_GROUPS
-include/xmloff/xmltoken.hxx:3007
+include/xmloff/xmltoken.hxx:3028
enum xmloff::token::XMLTokenEnum XML_REPORT_HEADER
-include/xmloff/xmltoken.hxx:3008
+include/xmloff/xmltoken.hxx:3029
enum xmloff::token::XMLTokenEnum XML_PAGE_HEADER
-include/xmloff/xmltoken.hxx:3009
+include/xmloff/xmltoken.hxx:3030
enum xmloff::token::XMLTokenEnum XML_DETAIL
-include/xmloff/xmltoken.hxx:3010
+include/xmloff/xmltoken.hxx:3031
enum xmloff::token::XMLTokenEnum XML_PAGE_FOOTER
-include/xmloff/xmltoken.hxx:3011
+include/xmloff/xmltoken.hxx:3032
enum xmloff::token::XMLTokenEnum XML_REPORT_FOOTER
-include/xmloff/xmltoken.hxx:3012
+include/xmloff/xmltoken.hxx:3033
enum xmloff::token::XMLTokenEnum XML_START_NEW_COLUMN
-include/xmloff/xmltoken.hxx:3013
+include/xmloff/xmltoken.hxx:3034
enum xmloff::token::XMLTokenEnum XML_RESET_PAGE_NUMBER
-include/xmloff/xmltoken.hxx:3014
+include/xmloff/xmltoken.hxx:3035
enum xmloff::token::XMLTokenEnum XML_PRINT_HEADER_ON_EACH_PAGE
-include/xmloff/xmltoken.hxx:3015
+include/xmloff/xmltoken.hxx:3036
enum xmloff::token::XMLTokenEnum XML_SORT_EXPRESSION
-include/xmloff/xmltoken.hxx:3016
+include/xmloff/xmltoken.hxx:3037
enum xmloff::token::XMLTokenEnum XML_GROUP_EXPRESSION
-include/xmloff/xmltoken.hxx:3017
+include/xmloff/xmltoken.hxx:3038
enum xmloff::token::XMLTokenEnum XML_GROUP_HEADER
-include/xmloff/xmltoken.hxx:3018
+include/xmloff/xmltoken.hxx:3039
enum xmloff::token::XMLTokenEnum XML_GROUP_FOOTER
-include/xmloff/xmltoken.hxx:3019
+include/xmloff/xmltoken.hxx:3040
enum xmloff::token::XMLTokenEnum XML_HEADER_ON_NEW_PAGE
-include/xmloff/xmltoken.hxx:3020
+include/xmloff/xmltoken.hxx:3041
enum xmloff::token::XMLTokenEnum XML_FOOTER_ON_NEW_PAGE
-include/xmloff/xmltoken.hxx:3021
+include/xmloff/xmltoken.hxx:3042
enum xmloff::token::XMLTokenEnum XML_PAGE_PRINT_OPTION
-include/xmloff/xmltoken.hxx:3022
+include/xmloff/xmltoken.hxx:3043
enum xmloff::token::XMLTokenEnum XML_PRE_EVALUATED
-include/xmloff/xmltoken.hxx:3023
+include/xmloff/xmltoken.hxx:3044
enum xmloff::token::XMLTokenEnum XML_COMMAND_TYPE
-include/xmloff/xmltoken.hxx:3024
+include/xmloff/xmltoken.hxx:3045
enum xmloff::token::XMLTokenEnum XML_MASTER_FIELDS
-include/xmloff/xmltoken.hxx:3025
+include/xmloff/xmltoken.hxx:3046
enum xmloff::token::XMLTokenEnum XML_DETAIL_FIELDS
-include/xmloff/xmltoken.hxx:3026
+include/xmloff/xmltoken.hxx:3047
enum xmloff::token::XMLTokenEnum XML_CONDITIONAL_PRINT_EXPRESSION
-include/xmloff/xmltoken.hxx:3027
+include/xmloff/xmltoken.hxx:3048
enum xmloff::token::XMLTokenEnum XML_REPORT_COMPONENT
-include/xmloff/xmltoken.hxx:3028
+include/xmloff/xmltoken.hxx:3049
enum xmloff::token::XMLTokenEnum XML_PRINT_REPEATED_VALUES
-include/xmloff/xmltoken.hxx:3029
+include/xmloff/xmltoken.hxx:3050
enum xmloff::token::XMLTokenEnum XML_REPEAT_SECTION
-include/xmloff/xmltoken.hxx:3030
+include/xmloff/xmltoken.hxx:3051
enum xmloff::token::XMLTokenEnum XML_FORCE_NEW_COLUMN
-include/xmloff/xmltoken.hxx:3031
+include/xmloff/xmltoken.hxx:3052
enum xmloff::token::XMLTokenEnum XML_GROUP_ON
-include/xmloff/xmltoken.hxx:3032
+include/xmloff/xmltoken.hxx:3053
enum xmloff::token::XMLTokenEnum XML_FORCE_NEW_PAGE
-include/xmloff/xmltoken.hxx:3033
+include/xmloff/xmltoken.hxx:3054
enum xmloff::token::XMLTokenEnum XML_GROUP_INTERVAL
-include/xmloff/xmltoken.hxx:3034
+include/xmloff/xmltoken.hxx:3055
enum xmloff::token::XMLTokenEnum XML_PRINT_WHEN_GROUP_CHANGE
-include/xmloff/xmltoken.hxx:3035
+include/xmloff/xmltoken.hxx:3056
enum xmloff::token::XMLTokenEnum XML_REPORT_ELEMENT
-include/xmloff/xmltoken.hxx:3036
+include/xmloff/xmltoken.hxx:3057
enum xmloff::token::XMLTokenEnum XML_LIST_SOURCE
-include/xmloff/xmltoken.hxx:3037
+include/xmloff/xmltoken.hxx:3058
enum xmloff::token::XMLTokenEnum XML_LIST_SOURCE_TYPE
-include/xmloff/xmltoken.hxx:3038
+include/xmloff/xmltoken.hxx:3059
enum xmloff::token::XMLTokenEnum XML_IMAGE_DATA
-include/xmloff/xmltoken.hxx:3039
+include/xmloff/xmltoken.hxx:3060
enum xmloff::token::XMLTokenEnum XML_SELECTED
-include/xmloff/xmltoken.hxx:3040
+include/xmloff/xmltoken.hxx:3061
enum xmloff::token::XMLTokenEnum XML_CURRENT_STATE
-include/xmloff/xmltoken.hxx:3041
+include/xmloff/xmltoken.hxx:3062
enum xmloff::token::XMLTokenEnum XML_IS_TRISTATE
-include/xmloff/xmltoken.hxx:3042
+include/xmloff/xmltoken.hxx:3063
enum xmloff::token::XMLTokenEnum XML_ALL_PAGES
-include/xmloff/xmltoken.hxx:3043
+include/xmloff/xmltoken.hxx:3064
enum xmloff::token::XMLTokenEnum XML_NOT_WITH_REPORT_HEADER
-include/xmloff/xmltoken.hxx:3044
+include/xmloff/xmltoken.hxx:3065
enum xmloff::token::XMLTokenEnum XML_NOT_WITH_REPORT_FOOTER
-include/xmloff/xmltoken.hxx:3045
+include/xmloff/xmltoken.hxx:3066
enum xmloff::token::XMLTokenEnum XML_NOT_WITH_REPORT_HEADER_NOR_FOOTER
-include/xmloff/xmltoken.hxx:3046
+include/xmloff/xmltoken.hxx:3067
enum xmloff::token::XMLTokenEnum XML_BEFORE_SECTION
-include/xmloff/xmltoken.hxx:3047
+include/xmloff/xmltoken.hxx:3068
enum xmloff::token::XMLTokenEnum XML_AFTER_SECTION
-include/xmloff/xmltoken.hxx:3048
+include/xmloff/xmltoken.hxx:3069
enum xmloff::token::XMLTokenEnum XML_BEFORE_AFTER_SECTION
-include/xmloff/xmltoken.hxx:3049
+include/xmloff/xmltoken.hxx:3070
enum xmloff::token::XMLTokenEnum XML_PREFIX_CHARACTERS
-include/xmloff/xmltoken.hxx:3050
+include/xmloff/xmltoken.hxx:3071
enum xmloff::token::XMLTokenEnum XML_QUARTAL
-include/xmloff/xmltoken.hxx:3051
+include/xmloff/xmltoken.hxx:3072
enum xmloff::token::XMLTokenEnum XML_WEEK
-include/xmloff/xmltoken.hxx:3052
+include/xmloff/xmltoken.hxx:3073
enum xmloff::token::XMLTokenEnum XML_WHOLE_GROUP
-include/xmloff/xmltoken.hxx:3053
+include/xmloff/xmltoken.hxx:3074
enum xmloff::token::XMLTokenEnum XML_WITH_FIRST_DETAIL
-include/xmloff/xmltoken.hxx:3054
+include/xmloff/xmltoken.hxx:3075
enum xmloff::token::XMLTokenEnum XML_TOP_DOWN
-include/xmloff/xmltoken.hxx:3055
+include/xmloff/xmltoken.hxx:3076
enum xmloff::token::XMLTokenEnum XML_BOTTOM_UP
-include/xmloff/xmltoken.hxx:3056
+include/xmloff/xmltoken.hxx:3077
enum xmloff::token::XMLTokenEnum XML_HOUR
-include/xmloff/xmltoken.hxx:3057
+include/xmloff/xmltoken.hxx:3078
enum xmloff::token::XMLTokenEnum XML_MINUTE
-include/xmloff/xmltoken.hxx:3058
- enum xmloff::token::XMLTokenEnum XML_NP_RPT
-include/xmloff/xmltoken.hxx:3059
+include/xmloff/xmltoken.hxx:3080
enum xmloff::token::XMLTokenEnum XML_FORMAT_CONDITION
-include/xmloff/xmltoken.hxx:3060
+include/xmloff/xmltoken.hxx:3081
enum xmloff::token::XMLTokenEnum XML_EXPRESSION1
-include/xmloff/xmltoken.hxx:3061
+include/xmloff/xmltoken.hxx:3082
enum xmloff::token::XMLTokenEnum XML_EXPRESSION2
-include/xmloff/xmltoken.hxx:3062
+include/xmloff/xmltoken.hxx:3083
enum xmloff::token::XMLTokenEnum XML_EQUAL
-include/xmloff/xmltoken.hxx:3063
+include/xmloff/xmltoken.hxx:3084
enum xmloff::token::XMLTokenEnum XML_NOT_EQUAL
-include/xmloff/xmltoken.hxx:3064
+include/xmloff/xmltoken.hxx:3085
enum xmloff::token::XMLTokenEnum XML_LESS
-include/xmloff/xmltoken.hxx:3065
+include/xmloff/xmltoken.hxx:3086
enum xmloff::token::XMLTokenEnum XML_GREATER
-include/xmloff/xmltoken.hxx:3066
+include/xmloff/xmltoken.hxx:3087
enum xmloff::token::XMLTokenEnum XML_LESS_EQUAL
-include/xmloff/xmltoken.hxx:3067
+include/xmloff/xmltoken.hxx:3088
enum xmloff::token::XMLTokenEnum XML_GREATER_EQUAL
-include/xmloff/xmltoken.hxx:3068
+include/xmloff/xmltoken.hxx:3089
enum xmloff::token::XMLTokenEnum XML_BETWEEN
-include/xmloff/xmltoken.hxx:3069
+include/xmloff/xmltoken.hxx:3090
enum xmloff::token::XMLTokenEnum XML_NOT_BETWEEN
-include/xmloff/xmltoken.hxx:3070
+include/xmloff/xmltoken.hxx:3091
enum xmloff::token::XMLTokenEnum XML_TABLE_TEMPLATE
-include/xmloff/xmltoken.hxx:3071
+include/xmloff/xmltoken.hxx:3092
enum xmloff::token::XMLTokenEnum XML_FIRST_ROW
-include/xmloff/xmltoken.hxx:3072
+include/xmloff/xmltoken.hxx:3093
enum xmloff::token::XMLTokenEnum XML_LAST_ROW
-include/xmloff/xmltoken.hxx:3073
+include/xmloff/xmltoken.hxx:3094
enum xmloff::token::XMLTokenEnum XML_FIRST_COLUMN
-include/xmloff/xmltoken.hxx:3074
+include/xmloff/xmltoken.hxx:3095
enum xmloff::token::XMLTokenEnum XML_LAST_COLUMN
-include/xmloff/xmltoken.hxx:3075
+include/xmloff/xmltoken.hxx:3096
enum xmloff::token::XMLTokenEnum XML_EVEN_ROWS
-include/xmloff/xmltoken.hxx:3076
+include/xmloff/xmltoken.hxx:3097
enum xmloff::token::XMLTokenEnum XML_ODD_ROWS
-include/xmloff/xmltoken.hxx:3077
+include/xmloff/xmltoken.hxx:3098
enum xmloff::token::XMLTokenEnum XML_EVEN_COLUMNS
-include/xmloff/xmltoken.hxx:3078
+include/xmloff/xmltoken.hxx:3099
enum xmloff::token::XMLTokenEnum XML_ODD_COLUMNS
-include/xmloff/xmltoken.hxx:3080
+include/xmloff/xmltoken.hxx:3101
enum xmloff::token::XMLTokenEnum XML_FIRST_ROW_EVEN_COLUMN
-include/xmloff/xmltoken.hxx:3081
+include/xmloff/xmltoken.hxx:3102
enum xmloff::token::XMLTokenEnum XML_LAST_ROW_EVEN_COLUMN
-include/xmloff/xmltoken.hxx:3082
+include/xmloff/xmltoken.hxx:3103
enum xmloff::token::XMLTokenEnum XML_FIRST_ROW_END_COLUMN
-include/xmloff/xmltoken.hxx:3083
+include/xmloff/xmltoken.hxx:3104
enum xmloff::token::XMLTokenEnum XML_FIRST_ROW_START_COLUMN
-include/xmloff/xmltoken.hxx:3084
+include/xmloff/xmltoken.hxx:3105
enum xmloff::token::XMLTokenEnum XML_LAST_ROW_END_COLUMN
-include/xmloff/xmltoken.hxx:3085
+include/xmloff/xmltoken.hxx:3106
enum xmloff::token::XMLTokenEnum XML_LAST_ROW_START_COLUMN
-include/xmloff/xmltoken.hxx:3087
+include/xmloff/xmltoken.hxx:3108
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_ON_ODD
-include/xmloff/xmltoken.hxx:3089
+include/xmloff/xmltoken.hxx:3110
enum xmloff::token::XMLTokenEnum XML_RESTART_NUMBERING
-include/xmloff/xmltoken.hxx:3091
+include/xmloff/xmltoken.hxx:3112
enum xmloff::token::XMLTokenEnum XML_NUMBERED_PARAGRAPH
-include/xmloff/xmltoken.hxx:3092
+include/xmloff/xmltoken.hxx:3113
enum xmloff::token::XMLTokenEnum XML_MASTER_DETAIL_FIELDS
-include/xmloff/xmltoken.hxx:3093
+include/xmloff/xmltoken.hxx:3114
enum xmloff::token::XMLTokenEnum XML_MASTER_DETAIL_FIELD
-include/xmloff/xmltoken.hxx:3096
+include/xmloff/xmltoken.hxx:3117
enum xmloff::token::XMLTokenEnum XML_INITIAL_FORMULA
-include/xmloff/xmltoken.hxx:3097
+include/xmloff/xmltoken.hxx:3118
enum xmloff::token::XMLTokenEnum XML_DEEP_TRAVERSING
-include/xmloff/xmltoken.hxx:3098
+include/xmloff/xmltoken.hxx:3119
enum xmloff::token::XMLTokenEnum XML_PRESERVE_IRI
-include/xmloff/xmltoken.hxx:3099
+include/xmloff/xmltoken.hxx:3120
enum xmloff::token::XMLTokenEnum XML_SORT_BY_X_VALUES
-include/xmloff/xmltoken.hxx:3100
+include/xmloff/xmltoken.hxx:3121
enum xmloff::token::XMLTokenEnum XML_PAGE_CONTINUATION
-include/xmloff/xmltoken.hxx:3101
+include/xmloff/xmltoken.hxx:3122
enum xmloff::token::XMLTokenEnum XML_RIGHT_ANGLED_AXES
-include/xmloff/xmltoken.hxx:3102
+include/xmloff/xmltoken.hxx:3123
enum xmloff::token::XMLTokenEnum XML_SOFT_PAGE_BREAK
-include/xmloff/xmltoken.hxx:3103
+include/xmloff/xmltoken.hxx:3124
enum xmloff::token::XMLTokenEnum XML_USE_SOFT_PAGE_BREAKS
-include/xmloff/xmltoken.hxx:3104
+include/xmloff/xmltoken.hxx:3125
enum xmloff::token::XMLTokenEnum XML_PERCENTAGE_DATA_STYLE_NAME
-include/xmloff/xmltoken.hxx:3105
+include/xmloff/xmltoken.hxx:3126
enum xmloff::token::XMLTokenEnum XML_VALUE_AND_PERCENTAGE
-include/xmloff/xmltoken.hxx:3106
+include/xmloff/xmltoken.hxx:3127
enum xmloff::token::XMLTokenEnum XML_GROUP_BARS_PER_AXIS
-include/xmloff/xmltoken.hxx:3107
+include/xmloff/xmltoken.hxx:3128
enum xmloff::token::XMLTokenEnum XML_INCLUDE_HIDDEN_CELLS
-include/xmloff/xmltoken.hxx:3108
+include/xmloff/xmltoken.hxx:3129
enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_POSITION
-include/xmloff/xmltoken.hxx:3109
+include/xmloff/xmltoken.hxx:3130
enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_SIZE
-include/xmloff/xmltoken.hxx:3110
+include/xmloff/xmltoken.hxx:3131
enum xmloff::token::XMLTokenEnum XML_REVERSE_DIRECTION
-include/xmloff/xmltoken.hxx:3111
+include/xmloff/xmltoken.hxx:3132
enum xmloff::token::XMLTokenEnum XML_LABEL_SEPARATOR
-include/xmloff/xmltoken.hxx:3112
+include/xmloff/xmltoken.hxx:3133
enum xmloff::token::XMLTokenEnum XML_LABEL_POSITION
-include/xmloff/xmltoken.hxx:3113
+include/xmloff/xmltoken.hxx:3134
enum xmloff::token::XMLTokenEnum XML_AVOID_OVERLAP
-include/xmloff/xmltoken.hxx:3114
+include/xmloff/xmltoken.hxx:3135
enum xmloff::token::XMLTokenEnum XML_NEAR_ORIGIN
-include/xmloff/xmltoken.hxx:3115
- enum xmloff::token::XMLTokenEnum XML_DEPENDENCY
-include/xmloff/xmltoken.hxx:3116
+include/xmloff/xmltoken.hxx:3137
enum xmloff::token::XMLTokenEnum XML_NAV_ORDER
-include/xmloff/xmltoken.hxx:3118
+include/xmloff/xmltoken.hxx:3139
enum xmloff::token::XMLTokenEnum XML_USE_FIRST_ROW_STYLES
-include/xmloff/xmltoken.hxx:3119
+include/xmloff/xmltoken.hxx:3140
enum xmloff::token::XMLTokenEnum XML_USE_LAST_ROW_STYLES
-include/xmloff/xmltoken.hxx:3120
+include/xmloff/xmltoken.hxx:3141
enum xmloff::token::XMLTokenEnum XML_USE_FIRST_COLUMN_STYLES
-include/xmloff/xmltoken.hxx:3121
+include/xmloff/xmltoken.hxx:3142
enum xmloff::token::XMLTokenEnum XML_USE_LAST_COLUMN_STYLES
-include/xmloff/xmltoken.hxx:3122
+include/xmloff/xmltoken.hxx:3143
enum xmloff::token::XMLTokenEnum XML_USE_BANDING_ROWS_STYLES
-include/xmloff/xmltoken.hxx:3123
+include/xmloff/xmltoken.hxx:3144
enum xmloff::token::XMLTokenEnum XML_USE_BANDING_COLUMNS_STYLES
-include/xmloff/xmltoken.hxx:3125
+include/xmloff/xmltoken.hxx:3146
enum xmloff::token::XMLTokenEnum XML_AUTOMATIC_CONTENT
-include/xmloff/xmltoken.hxx:3126
+include/xmloff/xmltoken.hxx:3147
enum xmloff::token::XMLTokenEnum XML_DISPLAY_R_SQUARE
-include/xmloff/xmltoken.hxx:3127
+include/xmloff/xmltoken.hxx:3148
enum xmloff::token::XMLTokenEnum XML_DISPLAY_EQUATION
-include/xmloff/xmltoken.hxx:3130
+include/xmloff/xmltoken.hxx:3151
enum xmloff::token::XMLTokenEnum XML_TABLE_REPRESENTATION
-include/xmloff/xmltoken.hxx:3131
+include/xmloff/xmltoken.hxx:3152
enum xmloff::token::XMLTokenEnum XML_SCHEMA_DEFINITION
-include/xmloff/xmltoken.hxx:3132
+include/xmloff/xmltoken.hxx:3153
enum xmloff::token::XMLTokenEnum XML_CONNECTION_DATA
-include/xmloff/xmltoken.hxx:3133
+include/xmloff/xmltoken.hxx:3154
enum xmloff::token::XMLTokenEnum XML_DATABASE_DESCRIPTION
-include/xmloff/xmltoken.hxx:3134
+include/xmloff/xmltoken.hxx:3155
enum xmloff::token::XMLTokenEnum XML_COMPOUND_DATABASE
-include/xmloff/xmltoken.hxx:3135
+include/xmloff/xmltoken.hxx:3156
enum xmloff::token::XMLTokenEnum XML_FILE_BASED_DATABASE
-include/xmloff/xmltoken.hxx:3136
+include/xmloff/xmltoken.hxx:3157
enum xmloff::token::XMLTokenEnum XML_SERVER_DATABASE
-include/xmloff/xmltoken.hxx:3137
+include/xmloff/xmltoken.hxx:3158
enum xmloff::token::XMLTokenEnum XML_MEDIA_TYPE
-include/xmloff/xmltoken.hxx:3138
+include/xmloff/xmltoken.hxx:3159
enum xmloff::token::XMLTokenEnum XML_HOSTNAME
-include/xmloff/xmltoken.hxx:3139
+include/xmloff/xmltoken.hxx:3160
enum xmloff::token::XMLTokenEnum XML_PORT
-include/xmloff/xmltoken.hxx:3140
+include/xmloff/xmltoken.hxx:3161
enum xmloff::token::XMLTokenEnum XML_LOCAL_SOCKET
-include/xmloff/xmltoken.hxx:3141
+include/xmloff/xmltoken.hxx:3162
enum xmloff::token::XMLTokenEnum XML_USE_SYSTEM_USER
-include/xmloff/xmltoken.hxx:3142
+include/xmloff/xmltoken.hxx:3163
enum xmloff::token::XMLTokenEnum XML_DRIVER_SETTINGS
-include/xmloff/xmltoken.hxx:3143
+include/xmloff/xmltoken.hxx:3164
enum xmloff::token::XMLTokenEnum XML_JAVA_CLASSPATH
-include/xmloff/xmltoken.hxx:3144
+include/xmloff/xmltoken.hxx:3165
enum xmloff::token::XMLTokenEnum XML_CHARACTER_SET
-include/xmloff/xmltoken.hxx:3145
+include/xmloff/xmltoken.hxx:3166
enum xmloff::token::XMLTokenEnum XML_APPLICATION_CONNECTION_SETTINGS
-include/xmloff/xmltoken.hxx:3146
+include/xmloff/xmltoken.hxx:3167
enum xmloff::token::XMLTokenEnum XML_TABLE_INCLUDE_FILTER
-include/xmloff/xmltoken.hxx:3147
+include/xmloff/xmltoken.hxx:3168
enum xmloff::token::XMLTokenEnum XML_DEFAULT_ROW_STYLE_NAME
-include/xmloff/xmltoken.hxx:3148
+include/xmloff/xmltoken.hxx:3169
enum xmloff::token::XMLTokenEnum XML_ANGLE_OFFSET
-include/xmloff/xmltoken.hxx:3150
+include/xmloff/xmltoken.hxx:3171
enum xmloff::token::XMLTokenEnum XML_NUMBER_NO_SUPERIOR
-include/xmloff/xmltoken.hxx:3151
+include/xmloff/xmltoken.hxx:3172
enum xmloff::token::XMLTokenEnum XML_NUMBER_ALL_SUPERIOR
-include/xmloff/xmltoken.hxx:3152
+include/xmloff/xmltoken.hxx:3173
enum xmloff::token::XMLTokenEnum XML_LIST_LEVEL_POSITION_AND_SPACE_MODE
-include/xmloff/xmltoken.hxx:3153
+include/xmloff/xmltoken.hxx:3174
enum xmloff::token::XMLTokenEnum XML_LABEL_WIDTH_AND_POSITION
-include/xmloff/xmltoken.hxx:3154
+include/xmloff/xmltoken.hxx:3175
enum xmloff::token::XMLTokenEnum XML_LABEL_ALIGNMENT
-include/xmloff/xmltoken.hxx:3155
+include/xmloff/xmltoken.hxx:3176
enum xmloff::token::XMLTokenEnum XML_LIST_LEVEL_LABEL_ALIGNMENT
-include/xmloff/xmltoken.hxx:3156
+include/xmloff/xmltoken.hxx:3177
enum xmloff::token::XMLTokenEnum XML_LABEL_FOLLOWED_BY
-include/xmloff/xmltoken.hxx:3157
+include/xmloff/xmltoken.hxx:3178
enum xmloff::token::XMLTokenEnum XML_LISTTAB
-include/xmloff/xmltoken.hxx:3158
+include/xmloff/xmltoken.hxx:3179
enum xmloff::token::XMLTokenEnum XML_SPACE
-include/xmloff/xmltoken.hxx:3159
+include/xmloff/xmltoken.hxx:3180
enum xmloff::token::XMLTokenEnum XML_NOTHING
-include/xmloff/xmltoken.hxx:3160
+include/xmloff/xmltoken.hxx:3181
enum xmloff::token::XMLTokenEnum XML_LIST_TAB_STOP_POSITION
-include/xmloff/xmltoken.hxx:3161
+include/xmloff/xmltoken.hxx:3182
enum xmloff::token::XMLTokenEnum XML_STANDARD_ERROR
-include/xmloff/xmltoken.hxx:3162
+include/xmloff/xmltoken.hxx:3183
enum xmloff::token::XMLTokenEnum XML_CELL_RANGE
-include/xmloff/xmltoken.hxx:3163
+include/xmloff/xmltoken.hxx:3184
enum xmloff::token::XMLTokenEnum XML_ERROR_LOWER_RANGE
-include/xmloff/xmltoken.hxx:3164
+include/xmloff/xmltoken.hxx:3185
enum xmloff::token::XMLTokenEnum XML_ERROR_UPPER_RANGE
-include/xmloff/xmltoken.hxx:3166
+include/xmloff/xmltoken.hxx:3187
enum xmloff::token::XMLTokenEnum XML_CONTINUE_LIST
-include/xmloff/xmltoken.hxx:3167
+include/xmloff/xmltoken.hxx:3188
enum xmloff::token::XMLTokenEnum XML_STYLE_OVERRIDE
-include/xmloff/xmltoken.hxx:3170
+include/xmloff/xmltoken.hxx:3191
enum xmloff::token::XMLTokenEnum XML_XFORM_MODEL_SETTINGS
-include/xmloff/xmltoken.hxx:3173
+include/xmloff/xmltoken.hxx:3194
enum xmloff::token::XMLTokenEnum XML_META_FIELD
-include/xmloff/xmltoken.hxx:3174
+include/xmloff/xmltoken.hxx:3195
enum xmloff::token::XMLTokenEnum XML_ABOUT
-include/xmloff/xmltoken.hxx:3175
+include/xmloff/xmltoken.hxx:3196
enum xmloff::token::XMLTokenEnum XML_DATATYPE
-include/xmloff/xmltoken.hxx:3176
+include/xmloff/xmltoken.hxx:3197
enum xmloff::token::XMLTokenEnum XML_TRANSFORMATION
-include/xmloff/xmltoken.hxx:3179
+include/xmloff/xmltoken.hxx:3200
enum xmloff::token::XMLTokenEnum XML_LIST_ID
-include/xmloff/xmltoken.hxx:3181
+include/xmloff/xmltoken.hxx:3202
enum xmloff::token::XMLTokenEnum XML_TREAT_EMPTY_CELLS
-include/xmloff/xmltoken.hxx:3182
+include/xmloff/xmltoken.hxx:3203
enum xmloff::token::XMLTokenEnum XML_LEAVE_GAP
-include/xmloff/xmltoken.hxx:3183
+include/xmloff/xmltoken.hxx:3204
enum xmloff::token::XMLTokenEnum XML_USE_ZERO
-include/xmloff/xmltoken.hxx:3184
+include/xmloff/xmltoken.hxx:3205
enum xmloff::token::XMLTokenEnum XML_IGNORE
-include/xmloff/xmltoken.hxx:3187
+include/xmloff/xmltoken.hxx:3208
enum xmloff::token::XMLTokenEnum XML_FIELDMARK
-include/xmloff/xmltoken.hxx:3188
+include/xmloff/xmltoken.hxx:3209
enum xmloff::token::XMLTokenEnum XML_FIELDMARK_START
-include/xmloff/xmltoken.hxx:3189
+include/xmloff/xmltoken.hxx:3210
enum xmloff::token::XMLTokenEnum XML_FIELDMARK_END
-include/xmloff/xmltoken.hxx:3190
- enum xmloff::token::XMLTokenEnum XML_N_FIELD
-include/xmloff/xmltoken.hxx:3191
- enum xmloff::token::XMLTokenEnum XML_NP_FIELD
-include/xmloff/xmltoken.hxx:3193
+include/xmloff/xmltoken.hxx:3214
enum xmloff::token::XMLTokenEnum XML_IMAGE_SCALE
-include/xmloff/xmltoken.hxx:3194
+include/xmloff/xmltoken.hxx:3215
enum xmloff::token::XMLTokenEnum XML_ISOTROPIC
-include/xmloff/xmltoken.hxx:3195
+include/xmloff/xmltoken.hxx:3216
enum xmloff::token::XMLTokenEnum XML_ANISOTROPIC
-include/xmloff/xmltoken.hxx:3197
- enum xmloff::token::XMLTokenEnum XML_AXIS_POSITION
-include/xmloff/xmltoken.hxx:3198
+include/xmloff/xmltoken.hxx:3219
enum xmloff::token::XMLTokenEnum XML_AXIS_LABEL_POSITION
-include/xmloff/xmltoken.hxx:3199
+include/xmloff/xmltoken.hxx:3220
enum xmloff::token::XMLTokenEnum XML_NEAR_AXIS
-include/xmloff/xmltoken.hxx:3200
+include/xmloff/xmltoken.hxx:3221
enum xmloff::token::XMLTokenEnum XML_NEAR_AXIS_OTHER_SIDE
-include/xmloff/xmltoken.hxx:3201
+include/xmloff/xmltoken.hxx:3222
enum xmloff::token::XMLTokenEnum XML_OUTSIDE_START
-include/xmloff/xmltoken.hxx:3202
+include/xmloff/xmltoken.hxx:3223
enum xmloff::token::XMLTokenEnum XML_OUTSIDE_END
-include/xmloff/xmltoken.hxx:3203
+include/xmloff/xmltoken.hxx:3224
enum xmloff::token::XMLTokenEnum XML_TICK_MARK_POSITION
-include/xmloff/xmltoken.hxx:3204
+include/xmloff/xmltoken.hxx:3225
enum xmloff::token::XMLTokenEnum XML_AT_LABELS
-include/xmloff/xmltoken.hxx:3205
+include/xmloff/xmltoken.hxx:3226
enum xmloff::token::XMLTokenEnum XML_AT_AXIS
-include/xmloff/xmltoken.hxx:3206
+include/xmloff/xmltoken.hxx:3227
enum xmloff::token::XMLTokenEnum XML_AT_LABELS_AND_AXIS
-include/xmloff/xmltoken.hxx:3207
+include/xmloff/xmltoken.hxx:3228
enum xmloff::token::XMLTokenEnum XML_FILLED_RADAR
-include/xmloff/xmltoken.hxx:3208
+include/xmloff/xmltoken.hxx:3229
enum xmloff::token::XMLTokenEnum XML_SURFACE
-include/xmloff/xmltoken.hxx:3211
+include/xmloff/xmltoken.hxx:3232
enum xmloff::token::XMLTokenEnum XML_MATHVARIANT
-include/xmloff/xmltoken.hxx:3212
+include/xmloff/xmltoken.hxx:3233
enum xmloff::token::XMLTokenEnum XML_MATHSIZE
-include/xmloff/xmltoken.hxx:3213
+include/xmloff/xmltoken.hxx:3234
enum xmloff::token::XMLTokenEnum XML_MATHWEIGHT
-include/xmloff/xmltoken.hxx:3214
+include/xmloff/xmltoken.hxx:3235
enum xmloff::token::XMLTokenEnum XML_MATHCOLOR
-include/xmloff/xmltoken.hxx:3216
+include/xmloff/xmltoken.hxx:3237
enum xmloff::token::XMLTokenEnum XML_CONTAINS
-include/xmloff/xmltoken.hxx:3217
+include/xmloff/xmltoken.hxx:3238
enum xmloff::token::XMLTokenEnum XML_DOES_NOT_CONTAIN
-include/xmloff/xmltoken.hxx:3218
+include/xmloff/xmltoken.hxx:3239
enum xmloff::token::XMLTokenEnum XML_BEGINS_WITH
-include/xmloff/xmltoken.hxx:3219
+include/xmloff/xmltoken.hxx:3240
enum xmloff::token::XMLTokenEnum XML_DOES_NOT_BEGIN_WITH
-include/xmloff/xmltoken.hxx:3220
+include/xmloff/xmltoken.hxx:3241
enum xmloff::token::XMLTokenEnum XML_ENDS_WITH
-include/xmloff/xmltoken.hxx:3221
+include/xmloff/xmltoken.hxx:3242
enum xmloff::token::XMLTokenEnum XML_DOES_NOT_END_WITH
-include/xmloff/xmltoken.hxx:3224
- enum xmloff::token::XMLTokenEnum XML_NP_CHART_EXT
-include/xmloff/xmltoken.hxx:3225
- enum xmloff::token::XMLTokenEnum XML_N_CHART_EXT
-include/xmloff/xmltoken.hxx:3226
+include/xmloff/xmltoken.hxx:3247
enum xmloff::token::XMLTokenEnum XML_COORDINATE_REGION
-include/xmloff/xmltoken.hxx:3228
+include/xmloff/xmltoken.hxx:3249
enum xmloff::token::XMLTokenEnum XML_DIAGONAL_BL_TR_WIDTHS
-include/xmloff/xmltoken.hxx:3229
+include/xmloff/xmltoken.hxx:3250
enum xmloff::token::XMLTokenEnum XML_DIAGONAL_TL_BR_WIDTHS
-include/xmloff/xmltoken.hxx:3231
+include/xmloff/xmltoken.hxx:3252
enum xmloff::token::XMLTokenEnum XML_OUTSIDE_MINIMUM
-include/xmloff/xmltoken.hxx:3232
+include/xmloff/xmltoken.hxx:3253
enum xmloff::token::XMLTokenEnum XML_OUTSIDE_MAXIMUM
-include/xmloff/xmltoken.hxx:3234
+include/xmloff/xmltoken.hxx:3255
enum xmloff::token::XMLTokenEnum XML_LEGEND_EXPANSION
-include/xmloff/xmltoken.hxx:3235
+include/xmloff/xmltoken.hxx:3256
enum xmloff::token::XMLTokenEnum XML_LEGEND_EXPANSION_ASPECT_RATIO
-include/xmloff/xmltoken.hxx:3236
+include/xmloff/xmltoken.hxx:3257
enum xmloff::token::XMLTokenEnum XML_BALANCED
-include/xmloff/xmltoken.hxx:3237
+include/xmloff/xmltoken.hxx:3258
enum xmloff::token::XMLTokenEnum XML_HIGH
-include/xmloff/xmltoken.hxx:3238
+include/xmloff/xmltoken.hxx:3259
enum xmloff::token::XMLTokenEnum XML_WIDE
-include/xmloff/xmltoken.hxx:3240
+include/xmloff/xmltoken.hxx:3261
enum xmloff::token::XMLTokenEnum XML_AXIS_TYPE
-include/xmloff/xmltoken.hxx:3241
+include/xmloff/xmltoken.hxx:3262
enum xmloff::token::XMLTokenEnum XML_DATE_SCALE
-include/xmloff/xmltoken.hxx:3242
+include/xmloff/xmltoken.hxx:3263
enum xmloff::token::XMLTokenEnum XML_BASE_TIME_UNIT
-include/xmloff/xmltoken.hxx:3243
+include/xmloff/xmltoken.hxx:3264
enum xmloff::token::XMLTokenEnum XML_MAJOR_INTERVAL_VALUE
-include/xmloff/xmltoken.hxx:3244
+include/xmloff/xmltoken.hxx:3265
enum xmloff::token::XMLTokenEnum XML_MINOR_INTERVAL_VALUE
-include/xmloff/xmltoken.hxx:3245
+include/xmloff/xmltoken.hxx:3266
enum xmloff::token::XMLTokenEnum XML_MAJOR_INTERVAL_UNIT
-include/xmloff/xmltoken.hxx:3246
+include/xmloff/xmltoken.hxx:3267
enum xmloff::token::XMLTokenEnum XML_MINOR_INTERVAL_UNIT
-include/xmloff/xmltoken.hxx:3248
+include/xmloff/xmltoken.hxx:3269
enum xmloff::token::XMLTokenEnum XML_MIN_VALUE
-include/xmloff/xmltoken.hxx:3249
+include/xmloff/xmltoken.hxx:3270
enum xmloff::token::XMLTokenEnum XML_MAX_VALUE
-include/xmloff/xmltoken.hxx:3253
+include/xmloff/xmltoken.hxx:3274
enum xmloff::token::XMLTokenEnum XML_PROPERTY_MAPPING
-include/xmloff/xmltoken.hxx:3256
+include/xmloff/xmltoken.hxx:3287
+ enum xmloff::token::XMLTokenEnum XML_SORT_PARAM
+include/xmloff/xmltoken.hxx:3289
+ enum xmloff::token::XMLTokenEnum XML_TRIM
+include/xmloff/xmltoken.hxx:3290
+ enum xmloff::token::XMLTokenEnum XML_ROUND_UP
+include/xmloff/xmltoken.hxx:3291
+ enum xmloff::token::XMLTokenEnum XML_ROUND_DOWN
+include/xmloff/xmltoken.hxx:3292
+ enum xmloff::token::XMLTokenEnum XML_LOG_10
+include/xmloff/xmltoken.hxx:3293
+ enum xmloff::token::XMLTokenEnum XML_SQUARE
+include/xmloff/xmltoken.hxx:3294
+ enum xmloff::token::XMLTokenEnum XML_SQUARE_ROOT
+include/xmloff/xmltoken.hxx:3295
+ enum xmloff::token::XMLTokenEnum XML_EVEN
+include/xmloff/xmltoken.hxx:3296
+ enum xmloff::token::XMLTokenEnum XML_ODD
+include/xmloff/xmltoken.hxx:3297
+ enum xmloff::token::XMLTokenEnum XML_SIGN
+include/xmloff/xmltoken.hxx:3300
+ enum xmloff::token::XMLTokenEnum XML_COLUMN_DATETIME_TRANSFORMATION
+include/xmloff/xmltoken.hxx:3301
+ enum xmloff::token::XMLTokenEnum XML_START_OF_YEAR
+include/xmloff/xmltoken.hxx:3302
+ enum xmloff::token::XMLTokenEnum XML_END_OF_YEAR
+include/xmloff/xmltoken.hxx:3303
+ enum xmloff::token::XMLTokenEnum XML_MONTH_NAME
+include/xmloff/xmltoken.hxx:3304
+ enum xmloff::token::XMLTokenEnum XML_START_OF_MONTH
+include/xmloff/xmltoken.hxx:3305
+ enum xmloff::token::XMLTokenEnum XML_END_OF_MONTH
+include/xmloff/xmltoken.hxx:3306
+ enum xmloff::token::XMLTokenEnum XML_DAY_OF_YEAR
+include/xmloff/xmltoken.hxx:3307
+ enum xmloff::token::XMLTokenEnum XML_START_OF_QUARTER
+include/xmloff/xmltoken.hxx:3308
+ enum xmloff::token::XMLTokenEnum XML_END_OF_QUARTER
+include/xmloff/xmltoken.hxx:3313
enum xmloff::token::XMLTokenEnum XML_STAR
-include/xmloff/xmltoken.hxx:3257
+include/xmloff/xmltoken.hxx:3314
enum xmloff::token::XMLTokenEnum XML_ASTERISK
-include/xmloff/xmltoken.hxx:3258
+include/xmloff/xmltoken.hxx:3315
enum xmloff::token::XMLTokenEnum XML_HORIZONTAL_BAR
-include/xmloff/xmltoken.hxx:3259
+include/xmloff/xmltoken.hxx:3316
enum xmloff::token::XMLTokenEnum XML_VERTICAL_BAR
-include/xmloff/xmltoken.hxx:3261
+include/xmloff/xmltoken.hxx:3318
enum xmloff::token::XMLTokenEnum XML_ERROR_STANDARD_WEIGHT
-include/xmloff/xmltoken.hxx:3264
- enum xmloff::token::XMLTokenEnum XML_RFC_LANGUAGE_TAG
-include/xmloff/xmltoken.hxx:3265
+include/xmloff/xmltoken.hxx:3322
enum xmloff::token::XMLTokenEnum XML_RFC_LANGUAGE_TAG_ASIAN
-include/xmloff/xmltoken.hxx:3266
+include/xmloff/xmltoken.hxx:3323
enum xmloff::token::XMLTokenEnum XML_RFC_LANGUAGE_TAG_COMPLEX
-include/xmloff/xmltoken.hxx:3268
+include/xmloff/xmltoken.hxx:3325
enum xmloff::token::XMLTokenEnum XML_DATA_TABLE_SHOW_HORZ_BORDER
-include/xmloff/xmltoken.hxx:3269
+include/xmloff/xmltoken.hxx:3326
enum xmloff::token::XMLTokenEnum XML_DATA_TABLE_SHOW_VERT_BORDER
-include/xmloff/xmltoken.hxx:3270
+include/xmloff/xmltoken.hxx:3327
enum xmloff::token::XMLTokenEnum XML_DATA_TABLE_SHOW_OUTLINE
-include/xmloff/xmltoken.hxx:3272
+include/xmloff/xmltoken.hxx:3329
enum xmloff::token::XMLTokenEnum XML_CHART_DUNITS_DISPLAYUNITS
-include/xmloff/xmltoken.hxx:3273
+include/xmloff/xmltoken.hxx:3330
enum xmloff::token::XMLTokenEnum XML_CHART_DUNITS_BUILTINUNIT
-include/xmloff/xmltoken.hxx:3274
+include/xmloff/xmltoken.hxx:3331
enum xmloff::token::XMLTokenEnum XML_EXTERNALDATA
-include/xmloff/xmltoken.hxx:3276
+include/xmloff/xmltoken.hxx:3333
enum xmloff::token::XMLTokenEnum XML_EXPONENT_INTERVAL
-include/xmloff/xmltoken.hxx:3277
+include/xmloff/xmltoken.hxx:3334
enum xmloff::token::XMLTokenEnum XML_FORCED_EXPONENT_SIGN
-include/xmloff/xmltoken.hxx:3278
+include/xmloff/xmltoken.hxx:3335
enum xmloff::token::XMLTokenEnum XML_MIN_DECIMAL_PLACES
-include/xmloff/xmltoken.hxx:3279
+include/xmloff/xmltoken.hxx:3336
enum xmloff::token::XMLTokenEnum XML_MAX_DENOMINATOR_VALUE
-include/xmloff/xmltoken.hxx:3280
+include/xmloff/xmltoken.hxx:3337
enum xmloff::token::XMLTokenEnum XML_MAX_NUMERATOR_DIGITS
-include/xmloff/xmltoken.hxx:3281
+include/xmloff/xmltoken.hxx:3338
enum xmloff::token::XMLTokenEnum XML_ZEROS_NUMERATOR_DIGITS
-include/xmloff/xmltoken.hxx:3282
+include/xmloff/xmltoken.hxx:3339
enum xmloff::token::XMLTokenEnum XML_ZEROS_DENOMINATOR_DIGITS
-include/xmloff/xmltoken.hxx:3283
+include/xmloff/xmltoken.hxx:3340
enum xmloff::token::XMLTokenEnum XML_INTEGER_FRACTION_DELIMITER
-include/xmlreader/xmlreader.hxx:47
- enum xmlreader::XmlReader::(anonymous at include/xmlreader/xmlreader.hxx:47:5) NAMESPACE_UNKNOWN
-include/xmlreader/xmlreader.hxx:130
+include/xmloff/xmltoken.hxx:3343
+ enum xmloff::token::XMLTokenEnum XML_REFERENCE_LANGUAGE
+include/xmloff/xmltoken.hxx:3345
+ enum xmloff::token::XMLTokenEnum XML_NEWLINE
+include/xmloff/xmltoken.hxx:3347
+ enum xmloff::token::XMLTokenEnum XML_CREATOR_INITIALS
+include/xmloff/xmltoken.hxx:3350
+ enum xmloff::token::XMLTokenEnum XML_TRANSLITERATION_SPELLOUT
+include/xmlreader/xmlreader.hxx:43
+ enum xmlreader::XmlReader::(anonymous at /media/noel/disk2/libo6/include/xmlreader/xmlreader.hxx:43:5) NAMESPACE_UNKNOWN
+include/xmlreader/xmlreader.hxx:45
+ enum xmlreader::XmlReader::Text Normalized
+include/xmlreader/xmlreader.hxx:126
enum xmlreader::XmlReader::State Done
jvmfwk/inc/vendorplugin.hxx:55
enum javaPluginError InvalidArg
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:59
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:57
enum jfw_plugin::SunVersion::PreRelease Rel_INTERNAL
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:60
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:58
enum jfw_plugin::SunVersion::PreRelease Rel_EA
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:61
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:59
enum jfw_plugin::SunVersion::PreRelease Rel_EA1
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:62
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:60
enum jfw_plugin::SunVersion::PreRelease Rel_EA2
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:63
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:61
enum jfw_plugin::SunVersion::PreRelease Rel_EA3
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:64
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:62
enum jfw_plugin::SunVersion::PreRelease Rel_BETA
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:65
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:63
enum jfw_plugin::SunVersion::PreRelease Rel_BETA1
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:66
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:64
enum jfw_plugin::SunVersion::PreRelease Rel_BETA2
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:67
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:65
enum jfw_plugin::SunVersion::PreRelease Rel_BETA3
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:68
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:66
enum jfw_plugin::SunVersion::PreRelease Rel_RC
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:69
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:67
enum jfw_plugin::SunVersion::PreRelease Rel_RC1
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:70
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:68
enum jfw_plugin::SunVersion::PreRelease Rel_RC2
-jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:71
+jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:69
enum jfw_plugin::SunVersion::PreRelease Rel_RC3
-jvmfwk/plugins/sunmajor/pluginlib/util.cxx:239
+jvmfwk/plugins/sunmajor/pluginlib/util.cxx:234
enum jfw_plugin::FileHandleReader::Result RESULT_EOF
-jvmfwk/plugins/sunmajor/pluginlib/util.cxx:249
- enum jfw_plugin::FileHandleReader::(anonymous at jvmfwk/plugins/sunmajor/pluginlib/util.cxx:249:5) BUFFER_SIZE
-l10ntools/inc/export.hxx:62
- enum IdLevel Null
-l10ntools/inc/export.hxx:62
- enum IdLevel Text
-l10ntools/inc/export.hxx:62
- enum IdLevel Identifier
-l10ntools/source/export.cxx:873
- enum TextState Macro
-libreofficekit/qa/gtktiledviewer/gtktiledviewer.cxx:79
- enum TiledRowColumnBar::TiledBarType COLUMN
+jvmfwk/plugins/sunmajor/pluginlib/util.cxx:244
+ enum jfw_plugin::FileHandleReader::(anonymous at /media/noel/disk2/libo6/jvmfwk/plugins/sunmajor/pluginlib/util.cxx:244:5) BUFFER_SIZE
+libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:66
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:59:1) PROP_LAST
+libreofficekit/source/gtk/lokdocview.cxx:263
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) LOAD_CHANGED
+libreofficekit/source/gtk/lokdocview.cxx:264
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) EDIT_CHANGED
+libreofficekit/source/gtk/lokdocview.cxx:265
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) COMMAND_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:266
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) LOAD_CHANGED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) SEARCH_NOT_FOUND
libreofficekit/source/gtk/lokdocview.cxx:267
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) EDIT_CHANGED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) PART_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:268
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) COMMAND_CHANGED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) SIZE_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:269
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) SEARCH_NOT_FOUND
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) HYPERLINK_CLICKED
libreofficekit/source/gtk/lokdocview.cxx:270
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) PART_CHANGED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) CURSOR_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:271
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) SIZE_CHANGED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) SEARCH_RESULT_COUNT
libreofficekit/source/gtk/lokdocview.cxx:272
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) HYPERLINK_CLICKED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) COMMAND_RESULT
libreofficekit/source/gtk/lokdocview.cxx:273
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) CURSOR_CHANGED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) ADDRESS_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:274
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) SEARCH_RESULT_COUNT
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) FORMULA_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:275
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) COMMAND_RESULT
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) TEXT_SELECTION
libreofficekit/source/gtk/lokdocview.cxx:276
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) FORMULA_CHANGED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) PASSWORD_REQUIRED
libreofficekit/source/gtk/lokdocview.cxx:277
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) TEXT_SELECTION
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) COMMENT
libreofficekit/source/gtk/lokdocview.cxx:278
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) PASSWORD_REQUIRED
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) RULER
libreofficekit/source/gtk/lokdocview.cxx:279
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) COMMENT
-libreofficekit/source/gtk/lokdocview.cxx:281
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:264:1) LAST_SIGNAL
-libreofficekit/source/gtk/lokdocview.cxx:305
- enum (anonymous at libreofficekit/source/gtk/lokdocview.cxx:284:1) PROP_LAST
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) WINDOW
+libreofficekit/source/gtk/lokdocview.cxx:280
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) INVALIDATE_HEADER
+libreofficekit/source/gtk/lokdocview.cxx:282
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:261:1) LAST_SIGNAL
+libreofficekit/source/gtk/lokdocview.cxx:307
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/lokdocview.cxx:285:1) PROP_LAST
libreofficekit/source/gtk/tilebuffer.hxx:161
- enum (anonymous at libreofficekit/source/gtk/tilebuffer.hxx:158:1) LOK_TILEBUFFER_MEMORY
-linguistic/source/misc2.cxx:44
- enum DictionaryPathFlags INTERNAL
+ enum (anonymous at /media/noel/disk2/libo6/libreofficekit/source/gtk/tilebuffer.hxx:158:1) LOK_TILEBUFFER_MEMORY
linguistic/source/misc2.cxx:45
- enum DictionaryPathFlags USER
+ enum DictionaryPathFlags INTERNAL
linguistic/source/misc2.cxx:46
- enum DictionaryPathFlags WRITABLE
+ enum DictionaryPathFlags USER
o3tl/qa/test-typed_flags.cxx:19
enum ConfigurationChangedHint TWO
o3tl/qa/test-typed_flags.cxx:19
@@ -10632,299 +8612,153 @@ oox/inc/drawingml/chart/typegroupconverter.hxx:64
enum oox::drawingml::chart::TypeCategory TYPECATEGORY_SURFACE
oox/inc/drawingml/textspacing.hxx:37
enum oox::drawingml::TextSpacing::Unit Points
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:218
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_animLvl
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:219
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_animOne
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:220
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_bulletEnabled
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:221
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_chMax
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:222
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_chPref
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:223
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_dir
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:224
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_hierBranch
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:225
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_orgChart
-oox/source/drawingml/diagram/diagramlayoutatoms.hxx:226
- enum oox::drawingml::LayoutNode::(anonymous at oox/source/drawingml/diagram/diagramlayoutatoms.hxx:217:5) VAR_resizeHandles
-oox/source/export/shapes.cxx:1860
- enum (anonymous at oox/source/export/shapes.cxx:1860:5) OTHER
-pyuno/inc/pyuno.hxx:75
+oox/source/export/shapes.cxx:1917
+ enum (anonymous at /media/noel/disk2/libo6/oox/source/export/shapes.cxx:1917:5) OTHER
+pyuno/inc/pyuno.hxx:69
enum pyuno::NotNull NOT_NULL
-pyuno/inc/pyuno.hxx:163
+pyuno/inc/pyuno.hxx:157
enum pyuno::ConversionMode REJECT_UNO_ANY
-reportdesign/inc/conditionalexpression.hxx:79
- enum rptui::ComparisonOperation eEqualTo
-reportdesign/inc/conditionalexpression.hxx:80
- enum rptui::ComparisonOperation eNotEqualTo
-reportdesign/inc/conditionalexpression.hxx:81
- enum rptui::ComparisonOperation eGreaterThan
-reportdesign/inc/conditionalexpression.hxx:82
- enum rptui::ComparisonOperation eLessThan
-reportdesign/inc/conditionalexpression.hxx:83
- enum rptui::ComparisonOperation eGreaterOrEqual
-reportdesign/inc/conditionalexpression.hxx:84
- enum rptui::ComparisonOperation eLessOrEqual
-reportdesign/inc/RptObject.hxx:42
+reportdesign/inc/RptObject.hxx:41
enum rptui::DlgEdHintKind RPTUI_HINT_WINDOWSCROLLED
-reportdesign/source/filter/xml/xmlEnums.hxx:44
+reportdesign/source/filter/xml/xmlEnums.hxx:31
+ enum rptxml::XMLDocTokens XML_TOK_DOC_META
+reportdesign/source/filter/xml/xmlEnums.hxx:49
enum rptxml::XMLReportToken XML_TOK_HEADER_ON_NEW_PAGE
-reportdesign/source/filter/xml/xmlEnums.hxx:45
+reportdesign/source/filter/xml/xmlEnums.hxx:50
enum rptxml::XMLReportToken XML_TOK_FOOTER_ON_NEW_PAGE
-reportdesign/source/filter/xml/xmlEnums.hxx:62
+reportdesign/source/filter/xml/xmlEnums.hxx:68
enum rptxml::XMLGroup XML_TOK_PRINT_HEADER_ON_EACH_PAGE
-reportdesign/source/filter/xml/xmlEnums.hxx:63
+reportdesign/source/filter/xml/xmlEnums.hxx:69
enum rptxml::XMLGroup XML_TOK_SORT_EXPRESSION
-reportdesign/source/filter/xml/xmlEnums.hxx:132
+reportdesign/source/filter/xml/xmlEnums.hxx:138
enum rptxml::XMLControlProperty XML_TOK_CURRENCY
-reportdesign/source/filter/xml/xmlEnums.hxx:133
+reportdesign/source/filter/xml/xmlEnums.hxx:139
enum rptxml::XMLControlProperty XML_TOK_DATE_VALUE
-reportdesign/source/filter/xml/xmlEnums.hxx:134
+reportdesign/source/filter/xml/xmlEnums.hxx:140
enum rptxml::XMLControlProperty XML_TOK_TIME_VALUE
-reportdesign/source/filter/xml/xmlEnums.hxx:135
+reportdesign/source/filter/xml/xmlEnums.hxx:141
enum rptxml::XMLControlProperty XML_TOK_STRING_VALUE
-reportdesign/source/filter/xml/xmlEnums.hxx:136
+reportdesign/source/filter/xml/xmlEnums.hxx:142
enum rptxml::XMLControlProperty XML_TOK_BOOLEAN_VALUE
-reportdesign/source/filter/xml/xmlEnums.hxx:138
+reportdesign/source/filter/xml/xmlEnums.hxx:144
enum rptxml::XMLControlProperty XML_TOK_SIZE
-reportdesign/source/filter/xml/xmlEnums.hxx:141
+reportdesign/source/filter/xml/xmlEnums.hxx:147
enum rptxml::XMLControlProperty XML_TOK_LABEL
-reportdesign/source/ui/inc/metadata.hxx:31
+reportdesign/source/ui/inc/metadata.hxx:30
enum PropUIFlags Composeable
-reportdesign/source/ui/inc/metadata.hxx:33
+reportdesign/source/ui/inc/metadata.hxx:32
enum PropUIFlags DataProperty
-rsc/inc/rscall.h:50
- enum CommandFlags Help
-rsc/inc/rscall.h:51
- enum CommandFlags NoPrePro
-rsc/inc/rscall.h:52
- enum CommandFlags NoSyntax
-rsc/inc/rscall.h:53
- enum CommandFlags NoLink
-rsc/inc/rscall.h:54
- enum CommandFlags NoResFile
-rsc/inc/rscall.h:55
- enum CommandFlags Define
-rsc/inc/rscall.h:56
- enum CommandFlags Include
-rsc/inc/rscall.h:57
- enum CommandFlags Preload
-rsc/inc/rscall.h:58
- enum CommandFlags SrsDefault
-rsc/inc/rscall.h:59
- enum CommandFlags NoSysResTest
-rsc/inc/rscerror.h:109
- enum RscVerbosity RscVerbositySilent
-rsc/inc/rscerror.h:110
- enum RscVerbosity RscVerbosityNormal
-rsc/inc/rsctools.hxx:36
- enum RSCBYTEORDER_TYPE RSC_BIGENDIAN
-rsc/inc/rsctools.hxx:36
- enum RSCBYTEORDER_TYPE RSC_LITTLEENDIAN
-rsc/inc/rsctop.hxx:32
- enum RSCVAR Pointer
-rsc/inc/rsctop.hxx:33
- enum RSCVAR Hidden
-rsc/inc/rsctop.hxx:34
- enum RSCVAR NoDataInst
-rsc/inc/rsctop.hxx:35
- enum RSCVAR NoRc
-rsc/inc/rsctop.hxx:36
- enum RSCVAR SvDynamic
-sal/osl/all/log.cxx:305
+sal/osl/all/log.cxx:381
enum Sense POSITIVE
-sal/osl/all/log.cxx:305
+sal/osl/all/log.cxx:381
enum Sense NEGATIVE
sal/rtl/bootstrap.cxx:86
enum (anonymous namespace)::LookupMode LOOKUP_MODE_URE_BOOTSTRAP_EXPANSION
-sal/rtl/rtl_process.cxx:42
- enum (anonymous namespace)::Id::(anonymous at sal/rtl/rtl_process.cxx:42:5) UUID_SIZE
-sal/rtl/ustring.cxx:887
+sal/rtl/rtl_process.cxx:44
+ enum (anonymous namespace)::Id::(anonymous at /media/noel/disk2/libo6/sal/rtl/rtl_process.cxx:44:5) UUID_SIZE
+sal/rtl/ustring.cxx:894
enum StrLifecycle CANNOT_RETURN
-sal/rtl/ustring.cxx:888
+sal/rtl/ustring.cxx:895
enum StrLifecycle CAN_RETURN
-sc/inc/address.hxx:139
- enum ScRefFlags COL_ABS
-sc/inc/address.hxx:140
- enum ScRefFlags ROW_ABS
-sc/inc/address.hxx:141
- enum ScRefFlags TAB_ABS
-sc/inc/address.hxx:142
- enum ScRefFlags TAB_3D
-sc/inc/address.hxx:143
- enum ScRefFlags COL2_ABS
-sc/inc/address.hxx:144
- enum ScRefFlags ROW2_ABS
-sc/inc/address.hxx:145
- enum ScRefFlags TAB2_ABS
-sc/inc/address.hxx:146
- enum ScRefFlags TAB2_3D
-sc/inc/address.hxx:147
- enum ScRefFlags ROW_VALID
-sc/inc/address.hxx:148
- enum ScRefFlags COL_VALID
-sc/inc/address.hxx:149
- enum ScRefFlags TAB_VALID
-sc/inc/address.hxx:151
- enum ScRefFlags BITS
sc/inc/address.hxx:155
- enum ScRefFlags FORCE_DOC
-sc/inc/address.hxx:156
- enum ScRefFlags ROW2_VALID
-sc/inc/address.hxx:157
- enum ScRefFlags COL2_VALID
-sc/inc/address.hxx:158
- enum ScRefFlags TAB2_VALID
-sc/inc/address.hxx:161
+ enum ScRefFlags BITS
+sc/inc/address.hxx:165
+ enum ScRefFlags TAB_ABS_3D
+sc/inc/address.hxx:167
enum ScRefFlags ADDR_ABS
-sc/inc/address.hxx:163
+sc/inc/address.hxx:169
enum ScRefFlags RANGE_ABS
-sc/inc/address.hxx:165
+sc/inc/address.hxx:171
enum ScRefFlags ADDR_ABS_3D
-sc/inc/address.hxx:166
+sc/inc/address.hxx:172
enum ScRefFlags RANGE_ABS_3D
-sc/inc/address.hxx:192
+sc/inc/address.hxx:203
enum ScAddress::Uninitialized UNINITIALIZED
-sc/inc/address.hxx:193
+sc/inc/address.hxx:204
enum ScAddress::InitializeInvalid INITIALIZE_INVALID
-sc/inc/attrib.hxx:37
- enum ScMF Auto
-sc/inc/attrib.hxx:38
- enum ScMF Button
-sc/inc/attrib.hxx:39
- enum ScMF Scenario
sc/inc/attrib.hxx:40
- enum ScMF ButtonPopup
-sc/inc/attrib.hxx:41
- enum ScMF HiddenMember
+ enum ScMF Scenario
sc/inc/attrib.hxx:42
+ enum ScMF HiddenMember
+sc/inc/attrib.hxx:43
enum ScMF DpTable
sc/inc/chartpos.hxx:96
enum ScChartGlue Cols
sc/inc/chartpos.hxx:98
enum ScChartGlue Both
-sc/inc/chgtrack.hxx:623
+sc/inc/chgtrack.hxx:594
enum ScChangeActionContentCellType SC_CACCT_NORMAL
-sc/inc/colorscale.hxx:180
+sc/inc/colorscale.hxx:191
enum ScIconSetType IconSet_3Arrows
-sc/inc/colorscale.hxx:181
+sc/inc/colorscale.hxx:192
enum ScIconSetType IconSet_3ArrowsGray
-sc/inc/colorscale.hxx:182
+sc/inc/colorscale.hxx:193
enum ScIconSetType IconSet_3Flags
-sc/inc/colorscale.hxx:183
+sc/inc/colorscale.hxx:194
enum ScIconSetType IconSet_3TrafficLights1
-sc/inc/colorscale.hxx:184
+sc/inc/colorscale.hxx:195
enum ScIconSetType IconSet_3TrafficLights2
-sc/inc/colorscale.hxx:185
+sc/inc/colorscale.hxx:196
enum ScIconSetType IconSet_3Signs
-sc/inc/colorscale.hxx:186
+sc/inc/colorscale.hxx:197
enum ScIconSetType IconSet_3Symbols
-sc/inc/colorscale.hxx:187
+sc/inc/colorscale.hxx:198
enum ScIconSetType IconSet_3Symbols2
-sc/inc/colorscale.hxx:192
+sc/inc/colorscale.hxx:203
enum ScIconSetType IconSet_4Arrows
-sc/inc/colorscale.hxx:193
+sc/inc/colorscale.hxx:204
enum ScIconSetType IconSet_4ArrowsGray
-sc/inc/colorscale.hxx:194
+sc/inc/colorscale.hxx:205
enum ScIconSetType IconSet_4RedToBlack
-sc/inc/colorscale.hxx:195
+sc/inc/colorscale.hxx:206
enum ScIconSetType IconSet_4Rating
-sc/inc/colorscale.hxx:196
+sc/inc/colorscale.hxx:207
enum ScIconSetType IconSet_4TrafficLights
-sc/inc/colorscale.hxx:197
+sc/inc/colorscale.hxx:208
enum ScIconSetType IconSet_5Arrows
-sc/inc/colorscale.hxx:198
+sc/inc/colorscale.hxx:209
enum ScIconSetType IconSet_5ArrowsGray
-sc/inc/colorscale.hxx:199
+sc/inc/colorscale.hxx:210
enum ScIconSetType IconSet_5Ratings
-sc/inc/colorscale.hxx:200
+sc/inc/colorscale.hxx:211
enum ScIconSetType IconSet_5Quarters
-sc/inc/compiler.hxx:47
- enum ScCharFlags Illegal
-sc/inc/compiler.hxx:48
- enum ScCharFlags Char
-sc/inc/compiler.hxx:49
- enum ScCharFlags CharBool
sc/inc/compiler.hxx:50
- enum ScCharFlags CharWord
-sc/inc/compiler.hxx:51
- enum ScCharFlags CharValue
-sc/inc/compiler.hxx:52
- enum ScCharFlags CharString
+ enum ScCharFlags Illegal
sc/inc/compiler.hxx:53
- enum ScCharFlags CharDontCare
-sc/inc/compiler.hxx:54
- enum ScCharFlags Bool
-sc/inc/compiler.hxx:55
- enum ScCharFlags Word
-sc/inc/compiler.hxx:56
- enum ScCharFlags WordSep
-sc/inc/compiler.hxx:57
- enum ScCharFlags Value
-sc/inc/compiler.hxx:58
- enum ScCharFlags ValueSep
-sc/inc/compiler.hxx:59
- enum ScCharFlags ValueExp
-sc/inc/compiler.hxx:60
- enum ScCharFlags ValueSign
-sc/inc/compiler.hxx:61
- enum ScCharFlags ValueValue
-sc/inc/compiler.hxx:62
- enum ScCharFlags StringSep
-sc/inc/compiler.hxx:63
- enum ScCharFlags NameSep
-sc/inc/compiler.hxx:64
- enum ScCharFlags CharIdent
-sc/inc/compiler.hxx:65
- enum ScCharFlags Ident
+ enum ScCharFlags CharWord
sc/inc/compiler.hxx:66
- enum ScCharFlags OdfLBracket
-sc/inc/compiler.hxx:67
- enum ScCharFlags OdfRBracket
-sc/inc/compiler.hxx:68
- enum ScCharFlags OdfLabelOp
-sc/inc/compiler.hxx:69
- enum ScCharFlags OdfNameMarker
-sc/inc/compiler.hxx:70
+ enum ScCharFlags NameSep
+sc/inc/compiler.hxx:73
enum ScCharFlags CharName
-sc/inc/compiler.hxx:71
+sc/inc/compiler.hxx:74
enum ScCharFlags Name
-sc/inc/compiler.hxx:72
- enum ScCharFlags CharErrConst
-sc/inc/compiler.hxx:184
- enum ScCompiler::ExtendedErrorDetection EXTENDED_ERROR_DETECTION_NAME_NO_BREAK
-sc/inc/datastreamgettime.hxx:28
- enum sc::DebugTime Import
-sc/inc/datastreamgettime.hxx:29
- enum sc::DebugTime Recalc
sc/inc/datastreamgettime.hxx:30
enum sc::DebugTime Render
-sc/inc/dociter.hxx:251
+sc/inc/dociter.hxx:254
enum ScQueryCellIterator::StopOnMismatchBits nStopOnMismatchDisabled
-sc/inc/dociter.hxx:252
+sc/inc/dociter.hxx:255
enum ScQueryCellIterator::StopOnMismatchBits nStopOnMismatchEnabled
-sc/inc/dociter.hxx:253
+sc/inc/dociter.hxx:256
enum ScQueryCellIterator::StopOnMismatchBits nStopOnMismatchOccurred
-sc/inc/dociter.hxx:259
+sc/inc/dociter.hxx:262
enum ScQueryCellIterator::TestEqualConditionBits nTestEqualConditionDisabled
-sc/inc/dociter.hxx:260
+sc/inc/dociter.hxx:263
enum ScQueryCellIterator::TestEqualConditionBits nTestEqualConditionEnabled
-sc/inc/dociter.hxx:261
+sc/inc/dociter.hxx:264
enum ScQueryCellIterator::TestEqualConditionBits nTestEqualConditionMatched
-sc/inc/document.hxx:296
- enum ScDocument::HardRecalcState HARDRECALCSTATE_TEMPORARY
+sc/inc/document.hxx:241
+ enum CommentCaptionState ALLSHOWN
+sc/inc/document.hxx:249
+ enum RangeNameScope SHEET
+sc/inc/document.hxx:297
+ enum ScMutationGuardFlags CORE
+sc/inc/document.hxx:338
+ enum ScDocument::HardRecalcState TEMPORARY
sc/inc/dpglobal.hxx:47
enum ScDPValue::Type Value
-sc/inc/fillinfo.hxx:47
- enum ScClipMark Left
-sc/inc/fillinfo.hxx:47
- enum ScClipMark Right
-sc/inc/formulacell.hxx:154
+sc/inc/formulacell.hxx:168
enum ScFormulaCell::CompareState EqualRelativeRef
-sc/inc/formulacell.hxx:250
+sc/inc/formulacell.hxx:269
enum ScFormulaCell::RelNameRef SINGLE
sc/inc/importfilterdata.hxx:34
enum sc::ImportPostProcessData::DataStream::InsertPos InsertBottom
@@ -10934,8 +8768,10 @@ sc/inc/lookupcache.hxx:56
enum ScLookupCache::QueryOp LESS_EQUAL
sc/inc/lookupcache.hxx:57
enum ScLookupCache::QueryOp GREATER_EQUAL
-sc/inc/patattr.hxx:47
+sc/inc/patattr.hxx:46
enum ScAutoFontColorMode SC_AUTOCOL_DISPLAY
+sc/inc/PivotTableDataSequence.hxx:35
+ enum sc::ValueType Empty
sc/inc/rangenam.hxx:51
enum ScRangeData::Type Name
sc/inc/rangenam.hxx:52
@@ -10948,299 +8784,247 @@ sc/inc/rangenam.hxx:55
enum ScRangeData::Type ColHeader
sc/inc/rangenam.hxx:56
enum ScRangeData::Type RowHeader
-sc/inc/rangenam.hxx:57
- enum ScRangeData::Type AbsArea
-sc/inc/rangenam.hxx:58
- enum ScRangeData::Type RefArea
-sc/inc/rangenam.hxx:59
- enum ScRangeData::Type AbsPos
-sc/inc/sheetevents.hxx:26
- enum ScSheetEventId SELECT
-sc/inc/sheetevents.hxx:26
+sc/inc/sheetevents.hxx:29
+ enum ScSheetEventId RIGHTCLICK
+sc/inc/sheetevents.hxx:29
enum ScSheetEventId UNFOCUS
-sc/inc/sheetevents.hxx:26
- enum ScSheetEventId CALCULATE
-sc/inc/sheetevents.hxx:26
+sc/inc/sheetevents.hxx:29
enum ScSheetEventId CHANGE
-sc/inc/sheetevents.hxx:26
- enum ScSheetEventId FOCUS
-sc/inc/sheetevents.hxx:26
+sc/inc/sheetevents.hxx:29
enum ScSheetEventId DOUBLECLICK
-sc/inc/sheetevents.hxx:26
- enum ScSheetEventId RIGHTCLICK
-sc/inc/stlsheet.hxx:41
+sc/inc/sheetevents.hxx:29
+ enum ScSheetEventId FOCUS
+sc/inc/sheetevents.hxx:29
+ enum ScSheetEventId CALCULATE
+sc/inc/sheetevents.hxx:29
+ enum ScSheetEventId SELECT
+sc/inc/stlsheet.hxx:39
enum ScStyleSheet::Usage NOTUSED
-sc/inc/stringutil.hxx:47
- enum ScSetStringParam::TextFormatPolicy SpecialNumberOnly
-sc/inc/tabprotection.hxx:78
+sc/inc/stringutil.hxx:58
+ enum ScSetStringParam::TextFormatPolicy Keep
+sc/inc/tabprotection.hxx:101
enum ScDocProtection::Option STRUCTURE
-sc/inc/tabprotection.hxx:79
+sc/inc/tabprotection.hxx:102
enum ScDocProtection::Option WINDOWS
-sc/inc/tabprotection.hxx:150
+sc/inc/tabprotection.hxx:172
enum ScTableProtection::Option AUTOFILTER
-sc/inc/tabprotection.hxx:151
+sc/inc/tabprotection.hxx:173
enum ScTableProtection::Option DELETE_COLUMNS
-sc/inc/tabprotection.hxx:152
+sc/inc/tabprotection.hxx:174
enum ScTableProtection::Option DELETE_ROWS
-sc/inc/tabprotection.hxx:153
+sc/inc/tabprotection.hxx:175
enum ScTableProtection::Option FORMAT_CELLS
-sc/inc/tabprotection.hxx:154
+sc/inc/tabprotection.hxx:176
enum ScTableProtection::Option FORMAT_COLUMNS
-sc/inc/tabprotection.hxx:155
+sc/inc/tabprotection.hxx:177
enum ScTableProtection::Option FORMAT_ROWS
-sc/inc/tabprotection.hxx:156
+sc/inc/tabprotection.hxx:178
enum ScTableProtection::Option INSERT_COLUMNS
-sc/inc/tabprotection.hxx:157
+sc/inc/tabprotection.hxx:179
enum ScTableProtection::Option INSERT_HYPERLINKS
-sc/inc/tabprotection.hxx:158
+sc/inc/tabprotection.hxx:180
enum ScTableProtection::Option INSERT_ROWS
-sc/inc/tabprotection.hxx:159
+sc/inc/tabprotection.hxx:181
enum ScTableProtection::Option OBJECTS
-sc/inc/tabprotection.hxx:160
+sc/inc/tabprotection.hxx:182
enum ScTableProtection::Option PIVOT_TABLES
-sc/inc/tabprotection.hxx:161
+sc/inc/tabprotection.hxx:183
enum ScTableProtection::Option SCENARIOS
-sc/inc/tabprotection.hxx:162
+sc/inc/tabprotection.hxx:184
enum ScTableProtection::Option SELECT_LOCKED_CELLS
-sc/inc/tabprotection.hxx:163
+sc/inc/tabprotection.hxx:185
enum ScTableProtection::Option SELECT_UNLOCKED_CELLS
-sc/inc/tabprotection.hxx:164
+sc/inc/tabprotection.hxx:186
enum ScTableProtection::Option SORT
-sc/inc/typedstrdata.hxx:23
+sc/inc/typedstrdata.hxx:22
enum ScTypedStrData::StringType Standard
-sc/inc/typedstrdata.hxx:24
+sc/inc/typedstrdata.hxx:23
enum ScTypedStrData::StringType Name
-sc/inc/typedstrdata.hxx:25
+sc/inc/typedstrdata.hxx:24
enum ScTypedStrData::StringType DbName
-sc/inc/typedstrdata.hxx:26
+sc/inc/typedstrdata.hxx:25
enum ScTypedStrData::StringType Header
-sc/inc/types.hxx:44
- enum ScMatValType NonvalueMask
-sc/inc/types.hxx:70
- enum sc::MatrixEdge Inside
-sc/inc/types.hxx:71
- enum sc::MatrixEdge Bottom
-sc/inc/types.hxx:72
- enum sc::MatrixEdge Left
-sc/inc/types.hxx:73
- enum sc::MatrixEdge Top
-sc/inc/types.hxx:74
- enum sc::MatrixEdge Right
-sc/inc/types.hxx:75
- enum sc::MatrixEdge Open
-sc/inc/types.hxx:81
+sc/inc/types.hxx:80
enum sc::GroupCalcState GroupCalcEnabled
-sc/inc/userdat.hxx:45
+sc/inc/types.hxx:101
+ enum sc::MultiDataCellState::StateType Invalid
+sc/inc/userdat.hxx:36
enum ScDrawObjData::Type DrawingObject
-sc/inc/viewopti.hxx:34
+sc/inc/viewopti.hxx:33
enum ScViewOption VOPT_FORMULAS
-sc/inc/viewopti.hxx:35
+sc/inc/viewopti.hxx:34
enum ScViewOption VOPT_NULLVALS
-sc/inc/viewopti.hxx:36
+sc/inc/viewopti.hxx:35
enum ScViewOption VOPT_SYNTAX
-sc/inc/viewopti.hxx:37
+sc/inc/viewopti.hxx:36
enum ScViewOption VOPT_NOTES
-sc/inc/viewopti.hxx:38
+sc/inc/viewopti.hxx:37
enum ScViewOption VOPT_VSCROLL
-sc/inc/viewopti.hxx:39
+sc/inc/viewopti.hxx:38
enum ScViewOption VOPT_HSCROLL
-sc/inc/viewopti.hxx:40
+sc/inc/viewopti.hxx:39
enum ScViewOption VOPT_TABCONTROLS
-sc/inc/viewopti.hxx:41
+sc/inc/viewopti.hxx:40
enum ScViewOption VOPT_OUTLINER
-sc/inc/viewopti.hxx:42
+sc/inc/viewopti.hxx:41
enum ScViewOption VOPT_HEADER
-sc/inc/viewopti.hxx:43
+sc/inc/viewopti.hxx:42
enum ScViewOption VOPT_GRID
-sc/inc/viewopti.hxx:44
+sc/inc/viewopti.hxx:43
enum ScViewOption VOPT_GRID_ONTOP
-sc/inc/viewopti.hxx:45
+sc/inc/viewopti.hxx:44
enum ScViewOption VOPT_HELPLINES
-sc/inc/viewopti.hxx:46
+sc/inc/viewopti.hxx:45
enum ScViewOption VOPT_ANCHOR
-sc/inc/viewopti.hxx:47
+sc/inc/viewopti.hxx:46
enum ScViewOption VOPT_PAGEBREAKS
-sc/inc/viewopti.hxx:53
+sc/inc/viewopti.hxx:52
enum ScVObjType VOBJ_TYPE_OLE
-sc/inc/viewopti.hxx:54
+sc/inc/viewopti.hxx:53
enum ScVObjType VOBJ_TYPE_CHART
-sc/inc/xmlwrap.hxx:48
- enum ImportFlags Styles
sc/inc/xmlwrap.hxx:49
- enum ImportFlags Content
-sc/inc/xmlwrap.hxx:50
- enum ImportFlags Metadata
-sc/inc/xmlwrap.hxx:51
- enum ImportFlags Settings
-sc/inc/xmlwrap.hxx:52
enum ImportFlags All
-sc/source/core/data/document10.cxx:579
+sc/source/core/data/document10.cxx:596
enum (anonymous namespace)::MightReferenceSheet CODE
sc/source/core/inc/refupdat.hxx:33
enum ScRefUpdateRes UR_UPDATED
sc/source/core/inc/refupdat.hxx:35
enum ScRefUpdateRes UR_STICKY
-sc/source/core/opencl/op_statistical.cxx:7695
+sc/source/core/opencl/op_statistical.cxx:7657
enum sc::opencl::MixDoubleString svDoubleVectorRefNULL
-sc/source/core/opencl/op_statistical.cxx:7699
+sc/source/core/opencl/op_statistical.cxx:7661
enum sc::opencl::MixDoubleString svSingleVectorRefNULL
-sc/source/core/tool/cellkeytranslator.cxx:36
+sc/source/core/tool/cellkeytranslator.cxx:38
enum LocaleMatch LOCALE_MATCH_LANG
-sc/source/core/tool/cellkeytranslator.cxx:37
+sc/source/core/tool/cellkeytranslator.cxx:39
enum LocaleMatch LOCALE_MATCH_LANG_SCRIPT
-sc/source/core/tool/cellkeytranslator.cxx:38
+sc/source/core/tool/cellkeytranslator.cxx:40
enum LocaleMatch LOCALE_MATCH_LANG_SCRIPT_COUNTRY
-sc/source/filter/excel/xeformula.cxx:225
+sc/source/core/tool/token.cxx:2756
+ enum (anonymous namespace)::ShrinkResult UNMODIFIED
+sc/source/filter/excel/xeformula.cxx:229
enum (anonymous namespace)::XclExpFmlaClassType EXC_CLASSTYPE_ARRAY
-sc/source/filter/excel/xestyle.cxx:1637
+sc/source/filter/excel/xestyle.cxx:1648
+ enum CalcLineIndex Idx_Last
+sc/source/filter/excel/xestyle.cxx:1648
enum CalcLineIndex Idx_DashDotDot
-sc/source/filter/excel/xestyle.cxx:1637
- enum CalcLineIndex Idx_Solid
-sc/source/filter/excel/xestyle.cxx:1637
+sc/source/filter/excel/xestyle.cxx:1648
enum CalcLineIndex Idx_FineDashed
-sc/source/filter/excel/xestyle.cxx:1637
+sc/source/filter/excel/xestyle.cxx:1648
enum CalcLineIndex Idx_Dashed
-sc/source/filter/excel/xestyle.cxx:1637
+sc/source/filter/excel/xestyle.cxx:1648
+ enum CalcLineIndex Idx_Solid
+sc/source/filter/excel/xestyle.cxx:1648
enum CalcLineIndex Idx_DoubleThin
-sc/source/filter/excel/xestyle.cxx:1637
- enum CalcLineIndex Idx_Last
-sc/source/filter/excel/xestyle.cxx:1637
+sc/source/filter/excel/xestyle.cxx:1648
enum CalcLineIndex Idx_DashDot
-sc/source/filter/excel/xestyle.cxx:1637
+sc/source/filter/excel/xestyle.cxx:1648
enum CalcLineIndex Idx_Dotted
-sc/source/filter/excel/xestyle.cxx:1638
- enum ExcelWidthIndex Width_Medium
-sc/source/filter/excel/xestyle.cxx:1638
+sc/source/filter/excel/xestyle.cxx:1649
enum ExcelWidthIndex Width_Thick
-sc/source/filter/excel/xestyle.cxx:1638
+sc/source/filter/excel/xestyle.cxx:1649
enum ExcelWidthIndex Width_Last
-sc/source/filter/excel/xestyle.cxx:1638
- enum ExcelWidthIndex Width_Thin
-sc/source/filter/excel/xestyle.cxx:1638
+sc/source/filter/excel/xestyle.cxx:1649
+ enum ExcelWidthIndex Width_Medium
+sc/source/filter/excel/xestyle.cxx:1649
enum ExcelWidthIndex Width_Hair
-sc/source/filter/excel/xiescher.cxx:458
- enum (anonymous at sc/source/filter/excel/xiescher.cxx:458:17) eCreateFromMSOCXControl
-sc/source/filter/excel/xiescher.cxx:458
- enum (anonymous at sc/source/filter/excel/xiescher.cxx:458:17) eCreateFromMSTBXControl
-sc/source/filter/inc/colrowst.hxx:29
- enum ExcColRowFlags Used
-sc/source/filter/inc/colrowst.hxx:30
- enum ExcColRowFlags Default
-sc/source/filter/inc/colrowst.hxx:31
- enum ExcColRowFlags Hidden
+sc/source/filter/excel/xestyle.cxx:1649
+ enum ExcelWidthIndex Width_Thin
+sc/source/filter/excel/xiescher.cxx:460
+ enum (anonymous at /media/noel/disk2/libo6/sc/source/filter/excel/xiescher.cxx:460:17) eCreateFromMSOCXControl
+sc/source/filter/excel/xiescher.cxx:460
+ enum (anonymous at /media/noel/disk2/libo6/sc/source/filter/excel/xiescher.cxx:460:17) eCreateFromMSTBXControl
sc/source/filter/inc/colrowst.hxx:32
- enum ExcColRowFlags Man
+ enum ExcColRowFlags Hidden
sc/source/filter/inc/decl.h:24
enum WKTYP eWK_UNKNOWN
-sc/source/filter/inc/externallinkbuffer.hxx:149
+sc/source/filter/inc/externallinkbuffer.hxx:150
enum oox::xls::LinkSheetRange::LinkSheetRangeType LINKSHEETRANGE_INTERNAL
-sc/source/filter/inc/formel.hxx:53
+sc/source/filter/inc/formel.hxx:49
enum FORMULA_TYPE FT_CellFormula
-sc/source/filter/inc/formulabase.hxx:371
+sc/source/filter/inc/formulabase.hxx:372
enum oox::xls::FuncParamValidity Regular
-sc/source/filter/inc/formulabase.hxx:468
+sc/source/filter/inc/formulabase.hxx:469
enum oox::xls::FunctionLibraryType FUNCLIB_EUROTOOL
-sc/source/filter/inc/htmlpars.hxx:224
+sc/source/filter/inc/htmlpars.hxx:223
enum ScHTMLOrient tdRow
-sc/source/filter/inc/unitconverter.hxx:37
- enum oox::xls::Unit UNIT_INCH
-sc/source/filter/inc/unitconverter.hxx:38
- enum oox::xls::Unit UNIT_POINT
-sc/source/filter/inc/unitconverter.hxx:39
- enum oox::xls::Unit UNIT_TWIP
-sc/source/filter/inc/unitconverter.hxx:40
- enum oox::xls::Unit UNIT_EMU
-sc/source/filter/inc/unitconverter.hxx:41
- enum oox::xls::Unit UNIT_SCREENX
-sc/source/filter/inc/unitconverter.hxx:42
- enum oox::xls::Unit UNIT_SCREENY
-sc/source/filter/inc/unitconverter.hxx:43
- enum oox::xls::Unit UNIT_REFDEVX
-sc/source/filter/inc/unitconverter.hxx:44
- enum oox::xls::Unit UNIT_REFDEVY
-sc/source/filter/inc/unitconverter.hxx:45
- enum oox::xls::Unit UNIT_DIGIT
-sc/source/filter/inc/unitconverter.hxx:46
- enum oox::xls::Unit UNIT_SPACE
-sc/source/filter/inc/xeextlst.hxx:23
+sc/source/filter/inc/orcusinterface.hxx:225
+ enum ScOrcusFormula::ResultType NotSet
+sc/source/filter/inc/orcusinterface.hxx:225
+ enum ScOrcusFormula::ResultType Empty
+sc/source/filter/inc/xeextlst.hxx:22
enum XclExpExtType XclExpExtDataBarType
-sc/source/filter/inc/xeextlst.hxx:24
+sc/source/filter/inc/xeextlst.hxx:23
enum XclExpExtType XclExpExtDataFooType
-sc/source/filter/inc/xelink.hxx:50
+sc/source/filter/inc/xelink.hxx:49
enum ExcTabBufFlags Ignore
-sc/source/filter/inc/xelink.hxx:51
+sc/source/filter/inc/xelink.hxx:50
enum ExcTabBufFlags Extern
-sc/source/filter/inc/xelink.hxx:52
+sc/source/filter/inc/xelink.hxx:51
enum ExcTabBufFlags SkipMask
-sc/source/filter/inc/xelink.hxx:53
+sc/source/filter/inc/xelink.hxx:52
enum ExcTabBufFlags Visible
-sc/source/filter/inc/xelink.hxx:54
+sc/source/filter/inc/xelink.hxx:53
enum ExcTabBufFlags Selected
-sc/source/filter/inc/xelink.hxx:55
+sc/source/filter/inc/xelink.hxx:54
enum ExcTabBufFlags Mirrored
-sc/source/filter/inc/xicontent.hxx:219
+sc/source/filter/inc/xicontent.hxx:218
enum XclImpWebQuery::XclImpWebQueryMode xlWQDocument
-sc/source/filter/inc/xihelper.hxx:188
- enum XclImpHFConverter::XclImpHFPortion EXC_HF_RIGHT
-sc/source/filter/inc/xihelper.hxx:188
- enum XclImpHFConverter::XclImpHFPortion EXC_HF_CENTER
-sc/source/filter/inc/xihelper.hxx:188
- enum XclImpHFConverter::XclImpHFPortion EXC_HF_LEFT
-sc/source/filter/inc/xihelper.hxx:188
+sc/source/filter/inc/xihelper.hxx:187
enum XclImpHFConverter::XclImpHFPortion EXC_HF_PORTION_COUNT
-sc/source/filter/inc/xistyle.hxx:651
+sc/source/filter/inc/xistyle.hxx:643
enum XclImpXFRangeBuffer::XclImpXFInsertMode xlXFModeCell
-sc/source/filter/inc/xlchart.hxx:1104
- enum XclChObjectType EXC_CHOBJTYPE_BACKGROUND
sc/source/filter/inc/xlchart.hxx:1105
+ enum XclChObjectType EXC_CHOBJTYPE_BACKGROUND
+sc/source/filter/inc/xlchart.hxx:1106
enum XclChObjectType EXC_CHOBJTYPE_PLOTFRAME
-sc/source/filter/inc/xlchart.hxx:1108
- enum XclChObjectType EXC_CHOBJTYPE_TEXT
sc/source/filter/inc/xlchart.hxx:1109
+ enum XclChObjectType EXC_CHOBJTYPE_TEXT
+sc/source/filter/inc/xlchart.hxx:1110
enum XclChObjectType EXC_CHOBJTYPE_LEGEND
-sc/source/filter/inc/xlchart.hxx:1112
- enum XclChObjectType EXC_CHOBJTYPE_AXISLINE
sc/source/filter/inc/xlchart.hxx:1113
- enum XclChObjectType EXC_CHOBJTYPE_GRIDLINE
+ enum XclChObjectType EXC_CHOBJTYPE_AXISLINE
sc/source/filter/inc/xlchart.hxx:1114
- enum XclChObjectType EXC_CHOBJTYPE_TRENDLINE
+ enum XclChObjectType EXC_CHOBJTYPE_GRIDLINE
sc/source/filter/inc/xlchart.hxx:1115
- enum XclChObjectType EXC_CHOBJTYPE_ERRORBAR
+ enum XclChObjectType EXC_CHOBJTYPE_TRENDLINE
sc/source/filter/inc/xlchart.hxx:1116
- enum XclChObjectType EXC_CHOBJTYPE_CONNECTLINE
+ enum XclChObjectType EXC_CHOBJTYPE_ERRORBAR
sc/source/filter/inc/xlchart.hxx:1117
- enum XclChObjectType EXC_CHOBJTYPE_HILOLINE
+ enum XclChObjectType EXC_CHOBJTYPE_CONNECTLINE
sc/source/filter/inc/xlchart.hxx:1118
- enum XclChObjectType EXC_CHOBJTYPE_WHITEDROPBAR
+ enum XclChObjectType EXC_CHOBJTYPE_HILOLINE
sc/source/filter/inc/xlchart.hxx:1119
+ enum XclChObjectType EXC_CHOBJTYPE_WHITEDROPBAR
+sc/source/filter/inc/xlchart.hxx:1120
enum XclChObjectType EXC_CHOBJTYPE_BLACKDROPBAR
-sc/source/filter/inc/xlchart.hxx:1162
- enum XclChTypeId EXC_CHTYPEID_BAR
sc/source/filter/inc/xlchart.hxx:1163
- enum XclChTypeId EXC_CHTYPEID_HORBAR
+ enum XclChTypeId EXC_CHTYPEID_BAR
sc/source/filter/inc/xlchart.hxx:1164
- enum XclChTypeId EXC_CHTYPEID_LINE
+ enum XclChTypeId EXC_CHTYPEID_HORBAR
sc/source/filter/inc/xlchart.hxx:1165
+ enum XclChTypeId EXC_CHTYPEID_LINE
+sc/source/filter/inc/xlchart.hxx:1166
enum XclChTypeId EXC_CHTYPEID_AREA
-sc/source/filter/inc/xlchart.hxx:1167
- enum XclChTypeId EXC_CHTYPEID_RADARLINE
sc/source/filter/inc/xlchart.hxx:1168
- enum XclChTypeId EXC_CHTYPEID_RADARAREA
+ enum XclChTypeId EXC_CHTYPEID_RADARLINE
sc/source/filter/inc/xlchart.hxx:1169
+ enum XclChTypeId EXC_CHTYPEID_RADARAREA
+sc/source/filter/inc/xlchart.hxx:1170
enum XclChTypeId EXC_CHTYPEID_PIE
-sc/source/filter/inc/xlchart.hxx:1172
+sc/source/filter/inc/xlchart.hxx:1173
enum XclChTypeId EXC_CHTYPEID_SCATTER
-sc/source/filter/inc/xlchart.hxx:1186
+sc/source/filter/inc/xlchart.hxx:1187
enum XclChTypeCateg EXC_CHTYPECATEG_SURFACE
-sc/source/filter/inc/xlescher.hxx:411
+sc/source/filter/inc/xlescher.hxx:408
enum XclTbxEventType EXC_TBX_EVENT_ACTION
-sc/source/filter/inc/xlescher.hxx:412
+sc/source/filter/inc/xlescher.hxx:409
enum XclTbxEventType EXC_TBX_EVENT_MOUSE
-sc/source/filter/inc/xlescher.hxx:413
+sc/source/filter/inc/xlescher.hxx:410
enum XclTbxEventType EXC_TBX_EVENT_TEXT
-sc/source/filter/inc/xlescher.hxx:414
+sc/source/filter/inc/xlescher.hxx:411
enum XclTbxEventType EXC_TBX_EVENT_VALUE
-sc/source/filter/inc/xlescher.hxx:415
+sc/source/filter/inc/xlescher.hxx:412
enum XclTbxEventType EXC_TBX_EVENT_CHANGE
sc/source/filter/inc/xlformula.hxx:166
enum XclFormulaType EXC_FMLATYPE_DATAVAL
@@ -11254,117 +9038,155 @@ sc/source/filter/inc/xlformula.hxx:171
enum XclFormulaType EXC_FMLATYPE_LISTVAL
sc/source/filter/inc/xlformula.hxx:180
enum XclFuncParamValidity EXC_PARAM_REGULAR
-sc/source/filter/inc/xlstyle.hxx:395
+sc/source/filter/inc/xlstring.hxx:31
+ enum XclStrFlags ForceUnicode
+sc/source/filter/inc/xlstring.hxx:32
+ enum XclStrFlags EightBitLength
+sc/source/filter/inc/xlstring.hxx:35
+ enum XclStrFlags NoHeader
+sc/source/filter/inc/xlstyle.hxx:391
enum XclFontItemType Editeng
-sc/source/filter/oox/formulabase.cxx:46
- enum FuncFlags VOLATILE
-sc/source/filter/oox/formulabase.cxx:47
- enum FuncFlags IMPORTONLY
sc/source/filter/oox/formulabase.cxx:48
- enum FuncFlags EXPORTONLY
+ enum FuncFlags VOLATILE
sc/source/filter/oox/formulabase.cxx:49
- enum FuncFlags MACROCALL
+ enum FuncFlags IMPORTONLY
sc/source/filter/oox/formulabase.cxx:50
- enum FuncFlags MACROCALLODF
-sc/source/filter/oox/formulabase.cxx:51
+ enum FuncFlags EXPORTONLY
+sc/source/filter/oox/formulabase.cxx:53
enum FuncFlags EXTERNAL
-sc/source/filter/oox/formulabase.cxx:52
+sc/source/filter/oox/formulabase.cxx:54
enum FuncFlags MACROFUNC
-sc/source/filter/oox/formulabase.cxx:53
+sc/source/filter/oox/formulabase.cxx:55
enum FuncFlags MACROCMD
-sc/source/filter/oox/formulabase.cxx:54
+sc/source/filter/oox/formulabase.cxx:56
enum FuncFlags ALWAYSVAR
-sc/source/filter/oox/formulabase.cxx:55
+sc/source/filter/oox/formulabase.cxx:57
enum FuncFlags PARAMPAIRS
-sc/source/filter/oox/formulabase.cxx:56
- enum FuncFlags MACROCALL_FN
-sc/source/filter/oox/formulabase.cxx:58
+sc/source/filter/oox/formulabase.cxx:60
enum FuncFlags MACROCALL_NEW
-sc/source/filter/oox/formulabase.cxx:61
+sc/source/filter/oox/formulabase.cxx:63
enum FuncFlags BIFFIMPORTONLY
-sc/source/filter/oox/formulabase.cxx:62
+sc/source/filter/oox/formulabase.cxx:64
enum FuncFlags BIFFEXPORTONLY
-sc/source/filter/oox/formulabase.cxx:63
+sc/source/filter/oox/formulabase.cxx:65
enum FuncFlags INTERNAL
-sc/source/filter/oox/formulabase.cxx:64
+sc/source/filter/oox/formulabase.cxx:66
enum FuncFlags EUROTOOL
-sc/source/filter/oox/pagesettings.cxx:344
- enum oox::xls::HFPortionId HF_LEFT
-sc/source/filter/oox/pagesettings.cxx:345
- enum oox::xls::HFPortionId HF_CENTER
-sc/source/filter/oox/pagesettings.cxx:346
- enum oox::xls::HFPortionId HF_RIGHT
-sc/source/filter/oox/pagesettings.cxx:347
+sc/source/filter/oox/pagesettings.cxx:354
enum oox::xls::HFPortionId HF_COUNT
sc/source/filter/oox/revisionfragment.cxx:43
enum oox::xls::(anonymous namespace)::RevisionType REV_UNKNOWN
sc/source/filter/xml/XMLConverter.hxx:102
enum ScXMLConditionToken XML_COND_INVALID
-sc/source/filter/xml/XMLConverter.hxx:115
- enum ScXMLConditionToken XML_COND_ISTRUEFORMULA
-sc/source/filter/xml/xmlimprt.hxx:440
- enum ScXMLDatabaseRangeSourceSQLAttrTokens XML_TOK_SOURCE_SQL_ATTR_HREF
-sc/source/filter/xml/xmlimprt.hxx:441
- enum ScXMLDatabaseRangeSourceSQLAttrTokens XML_TOK_SOURCE_SQL_ATTR_CONNECTION_RESOURCE
-sc/source/filter/xml/xmlimprt.hxx:449
- enum ScXMLDatabaseRangeSourceTableAttrTokens XML_TOK_SOURCE_TABLE_ATTR_HREF
-sc/source/filter/xml/xmlimprt.hxx:450
- enum ScXMLDatabaseRangeSourceTableAttrTokens XML_TOK_SOURCE_TABLE_ATTR_CONNECTION_RESOURCE
-sc/source/filter/xml/xmlimprt.hxx:457
- enum ScXMLDatabaseRangeSourceQueryAttrTokens XML_TOK_SOURCE_QUERY_ATTR_HREF
-sc/source/filter/xml/xmlimprt.hxx:458
- enum ScXMLDatabaseRangeSourceQueryAttrTokens XML_TOK_SOURCE_QUERY_ATTR_CONNECTION_RESOURCE
+sc/source/filter/xml/xmlimprt.hxx:68
+ enum ScXMLDocTokens XML_TOK_DOC_BODY
+sc/source/filter/xml/xmlimprt.hxx:74
+ enum ScXMLContentValidationElemTokens XML_TOK_CONTENT_VALIDATION_ELEM_HELP_MESSAGE
+sc/source/filter/xml/xmlimprt.hxx:75
+ enum ScXMLContentValidationElemTokens XML_TOK_CONTENT_VALIDATION_ELEM_ERROR_MESSAGE
+sc/source/filter/xml/xmlimprt.hxx:76
+ enum ScXMLContentValidationElemTokens XML_TOK_CONTENT_VALIDATION_ELEM_ERROR_MACRO
+sc/source/filter/xml/xmlimprt.hxx:87
+ enum ScXMLTableTokens XML_TOK_TABLE_NAMED_EXPRESSIONS
+sc/source/filter/xml/xmlimprt.hxx:88
+ enum ScXMLTableTokens XML_TOK_TABLE_COL_GROUP
+sc/source/filter/xml/xmlimprt.hxx:89
+ enum ScXMLTableTokens XML_TOK_TABLE_HEADER_COLS
+sc/source/filter/xml/xmlimprt.hxx:90
+ enum ScXMLTableTokens XML_TOK_TABLE_COLS
+sc/source/filter/xml/xmlimprt.hxx:91
+ enum ScXMLTableTokens XML_TOK_TABLE_COL
+sc/source/filter/xml/xmlimprt.hxx:92
+ enum ScXMLTableTokens XML_TOK_TABLE_ROW_GROUP
+sc/source/filter/xml/xmlimprt.hxx:93
+ enum ScXMLTableTokens XML_TOK_TABLE_HEADER_ROWS
+sc/source/filter/xml/xmlimprt.hxx:94
+ enum ScXMLTableTokens XML_TOK_TABLE_PROTECTION
+sc/source/filter/xml/xmlimprt.hxx:95
+ enum ScXMLTableTokens XML_TOK_TABLE_PROTECTION_EXT
+sc/source/filter/xml/xmlimprt.hxx:96
+ enum ScXMLTableTokens XML_TOK_TABLE_ROWS
+sc/source/filter/xml/xmlimprt.hxx:97
+ enum ScXMLTableTokens XML_TOK_TABLE_ROW
+sc/source/filter/xml/xmlimprt.hxx:98
+ enum ScXMLTableTokens XML_TOK_TABLE_SOURCE
+sc/source/filter/xml/xmlimprt.hxx:99
+ enum ScXMLTableTokens XML_TOK_TABLE_SCENARIO
+sc/source/filter/xml/xmlimprt.hxx:100
+ enum ScXMLTableTokens XML_TOK_TABLE_SHAPES
+sc/source/filter/xml/xmlimprt.hxx:104
+ enum ScXMLTableTokens XML_TOK_TABLE_CONDFORMATS
+sc/source/filter/xml/xmlimprt.hxx:123
+ enum ScXMLTableRowAttrTokens XML_TOK_TABLE_ROW_ATTR_STYLE_NAME
+sc/source/filter/xml/xmlimprt.hxx:124
+ enum ScXMLTableRowAttrTokens XML_TOK_TABLE_ROW_ATTR_VISIBILITY
+sc/source/filter/xml/xmlimprt.hxx:126
+ enum ScXMLTableRowAttrTokens XML_TOK_TABLE_ROW_ATTR_DEFAULT_CELL_STYLE_NAME
+sc/source/filter/xml/xmlimprt.hxx:133
+ enum ScXMLTableRowCellTokens XML_TOK_TABLE_ROW_CELL_TABLE
+sc/source/filter/xml/xmlimprt.hxx:135
+ enum ScXMLTableRowCellTokens XML_TOK_TABLE_ROW_CELL_DETECTIVE
+sc/source/filter/xml/xmlimprt.hxx:136
+ enum ScXMLTableRowCellTokens XML_TOK_TABLE_ROW_CELL_CELL_RANGE_SOURCE
+sc/source/filter/xml/xmlimprt.hxx:142
+ enum ScXMLTableRowCellAttrTokens XML_TOK_TABLE_ROW_CELL_ATTR_CONTENT_VALIDATION_NAME
+sc/source/filter/xml/xmlimprt.hxx:143
+ enum ScXMLTableRowCellAttrTokens XML_TOK_TABLE_ROW_CELL_ATTR_SPANNED_ROWS
+sc/source/filter/xml/xmlimprt.hxx:144
+ enum ScXMLTableRowCellAttrTokens XML_TOK_TABLE_ROW_CELL_ATTR_SPANNED_COLS
+sc/source/filter/xml/xmlimprt.hxx:145
+ enum ScXMLTableRowCellAttrTokens XML_TOK_TABLE_ROW_CELL_ATTR_SPANNED_MATRIX_COLS
+sc/source/filter/xml/xmlimprt.hxx:146
+ enum ScXMLTableRowCellAttrTokens XML_TOK_TABLE_ROW_CELL_ATTR_SPANNED_MATRIX_ROWS
+sc/source/filter/xml/xmlimprt.hxx:149
+ enum ScXMLTableRowCellAttrTokens XML_TOK_TABLE_ROW_CELL_ATTR_NEW_VALUE_TYPE
+sc/source/filter/xml/xmlimprt.hxx:155
+ enum ScXMLTableRowCellAttrTokens XML_TOK_TABLE_ROW_CELL_ATTR_FORMULA
+sc/source/filter/xml/xmlimprt.hxx:156
+ enum ScXMLTableRowCellAttrTokens XML_TOK_TABLE_ROW_CELL_ATTR_CURRENCY
+sc/source/ui/dbgui/scuiasciiopt.cxx:62
+ enum CSVImportOptionsIndex CSVIO_Text2ColSkipEmptyCells
sc/source/ui/inc/AccessibleEditObject.hxx:50
enum ScAccessibleEditObject::EditObjectType EditLine
-sc/source/ui/inc/anyrefdg.hxx:228
- enum ScRefHdlrImpl<struct ScAnyRefDlg, class SfxModelessDialog, true>::(anonymous at sc/source/ui/inc/anyrefdg.hxx:228:5) SLOTID
-sc/source/ui/inc/anyrefdg.hxx:228
- enum ScRefHdlrImpl<class ScValidationDlg, class SfxTabDialog, false>::(anonymous at sc/source/ui/inc/anyrefdg.hxx:228:5) UNKNOWN_SLOTID
-sc/source/ui/inc/anyrefdg.hxx:228
- enum ScRefHdlrImpl<struct ScAnyRefDlg, class SfxModelessDialog, true>::(anonymous at sc/source/ui/inc/anyrefdg.hxx:228:5) UNKNOWN_SLOTID
-sc/source/ui/inc/anyrefdg.hxx:228
- enum ScRefHdlrImpl::(anonymous at sc/source/ui/inc/anyrefdg.hxx:228:5) UNKNOWN_SLOTID
-sc/source/ui/inc/checklistmenu.hxx:272
- enum ScCheckListMember::DatePartType YEAR
+sc/source/ui/inc/anyrefdg.hxx:192
+ enum ScRefHdlrImpl<struct ScAnyRefDlg, class SfxModelessDialog, true>::(anonymous at /media/noel/disk2/libo6/sc/source/ui/inc/anyrefdg.hxx:192:5) SLOTID
+sc/source/ui/inc/anyrefdg.hxx:192
+ enum ScRefHdlrImpl<class ScValidationDlg, class SfxTabDialog, false>::(anonymous at /media/noel/disk2/libo6/sc/source/ui/inc/anyrefdg.hxx:192:5) UNKNOWN_SLOTID
+sc/source/ui/inc/anyrefdg.hxx:192
+ enum ScRefHdlrImpl<struct ScAnyRefDlg, class SfxModelessDialog, true>::(anonymous at /media/noel/disk2/libo6/sc/source/ui/inc/anyrefdg.hxx:192:5) UNKNOWN_SLOTID
+sc/source/ui/inc/anyrefdg.hxx:192
+ enum ScRefHdlrImpl::(anonymous at /media/noel/disk2/libo6/sc/source/ui/inc/anyrefdg.hxx:192:5) UNKNOWN_SLOTID
sc/source/ui/inc/checklistmenu.hxx:273
+ enum ScCheckListMember::DatePartType YEAR
+sc/source/ui/inc/checklistmenu.hxx:274
enum ScCheckListMember::DatePartType MONTH
-sc/source/ui/inc/csvcontrol.hxx:94
- enum ScCsvDiff PosCount
sc/source/ui/inc/csvcontrol.hxx:96
enum ScCsvDiff HeaderWidth
sc/source/ui/inc/csvcontrol.hxx:97
enum ScCsvDiff CharWidth
sc/source/ui/inc/csvcontrol.hxx:98
enum ScCsvDiff LineCount
-sc/source/ui/inc/csvcontrol.hxx:99
- enum ScCsvDiff LineOffset
sc/source/ui/inc/csvcontrol.hxx:100
enum ScCsvDiff HeaderHeight
sc/source/ui/inc/csvcontrol.hxx:101
enum ScCsvDiff LineHeight
-sc/source/ui/inc/csvcontrol.hxx:102
- enum ScCsvDiff RulerCursor
sc/source/ui/inc/csvcontrol.hxx:103
enum ScCsvDiff GridCursor
-sc/source/ui/inc/csvcontrol.hxx:105
- enum ScCsvDiff HorizontalMask
sc/source/ui/inc/csvcontrol.hxx:106
enum ScCsvDiff VerticalMask
-sc/source/ui/inc/datastream.hxx:69
- enum sc::DataStream::(anonymous at sc/source/ui/inc/datastream.hxx:69:5) VALUES_IN_LINE
+sc/source/ui/inc/datastream.hxx:66
+ enum sc::DataStream::(anonymous at /media/noel/disk2/libo6/sc/source/ui/inc/datastream.hxx:66:5) VALUES_IN_LINE
sc/source/ui/inc/olinewin.hxx:28
enum ScOutlineMode SC_OUTLINE_VER
-sc/source/ui/inc/pfuncache.hxx:35
- enum ScPrintSelectionMode SC_PRINTSEL_INVALID
sc/source/ui/inc/pfuncache.hxx:36
- enum ScPrintSelectionMode SC_PRINTSEL_DOCUMENT
+ enum ScPrintSelectionMode SC_PRINTSEL_INVALID
sc/source/ui/inc/pfuncache.hxx:37
- enum ScPrintSelectionMode SC_PRINTSEL_CURSOR
+ enum ScPrintSelectionMode SC_PRINTSEL_DOCUMENT
sc/source/ui/inc/pfuncache.hxx:38
- enum ScPrintSelectionMode SC_PRINTSEL_RANGE
-sc/source/ui/inc/PivotLayoutTreeListBase.hxx:28
+ enum ScPrintSelectionMode SC_PRINTSEL_CURSOR
+sc/source/ui/inc/PivotLayoutTreeListBase.hxx:26
enum ScPivotLayoutTreeListBase::SvPivotTreeListType UNDEFINED
-sc/source/ui/inc/PivotLayoutTreeListBase.hxx:33
+sc/source/ui/inc/PivotLayoutTreeListBase.hxx:31
enum ScPivotLayoutTreeListBase::SvPivotTreeListType DATA_LIST
sc/source/ui/inc/scui_def.hxx:34
enum InsertContentsFlags NoEmpty
@@ -11376,32 +9198,20 @@ sc/source/ui/inc/scui_def.hxx:44
enum CellShiftDisabledFlags Down
sc/source/ui/inc/scui_def.hxx:45
enum CellShiftDisabledFlags Right
-sc/source/ui/inc/scui_def.hxx:53
- enum CreateNameFlags Top
-sc/source/ui/inc/scui_def.hxx:54
- enum CreateNameFlags Left
-sc/source/ui/inc/scui_def.hxx:55
- enum CreateNameFlags Bottom
-sc/source/ui/inc/scui_def.hxx:56
- enum CreateNameFlags Right
sc/source/ui/inc/selectionstate.hxx:31
enum ScSelectionType SC_SELECTTYPE_EDITCELL
-sc/source/ui/inc/StatisticsInputOutputDialog.hxx:27
+sc/source/ui/inc/StatisticsInputOutputDialog.hxx:25
enum ScStatisticsInputOutputDialog::GroupedBy BY_ROW
-sc/source/ui/inc/StatisticsTwoVariableDialog.hxx:27
+sc/source/ui/inc/StatisticsTwoVariableDialog.hxx:25
enum ScStatisticsTwoVariableDialog::GroupedBy BY_ROW
-sc/source/ui/inc/tabview.hxx:84
- enum ScExtraEditViewManager::ModifierTagType Remover
-sc/source/ui/inc/tabview.hxx:84
- enum ScExtraEditViewManager::ModifierTagType Adder
-sc/source/ui/inc/tabview.hxx:123
+sc/source/ui/inc/tabview.hxx:130
enum ScTabView::BlockMode Normal
-sc/source/ui/inc/undobase.hxx:81
- enum ScBlockUndoMode SC_UNDO_SIMPLE
-sc/source/ui/inc/undobase.hxx:81
+sc/source/ui/inc/undobase.hxx:76
enum ScBlockUndoMode SC_UNDO_MANUALHEIGHT
+sc/source/ui/inc/undobase.hxx:76
+ enum ScBlockUndoMode SC_UNDO_SIMPLE
sc/source/ui/inc/validate.hxx:245
- enum ScValidationDlg::(anonymous at sc/source/ui/inc/validate.hxx:245:5) SLOTID
+ enum ScValidationDlg::(anonymous at /media/noel/disk2/libo6/sc/source/ui/inc/validate.hxx:245:5) SLOTID
sc/source/ui/inc/viewdata.hxx:67
enum ScMarkType SC_MARK_FILTERED
sc/source/ui/inc/viewdata.hxx:84
@@ -11410,141 +9220,119 @@ sc/source/ui/inc/viewdata.hxx:85
enum ScPasteFlags Border
sc/source/ui/inc/viewdata.hxx:93
enum ScDragSrc Undefined
-sc/source/ui/inc/viewdata.hxx:95
- enum ScDragSrc Table
-sc/source/ui/pagedlg/areasdlg.cxx:43
- enum (anonymous at sc/source/ui/pagedlg/areasdlg.cxx:41:1) SC_AREASDLG_PR_USER
-sc/source/ui/pagedlg/areasdlg.cxx:44
- enum (anonymous at sc/source/ui/pagedlg/areasdlg.cxx:41:1) SC_AREASDLG_PR_SELECT
-sc/source/ui/pagedlg/areasdlg.cxx:50
- enum (anonymous at sc/source/ui/pagedlg/areasdlg.cxx:48:1) SC_AREASDLG_RR_USER
-sc/source/ui/pagedlg/areasdlg.cxx:51
- enum (anonymous at sc/source/ui/pagedlg/areasdlg.cxx:48:1) SC_AREASDLG_RR_OFFSET
-sc/source/ui/unoobj/cellsuno.cxx:9292
+sc/source/ui/pagedlg/areasdlg.cxx:41
+ enum (anonymous at /media/noel/disk2/libo6/sc/source/ui/pagedlg/areasdlg.cxx:39:1) SC_AREASDLG_PR_USER
+sc/source/ui/pagedlg/areasdlg.cxx:42
+ enum (anonymous at /media/noel/disk2/libo6/sc/source/ui/pagedlg/areasdlg.cxx:39:1) SC_AREASDLG_PR_SELECT
+sc/source/ui/pagedlg/areasdlg.cxx:48
+ enum (anonymous at /media/noel/disk2/libo6/sc/source/ui/pagedlg/areasdlg.cxx:46:1) SC_AREASDLG_RR_USER
+sc/source/ui/pagedlg/areasdlg.cxx:49
+ enum (anonymous at /media/noel/disk2/libo6/sc/source/ui/pagedlg/areasdlg.cxx:46:1) SC_AREASDLG_RR_OFFSET
+sc/source/ui/unoobj/cellsuno.cxx:9287
enum ScUniqueFormatsEntry::EntryState STATE_COMPLEX
-sc/source/ui/unoobj/chart2uno.cxx:444
+sc/source/ui/unoobj/chart2uno.cxx:451
enum (anonymous namespace)::Chart2Positioner::GlueType GLUETYPE_COLS
-sc/source/ui/unoobj/chart2uno.cxx:445
+sc/source/ui/unoobj/chart2uno.cxx:452
enum (anonymous namespace)::Chart2Positioner::GlueType GLUETYPE_ROWS
-sc/source/ui/unoobj/chart2uno.cxx:446
+sc/source/ui/unoobj/chart2uno.cxx:453
enum (anonymous namespace)::Chart2Positioner::GlueType GLUETYPE_BOTH
-sc/source/ui/unoobj/chart2uno.cxx:598
+sc/source/ui/unoobj/chart2uno.cxx:604
enum (anonymous namespace)::State Glue
-sc/source/ui/unoobj/fielduno.cxx:154
+sc/source/ui/unoobj/fielduno.cxx:155
enum ScUnoCollectMode SC_UNO_COLLECT_COUNT
-sc/source/ui/view/prevloc.cxx:36
- enum ScPreviewLocationType SC_PLOC_NOTEMARK
sc/source/ui/view/prevloc.cxx:37
+ enum ScPreviewLocationType SC_PLOC_NOTEMARK
+sc/source/ui/view/prevloc.cxx:38
enum ScPreviewLocationType SC_PLOC_NOTETEXT
-sc/source/ui/view/tabview3.cxx:1402
- enum (anonymous at sc/source/ui/view/tabview3.cxx:1402:5) MOD_BOTH
-scaddins/source/analysis/analysishelper.hxx:491
+sc/source/ui/view/tabview3.cxx:1441
+ enum (anonymous at /media/noel/disk2/libo6/sc/source/ui/view/tabview3.cxx:1441:5) MOD_BOTH
+scaddins/source/analysis/analysishelper.hxx:480
enum sca::analysis::ComplListAppendHandl AH_IgnoreEmpty
-scaddins/source/analysis/analysishelper.hxx:521
+scaddins/source/analysis/analysishelper.hxx:510
+ enum sca::analysis::ConvertDataClass CDC_Time
+scaddins/source/analysis/analysishelper.hxx:510
+ enum sca::analysis::ConvertDataClass CDC_Mass
+scaddins/source/analysis/analysishelper.hxx:510
enum sca::analysis::ConvertDataClass CDC_Length
-scaddins/source/analysis/analysishelper.hxx:521
+scaddins/source/analysis/analysishelper.hxx:510
enum sca::analysis::ConvertDataClass CDC_Force
-scaddins/source/analysis/analysishelper.hxx:521
- enum sca::analysis::ConvertDataClass CDC_Power
-scaddins/source/analysis/analysishelper.hxx:521
- enum sca::analysis::ConvertDataClass CDC_Time
-scaddins/source/analysis/analysishelper.hxx:521
+scaddins/source/analysis/analysishelper.hxx:510
enum sca::analysis::ConvertDataClass CDC_Magnetism
-scaddins/source/analysis/analysishelper.hxx:521
- enum sca::analysis::ConvertDataClass CDC_Mass
-scaddins/source/analysis/analysishelper.hxx:521
- enum sca::analysis::ConvertDataClass CDC_Pressure
-scaddins/source/analysis/analysishelper.hxx:521
+scaddins/source/analysis/analysishelper.hxx:510
+ enum sca::analysis::ConvertDataClass CDC_Power
+scaddins/source/analysis/analysishelper.hxx:510
enum sca::analysis::ConvertDataClass CDC_Energy
-scaddins/source/analysis/analysishelper.hxx:522
+scaddins/source/analysis/analysishelper.hxx:510
+ enum sca::analysis::ConvertDataClass CDC_Pressure
+scaddins/source/analysis/analysishelper.hxx:511
+ enum sca::analysis::ConvertDataClass CDC_Temperature
+scaddins/source/analysis/analysishelper.hxx:511
enum sca::analysis::ConvertDataClass CDC_Volume
-scaddins/source/analysis/analysishelper.hxx:522
- enum sca::analysis::ConvertDataClass CDC_Speed
-scaddins/source/analysis/analysishelper.hxx:522
+scaddins/source/analysis/analysishelper.hxx:511
enum sca::analysis::ConvertDataClass CDC_Area
-scaddins/source/analysis/analysishelper.hxx:522
- enum sca::analysis::ConvertDataClass CDC_Temperature
+scaddins/source/analysis/analysishelper.hxx:511
+ enum sca::analysis::ConvertDataClass CDC_Speed
sd/inc/diadef.h:27
enum PresChange PRESCHANGE_SEMIAUTO
sd/inc/sdenumdef.hxx:27
enum SnapKind SK_POINT
-sd/inc/sdmod.hxx:58
+sd/inc/sdmod.hxx:51
enum SdOptionStreamMode SD_OPTION_LOAD
-sd/inc/sdxmlwrp.hxx:28
+sd/inc/sdxmlwrp.hxx:31
enum SdXMLFilterMode SDXMLMODE_Normal
-sd/source/filter/eppt/pptx-epptooxml.cxx:125
- enum oox::core::PPTXLayout LAYOUT_BLANK
-sd/source/filter/eppt/pptx-epptooxml.cxx:126
- enum oox::core::PPTXLayout LAYOUT_TITLE_SLIDE
-sd/source/filter/eppt/pptx-epptooxml.cxx:127
- enum oox::core::PPTXLayout LAYOUT_TITLE_CONTENT
-sd/source/filter/eppt/pptx-epptooxml.cxx:128
- enum oox::core::PPTXLayout LAYOUT_TITLE_2CONTENT
-sd/source/filter/eppt/pptx-epptooxml.cxx:129
- enum oox::core::PPTXLayout LAYOUT_TITLE
-sd/source/filter/eppt/pptx-epptooxml.cxx:130
- enum oox::core::PPTXLayout LAYOUT_CENTERED_TEXT
-sd/source/filter/eppt/pptx-epptooxml.cxx:131
- enum oox::core::PPTXLayout LAYOUT_TITLE_2CONTENT_CONTENT
-sd/source/filter/eppt/pptx-epptooxml.cxx:132
- enum oox::core::PPTXLayout LAYOUT_TITLE_CONTENT_2CONTENT
-sd/source/filter/eppt/pptx-epptooxml.cxx:133
- enum oox::core::PPTXLayout LAYOUT_TITLE_2CONTENT_OVER_CONTENT
sd/source/filter/eppt/pptx-epptooxml.cxx:134
- enum oox::core::PPTXLayout LAYOUT_TITLE_CONTENT_OVER_CONTENT
+ enum PPTXLayout LAYOUT_BLANK
sd/source/filter/eppt/pptx-epptooxml.cxx:135
- enum oox::core::PPTXLayout LAYOUT_TITLE_4CONTENT
+ enum PPTXLayout LAYOUT_TITLE_SLIDE
sd/source/filter/eppt/pptx-epptooxml.cxx:136
- enum oox::core::PPTXLayout LAYOUT_TITLE_6CONTENT
-sd/source/ui/inc/DrawController.hxx:94
+ enum PPTXLayout LAYOUT_TITLE_CONTENT
+sd/source/filter/eppt/pptx-epptooxml.cxx:137
+ enum PPTXLayout LAYOUT_TITLE_2CONTENT
+sd/source/filter/eppt/pptx-epptooxml.cxx:138
+ enum PPTXLayout LAYOUT_TITLE
+sd/source/filter/eppt/pptx-epptooxml.cxx:139
+ enum PPTXLayout LAYOUT_CENTERED_TEXT
+sd/source/filter/eppt/pptx-epptooxml.cxx:140
+ enum PPTXLayout LAYOUT_TITLE_2CONTENT_CONTENT
+sd/source/filter/eppt/pptx-epptooxml.cxx:141
+ enum PPTXLayout LAYOUT_TITLE_CONTENT_2CONTENT
+sd/source/filter/eppt/pptx-epptooxml.cxx:142
+ enum PPTXLayout LAYOUT_TITLE_2CONTENT_OVER_CONTENT
+sd/source/filter/eppt/pptx-epptooxml.cxx:143
+ enum PPTXLayout LAYOUT_TITLE_CONTENT_OVER_CONTENT
+sd/source/filter/eppt/pptx-epptooxml.cxx:144
+ enum PPTXLayout LAYOUT_TITLE_4CONTENT
+sd/source/filter/eppt/pptx-epptooxml.cxx:145
+ enum PPTXLayout LAYOUT_TITLE_6CONTENT
+sd/source/ui/inc/DrawController.hxx:92
enum sd::DrawController::PropertyHandle PROPERTY_UPDATEACC
-sd/source/ui/inc/DrawController.hxx:95
+sd/source/ui/inc/DrawController.hxx:93
enum sd::DrawController::PropertyHandle PROPERTY_PAGE_CHANGE
-sd/source/ui/inc/navigatr.hxx:42
- enum NavState TableUpdate
-sd/source/ui/inc/navigatr.hxx:43
- enum NavState BtnFirstEnabled
-sd/source/ui/inc/navigatr.hxx:44
- enum NavState BtnFirstDisabled
-sd/source/ui/inc/navigatr.hxx:45
- enum NavState BtnPrevEnabled
-sd/source/ui/inc/navigatr.hxx:46
- enum NavState BtnPrevDisabled
-sd/source/ui/inc/navigatr.hxx:47
- enum NavState BtnLastEnabled
-sd/source/ui/inc/navigatr.hxx:48
- enum NavState BtnLastDisabled
-sd/source/ui/inc/navigatr.hxx:49
- enum NavState BtnNextEnabled
-sd/source/ui/inc/navigatr.hxx:50
- enum NavState BtnNextDisabled
-sd/source/ui/inc/ToolBarManager.hxx:123
+sd/source/ui/inc/ToolBarManager.hxx:122
enum sd::ToolBarManager::ToolBarGroup Permanent
-sd/source/ui/inc/ToolBarManager.hxx:124
+sd/source/ui/inc/ToolBarManager.hxx:123
enum sd::ToolBarManager::ToolBarGroup Function
-sd/source/ui/inc/ToolBarManager.hxx:125
+sd/source/ui/inc/ToolBarManager.hxx:124
enum sd::ToolBarManager::ToolBarGroup CommonTask
-sd/source/ui/inc/ToolBarManager.hxx:126
+sd/source/ui/inc/ToolBarManager.hxx:125
enum sd::ToolBarManager::ToolBarGroup MasterMode
-sd/source/ui/inc/tools/ConfigurationAccess.hxx:42
+sd/source/ui/inc/tools/ConfigurationAccess.hxx:44
enum sd::tools::ConfigurationAccess::WriteMode READ_WRITE
-sd/source/ui/inc/tools/IdleDetection.hxx:36
+sd/source/ui/inc/tools/IdleDetection.hxx:35
enum sd::tools::IdleState SystemEventPending
-sd/source/ui/inc/tools/IdleDetection.hxx:42
- enum sd::tools::IdleState FullScreenShowActive
-sd/source/ui/inc/tools/IdleDetection.hxx:46
+sd/source/ui/inc/tools/IdleDetection.hxx:45
enum sd::tools::IdleState WindowShowActive
-sd/source/ui/inc/tools/IdleDetection.hxx:50
+sd/source/ui/inc/tools/IdleDetection.hxx:49
enum sd::tools::IdleState WindowPainting
-sd/source/ui/remotecontrol/BluetoothServer.cxx:96
+sd/source/ui/remotecontrol/BluetoothServer.cxx:93
enum sd::BluetoothServer::Impl::BluezVersion BLUEZ4
sd/source/ui/remotecontrol/BluetoothServer.hxx:48
- enum sd::BluetoothServer::(anonymous at sd/source/ui/remotecontrol/BluetoothServer.hxx:48:9) DISCOVERABLE
-sd/source/ui/sidebar/MasterPageContainer.cxx:130
+ enum sd::BluetoothServer::(anonymous at /media/noel/disk2/libo6/sd/source/ui/remotecontrol/BluetoothServer.hxx:48:9) DISCOVERABLE
+sd/source/ui/sidebar/MasterPageContainer.cxx:129
enum sd::sidebar::MasterPageContainer::Implementation::InitializationState INITIALIZING
-sd/source/ui/sidebar/MasterPageContainer.cxx:130
+sd/source/ui/sidebar/MasterPageContainer.cxx:129
enum sd::sidebar::MasterPageContainer::Implementation::InitializationState INITIALIZED
-sd/source/ui/sidebar/MasterPageContainer.hxx:68
+sd/source/ui/sidebar/MasterPageContainer.hxx:66
enum sd::sidebar::MasterPageContainer::PreviewSize LARGE
sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx:34
enum sd::slidesorter::cache::RequestPriorityClass VISIBLE_NO_PREVIEW
@@ -11552,84 +9340,50 @@ sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx:36
enum sd::slidesorter::cache::RequestPriorityClass VISIBLE_OUTDATED_PREVIEW
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:46
enum sd::slidesorter::controller::Animator::AnimationMode AM_Immediate
-sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx:47
+sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx:46
enum sd::slidesorter::controller::InsertionIndicatorHandler::Mode MoveMode
-sd/source/ui/slidesorter/inc/model/SlsVisualState.hxx:38
- enum sd::slidesorter::model::VisualState::State VS_Selected
-sd/source/ui/slidesorter/inc/model/SlsVisualState.hxx:39
- enum sd::slidesorter::model::VisualState::State VS_Focused
-sd/source/ui/slidesorter/inc/model/SlsVisualState.hxx:40
- enum sd::slidesorter::model::VisualState::State VS_Current
-sd/source/ui/slidesorter/inc/model/SlsVisualState.hxx:41
- enum sd::slidesorter::model::VisualState::State VS_Excluded
sd/source/ui/slidesorter/inc/view/SlsPageObjectLayouter.hxx:80
enum sd::slidesorter::view::PageObjectLayouter::CoordinateSystem ModelCoordinateSystem
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:65
- enum sd::slidesorter::view::Theme::ColorType Color_Background
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:66
- enum sd::slidesorter::view::Theme::ColorType Color_PageNumberDefault
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:67
- enum sd::slidesorter::view::Theme::ColorType Color_PageNumberHover
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:68
- enum sd::slidesorter::view::Theme::ColorType Color_PageNumberHighContrast
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:69
- enum sd::slidesorter::view::Theme::ColorType Color_PageNumberBrightBackground
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:70
- enum sd::slidesorter::view::Theme::ColorType Color_PageNumberDarkBackground
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:71
- enum sd::slidesorter::view::Theme::ColorType Color_Selection
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:72
- enum sd::slidesorter::view::Theme::ColorType Color_PreviewBorder
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:73
- enum sd::slidesorter::view::Theme::ColorType Color_PageCountFontColor
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:74
enum sd::slidesorter::view::Theme::ColorType ColorType_Size_
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:79
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:77
enum sd::slidesorter::view::Theme::GradientColorType Gradient_NormalPage
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:80
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:78
enum sd::slidesorter::view::Theme::GradientColorType Gradient_SelectedPage
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:81
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:79
enum sd::slidesorter::view::Theme::GradientColorType Gradient_SelectedAndFocusedPage
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:82
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:80
enum sd::slidesorter::view::Theme::GradientColorType Gradient_MouseOverPage
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:83
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:81
enum sd::slidesorter::view::Theme::GradientColorType Gradient_MouseOverSelected
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:84
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:82
enum sd::slidesorter::view::Theme::GradientColorType Gradient_MouseOverSelectedAndFocusedPage
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:85
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:83
enum sd::slidesorter::view::Theme::GradientColorType Gradient_FocusedPage
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:86
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:84
enum sd::slidesorter::view::Theme::GradientColorType GradientColorType_Size_
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:109
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:107
enum sd::slidesorter::view::Theme::IconType Icon_RawShadow
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:110
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:108
enum sd::slidesorter::view::Theme::IconType Icon_RawInsertShadow
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:111
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:109
enum sd::slidesorter::view::Theme::IconType Icon_HideSlideOverlay
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:112
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:110
enum sd::slidesorter::view::Theme::IconType Icon_FocusBorder
-sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:113
+sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:111
enum sd::slidesorter::view::Theme::IconType IconType_Size_
-sd/source/ui/unoidl/unoobj.cxx:1139
- enum FoundFlags ClickAction
-sd/source/ui/unoidl/unoobj.cxx:1140
- enum FoundFlags Bookmark
-sd/source/ui/unoidl/unoobj.cxx:1141
- enum FoundFlags Effect
-sd/source/ui/unoidl/unoobj.cxx:1142
- enum FoundFlags PlayFull
-sd/source/ui/unoidl/unoobj.cxx:1143
- enum FoundFlags Verb
-sd/source/ui/unoidl/unoobj.cxx:1144
- enum FoundFlags SoundUrl
-sd/source/ui/unoidl/unoobj.cxx:1145
- enum FoundFlags Speed
-sd/source/ui/unoidl/unoobj.cxx:1146
- enum FoundFlags EventType
-sd/source/ui/unoidl/unoobj.cxx:1147
- enum FoundFlags Macro
-sd/source/ui/unoidl/unoobj.cxx:1148
- enum FoundFlags Library
+sd/source/ui/table/TableDesignPane.hxx:46
+ enum sd::TableCheckBox CB_HEADER_ROW
+sd/source/ui/table/TableDesignPane.hxx:47
+ enum sd::TableCheckBox CB_TOTAL_ROW
+sd/source/ui/table/TableDesignPane.hxx:48
+ enum sd::TableCheckBox CB_BANDED_ROWS
+sd/source/ui/table/TableDesignPane.hxx:49
+ enum sd::TableCheckBox CB_FIRST_COLUMN
+sd/source/ui/table/TableDesignPane.hxx:50
+ enum sd::TableCheckBox CB_LAST_COLUMN
+sd/source/ui/table/TableDesignPane.hxx:52
+ enum sd::TableCheckBox CB_COUNT
sdext/source/minimizer/pppoptimizertoken.hxx:50
enum PPPOptimizerTokenEnum TK_FileSizeDestination
sdext/source/minimizer/pppoptimizertoken.hxx:51
@@ -11754,116 +9508,98 @@ sdext/source/minimizer/pppoptimizertoken.hxx:136
enum PPPOptimizerTokenEnum STR_CREATING_OLE_REPLACEMENTS
sdext/source/minimizer/pppoptimizertoken.hxx:137
enum PPPOptimizerTokenEnum STR_FILESIZESEPARATOR
-sdext/source/minimizer/pppoptimizertoken.hxx:139
+sdext/source/minimizer/pppoptimizertoken.hxx:138
+ enum PPPOptimizerTokenEnum STR_FILENAME_SUFFIX
+sdext/source/minimizer/pppoptimizertoken.hxx:140
enum PPPOptimizerTokenEnum TK_NotFound
+sdext/source/pdfimport/inc/genericelements.hxx:203
+ enum pdfi::ParagraphElement::ParagraphType Normal
sdext/source/pdfimport/tree/drawtreevisiting.hxx:97
enum pdfi::DrawXmlEmitter::DocType IMPRESS_DOC
-sdext/source/pdfimport/tree/genericelements.hxx:203
- enum pdfi::ParagraphElement::ParagraphType Normal
-sdext/source/pdfimport/wrapper/wrapper.cxx:96
+sdext/source/pdfimport/wrapper/wrapper.cxx:104
enum pdfi::(anonymous namespace)::parseKey HYPERLINK
-sdext/source/pdfimport/wrapper/wrapper.cxx:97
+sdext/source/pdfimport/wrapper/wrapper.cxx:105
enum pdfi::(anonymous namespace)::parseKey INTERSECTCLIP
-sdext/source/pdfimport/wrapper/wrapper.cxx:98
+sdext/source/pdfimport/wrapper/wrapper.cxx:106
enum pdfi::(anonymous namespace)::parseKey INTERSECTEOCLIP
-sdext/source/pdfimport/wrapper/wrapper.cxx:99
+sdext/source/pdfimport/wrapper/wrapper.cxx:107
enum pdfi::(anonymous namespace)::parseKey POPSTATE
-sdext/source/pdfimport/wrapper/wrapper.cxx:100
+sdext/source/pdfimport/wrapper/wrapper.cxx:108
enum pdfi::(anonymous namespace)::parseKey PUSHSTATE
-sdext/source/pdfimport/wrapper/wrapper.cxx:103
+sdext/source/pdfimport/wrapper/wrapper.cxx:111
enum pdfi::(anonymous namespace)::parseKey SETBLENDMODE
-sdext/source/pdfimport/wrapper/wrapper.cxx:104
+sdext/source/pdfimport/wrapper/wrapper.cxx:112
enum pdfi::(anonymous namespace)::parseKey SETFILLCOLOR
-sdext/source/pdfimport/wrapper/wrapper.cxx:105
+sdext/source/pdfimport/wrapper/wrapper.cxx:113
enum pdfi::(anonymous namespace)::parseKey SETFONT
-sdext/source/pdfimport/wrapper/wrapper.cxx:106
+sdext/source/pdfimport/wrapper/wrapper.cxx:114
enum pdfi::(anonymous namespace)::parseKey SETLINECAP
-sdext/source/pdfimport/wrapper/wrapper.cxx:107
+sdext/source/pdfimport/wrapper/wrapper.cxx:115
enum pdfi::(anonymous namespace)::parseKey SETLINEDASH
-sdext/source/pdfimport/wrapper/wrapper.cxx:108
+sdext/source/pdfimport/wrapper/wrapper.cxx:116
enum pdfi::(anonymous namespace)::parseKey SETLINEJOIN
-sdext/source/pdfimport/wrapper/wrapper.cxx:109
+sdext/source/pdfimport/wrapper/wrapper.cxx:117
enum pdfi::(anonymous namespace)::parseKey SETLINEWIDTH
-sdext/source/pdfimport/wrapper/wrapper.cxx:110
+sdext/source/pdfimport/wrapper/wrapper.cxx:118
enum pdfi::(anonymous namespace)::parseKey SETMITERLIMIT
-sdext/source/pdfimport/wrapper/wrapper.cxx:112
+sdext/source/pdfimport/wrapper/wrapper.cxx:120
enum pdfi::(anonymous namespace)::parseKey SETSTROKECOLOR
-sdext/source/pdfimport/wrapper/wrapper.cxx:114
+sdext/source/pdfimport/wrapper/wrapper.cxx:122
enum pdfi::(anonymous namespace)::parseKey SETTRANSFORMATION
-sdext/source/pdfimport/wrapper/wrapper.cxx:117
+sdext/source/pdfimport/wrapper/wrapper.cxx:125
enum pdfi::(anonymous namespace)::parseKey UPDATEBLENDMODE
-sdext/source/pdfimport/wrapper/wrapper.cxx:120
+sdext/source/pdfimport/wrapper/wrapper.cxx:128
enum pdfi::(anonymous namespace)::parseKey UPDATEFILLOPACITY
sdext/source/presenter/PresenterBitmapContainer.hxx:67
enum sdext::presenter::PresenterBitmapContainer::BitmapDescriptor::TexturingMode Once
sdext/source/presenter/PresenterConfigurationAccess.hxx:51
enum sdext::presenter::PresenterConfigurationAccess::WriteMode READ_WRITE
-sdext/source/presenter/PresenterPaneBorderPainter.cxx:89
+sdext/source/presenter/PresenterPaneBorderPainter.cxx:88
enum sdext::presenter::(anonymous namespace)::RendererPaneStyle::Anchor Center
-sdext/source/presenter/PresenterScrollBar.hxx:144
+sdext/source/presenter/PresenterScrollBar.hxx:146
enum sdext::presenter::PresenterScrollBar::Area Pager
-sdext/source/presenter/PresenterScrollBar.hxx:144
+sdext/source/presenter/PresenterScrollBar.hxx:146
enum sdext::presenter::PresenterScrollBar::Area Total
sdext/source/presenter/PresenterWindowManager.hxx:92
enum sdext::presenter::PresenterWindowManager::LayoutMode LM_Generic
-sfx2/source/control/bindings.cxx:123
- enum SfxPopupAction DELETE
-sfx2/source/control/bindings.cxx:124
- enum SfxPopupAction HIDE
-sfx2/source/control/bindings.cxx:125
- enum SfxPopupAction SHOW
-sfx2/source/control/unoctitm.cxx:93
+sfx2/source/control/unoctitm.cxx:86
enum URLTypeId URLType_BOOL
-sfx2/source/control/unoctitm.cxx:94
+sfx2/source/control/unoctitm.cxx:87
enum URLTypeId URLType_BYTE
-sfx2/source/control/unoctitm.cxx:95
+sfx2/source/control/unoctitm.cxx:88
enum URLTypeId URLType_SHORT
-sfx2/source/control/unoctitm.cxx:96
+sfx2/source/control/unoctitm.cxx:89
enum URLTypeId URLType_LONG
-sfx2/source/control/unoctitm.cxx:97
+sfx2/source/control/unoctitm.cxx:90
enum URLTypeId URLType_HYPER
-sfx2/source/control/unoctitm.cxx:98
+sfx2/source/control/unoctitm.cxx:91
enum URLTypeId URLType_STRING
-sfx2/source/control/unoctitm.cxx:99
+sfx2/source/control/unoctitm.cxx:92
enum URLTypeId URLType_FLOAT
-sfx2/source/control/unoctitm.cxx:100
+sfx2/source/control/unoctitm.cxx:93
enum URLTypeId URLType_DOUBLE
-sfx2/source/control/unoctitm.cxx:101
+sfx2/source/control/unoctitm.cxx:94
enum URLTypeId URLType_COUNT
-sfx2/source/dialog/filedlghelper.cxx:817
+sfx2/source/dialog/filedlghelper.cxx:821
enum sfx2::open_or_save_t UNDEFINED
-sfx2/source/dialog/filedlghelper.cxx:817
+sfx2/source/dialog/filedlghelper.cxx:821
enum sfx2::open_or_save_t SAVE
-sfx2/source/dialog/securitypage.cxx:49
+sfx2/source/dialog/securitypage.cxx:47
enum (anonymous namespace)::RedliningMode RL_CALC
sfx2/source/doc/docmacromode.cxx:158
enum AutoConfirmation eAutoConfirmReject
sfx2/source/inc/docundomanager.hxx:72
enum SfxModelGuard::AllowedModelState E_FULLY_ALIVE
-sfx2/source/inc/templdgi.hxx:147
- enum StyleFlags UpdateFamily
-sfx2/source/inc/templdgi.hxx:147
- enum StyleFlags UpdateFamilyList
-sfx2/source/inc/workwin.hxx:79
+sfx2/source/inc/workwin.hxx:72
enum SfxChildVisibility NOT_VISIBLE
-sfx2/source/inc/workwin.hxx:80
- enum SfxChildVisibility ACTIVE
-sfx2/source/inc/workwin.hxx:81
- enum SfxChildVisibility NOT_HIDDEN
-sfx2/source/inc/workwin.hxx:82
+sfx2/source/inc/workwin.hxx:75
enum SfxChildVisibility FITS_IN
-sfx2/source/sidebar/SidebarController.cxx:76
+sfx2/source/sidebar/SidebarController.cxx:77
enum sfx2::sidebar::(anonymous namespace)::MenuId MID_CUSTOMIZATION
slideshow/source/engine/shapes/viewshape.hxx:42
enum UpdateFlags Transformation
-slideshow/source/engine/shapes/viewshape.hxx:43
- enum UpdateFlags Clip
-slideshow/source/engine/shapes/viewshape.hxx:44
- enum UpdateFlags Alpha
slideshow/source/engine/shapes/viewshape.hxx:45
enum UpdateFlags Position
-slideshow/source/engine/shapes/viewshape.hxx:46
- enum UpdateFlags Content
slideshow/source/engine/shapes/viewshape.hxx:47
enum UpdateFlags Force
slideshow/source/engine/slide/layer.hxx:206
@@ -11899,21 +9635,21 @@ soltools/cpp/_lex.c:60
soltools/cpp/_lex.c:60
int COM1
soltools/cpp/_lex.c:61
+ int SHARP1
+soltools/cpp/_lex.c:61
int STAR1
soltools/cpp/_lex.c:61
int PLUS1
soltools/cpp/_lex.c:61
- int PCT1
-soltools/cpp/_lex.c:61
int MINUS1
soltools/cpp/_lex.c:61
int CC1
soltools/cpp/_lex.c:61
+ int PCT1
+soltools/cpp/_lex.c:61
int WS1
soltools/cpp/_lex.c:61
int CC2
-soltools/cpp/_lex.c:61
- int SHARP1
soltools/cpp/_lex.c:62
int LT2
soltools/cpp/_lex.c:62
@@ -11939,19 +9675,19 @@ soltools/cpp/cpp.h:43
soltools/cpp/cpp.h:43
int MMINUS
soltools/cpp/cpp.h:44
- int DOT
-soltools/cpp/cpp.h:44
int SKET
soltools/cpp/cpp.h:44
int SBRA
soltools/cpp/cpp.h:44
+ int DOT
+soltools/cpp/cpp.h:44
int ARROW
soltools/cpp/cpp.h:46
- int CBRA
-soltools/cpp/cpp.h:46
int CKET
soltools/cpp/cpp.h:46
int SEMIC
+soltools/cpp/cpp.h:46
+ int CBRA
soltools/cpp/cpp.h:47
int ASSLASH
soltools/cpp/cpp.h:47
@@ -11978,39 +9714,23 @@ soltools/cpp/cpp.h:50
int COMMENT
soltools/cpp/cpp.h:57
int KSTDC
-soltools/cpp/cpp.h:138
- int ERROR
-soltools/cpp/cpp.h:138
+soltools/cpp/cpp.h:137
int INFO
+soltools/cpp/cpp.h:137
+ int ERROR
sot/source/sdstor/stgio.hxx:35
- enum FAT_ERROR FAT_WRONGLENGTH
+ enum FatError WrongLength
sot/source/sdstor/stgio.hxx:36
- enum FAT_ERROR FAT_UNREFCHAIN
+ enum FatError UnrefChain
sot/source/sdstor/stgio.hxx:37
- enum FAT_ERROR FAT_OUTOFBOUNDS
+ enum FatError OutOfBounds
sot/source/sdstor/stgio.hxx:39
- enum FAT_ERROR FAT_INMEMORYERROR
+ enum FatError InMemoryError
sot/source/sdstor/stgio.hxx:40
- enum FAT_ERROR FAT_ONFILEERROR
+ enum FatError OnFileError
sot/source/sdstor/stgio.hxx:41
- enum FAT_ERROR FAT_BOTHERROR
-sot/source/sdstor/ucbstorage.cxx:399
- enum RepresentMode svstream
-starmath/inc/node.hxx:58
- enum FontChangeMask Face
-starmath/inc/node.hxx:59
- enum FontChangeMask Size
-starmath/inc/node.hxx:60
- enum FontChangeMask Bold
-starmath/inc/node.hxx:61
- enum FontChangeMask Italic
-starmath/inc/node.hxx:62
- enum FontChangeMask Color
-starmath/inc/node.hxx:63
- enum FontChangeMask Phantom
-starmath/inc/node.hxx:64
- enum FontChangeMask HorAlign
-starmath/inc/node.hxx:89
+ enum FatError BothError
+starmath/inc/node.hxx:92
enum SmNodeType Rectangle
starmath/inc/token.hxx:30
enum TG Oper
@@ -12059,15 +9779,15 @@ starmath/inc/token.hxx:59
starmath/inc/token.hxx:59
enum SmTokenType TINTERSECT
starmath/inc/token.hxx:62
- enum SmTokenType TLE
-starmath/inc/token.hxx:62
enum SmTokenType TTIMES
starmath/inc/token.hxx:62
+ enum SmTokenType TLE
+starmath/inc/token.hxx:62
enum SmTokenType TGE
starmath/inc/token.hxx:63
- enum SmTokenType TLL
-starmath/inc/token.hxx:63
enum SmTokenType TGG
+starmath/inc/token.hxx:63
+ enum SmTokenType TLL
starmath/inc/token.hxx:75
enum SmTokenType TNEQ
starmath/inc/token.hxx:76
@@ -12081,13 +9801,13 @@ starmath/inc/token.hxx:76
starmath/inc/token.hxx:76
enum SmTokenType TPROP
starmath/inc/token.hxx:77
- enum SmTokenType TAPPROX
-starmath/inc/token.hxx:77
enum SmTokenType TPARALLEL
starmath/inc/token.hxx:77
+ enum SmTokenType TIN
+starmath/inc/token.hxx:77
enum SmTokenType TORTHO
starmath/inc/token.hxx:77
- enum SmTokenType TIN
+ enum SmTokenType TAPPROX
starmath/inc/token.hxx:77
enum SmTokenType TNOTIN
starmath/inc/token.hxx:78
@@ -12099,13 +9819,13 @@ starmath/inc/token.hxx:78
starmath/inc/token.hxx:78
enum SmTokenType TSUPSET
starmath/inc/token.hxx:79
+ enum SmTokenType TDIV
+starmath/inc/token.hxx:79
enum SmTokenType TOPLUS
starmath/inc/token.hxx:79
enum SmTokenType TOTIMES
starmath/inc/token.hxx:79
enum SmTokenType TOMINUS
-starmath/inc/token.hxx:79
- enum SmTokenType TDIV
starmath/inc/token.hxx:80
enum SmTokenType TTRANSR
starmath/inc/token.hxx:80
@@ -12113,19 +9833,19 @@ starmath/inc/token.hxx:80
starmath/inc/token.hxx:80
enum SmTokenType TTRANSL
starmath/inc/token.hxx:89
- enum SmTokenType TLESLANT
-starmath/inc/token.hxx:89
enum SmTokenType TODOT
starmath/inc/token.hxx:89
+ enum SmTokenType TLESLANT
+starmath/inc/token.hxx:89
enum SmTokenType TNSUBSET
starmath/inc/token.hxx:89
enum SmTokenType TGESLANT
starmath/inc/token.hxx:90
enum SmTokenType TNSUPSETEQ
starmath/inc/token.hxx:90
- enum SmTokenType TNSUBSETEQ
-starmath/inc/token.hxx:90
enum SmTokenType TNSUPSET
+starmath/inc/token.hxx:90
+ enum SmTokenType TNSUBSETEQ
starmath/inc/token.hxx:91
enum SmTokenType TNI
starmath/inc/token.hxx:93
@@ -12143,76 +9863,76 @@ starmath/inc/token.hxx:99
starmath/inc/token.hxx:100
enum SmTokenType TSUCCEEDSEQUIV
starmath/inc/token.hxx:100
- enum SmTokenType TNOTPRECEDES
+ enum SmTokenType TNOTSUCCEEDS
starmath/inc/token.hxx:100
enum SmTokenType TPRECEDESEQUIV
starmath/inc/token.hxx:100
- enum SmTokenType TNOTSUCCEEDS
-starmath/source/mathmlattr.hxx:32
+ enum SmTokenType TNOTPRECEDES
+starmath/source/mathmlattr.hxx:27
enum MathMLLengthUnit Ex
-starmath/source/mathmlattr.hxx:33
+starmath/source/mathmlattr.hxx:28
enum MathMLLengthUnit Px
-starmath/source/mathmlattr.hxx:34
+starmath/source/mathmlattr.hxx:29
enum MathMLLengthUnit In
-starmath/source/mathmlattr.hxx:35
+starmath/source/mathmlattr.hxx:30
enum MathMLLengthUnit Cm
-starmath/source/mathmlattr.hxx:36
+starmath/source/mathmlattr.hxx:31
enum MathMLLengthUnit Mm
-starmath/source/mathmlattr.hxx:37
+starmath/source/mathmlattr.hxx:32
enum MathMLLengthUnit Pt
-starmath/source/mathmlattr.hxx:38
+starmath/source/mathmlattr.hxx:33
enum MathMLLengthUnit Pc
-starmath/source/mathmlattr.hxx:39
+starmath/source/mathmlattr.hxx:34
enum MathMLLengthUnit Percent
-starmath/source/mathmlimport.hxx:256
+starmath/source/mathmlimport.hxx:197
enum SmXMLMathElemTokenMap XML_TOK_MATH
-starmath/source/ooxmlimport.cxx:380
+starmath/source/ooxmlimport.cxx:383
enum operation_t noBar
-stoc/source/inspect/introspection.cxx:1870
+stoc/source/inspect/introspection.cxx:1863
enum MethodType GETSET_METHOD
-stoc/source/inspect/introspection.cxx:1872
+stoc/source/inspect/introspection.cxx:1865
enum MethodType REMOVE_LISTENER_METHOD
stoc/source/security/permissions.h:38
enum stoc_sec::Permission::t_type ALL
-store/source/stordata.hxx:615
+store/source/stordata.hxx:580
enum store::OStoreDirectoryPageData::ChunkScope SCOPE_UNKNOWN
svgio/inc/svgmarkernode.hxx:37
enum svgio::svgreader::SvgMarkerNode::MarkerUnits userSpaceOnUse
-svgio/inc/svgnode.hxx:53
+svgio/inc/svgnode.hxx:52
enum svgio::svgreader::XmlSpace XmlSpace_preserve
-svgio/inc/svgnode.hxx:59
+svgio/inc/svgnode.hxx:58
enum svgio::svgreader::Display Display_inline
-svgio/inc/svgnode.hxx:60
+svgio/inc/svgnode.hxx:59
enum svgio::svgreader::Display Display_block
-svgio/inc/svgnode.hxx:61
+svgio/inc/svgnode.hxx:60
enum svgio::svgreader::Display Display_list_item
-svgio/inc/svgnode.hxx:62
+svgio/inc/svgnode.hxx:61
enum svgio::svgreader::Display Display_run_in
-svgio/inc/svgnode.hxx:63
+svgio/inc/svgnode.hxx:62
enum svgio::svgreader::Display Display_compact
-svgio/inc/svgnode.hxx:64
+svgio/inc/svgnode.hxx:63
enum svgio::svgreader::Display Display_marker
-svgio/inc/svgnode.hxx:65
+svgio/inc/svgnode.hxx:64
enum svgio::svgreader::Display Display_table
-svgio/inc/svgnode.hxx:66
+svgio/inc/svgnode.hxx:65
enum svgio::svgreader::Display Display_inline_table
-svgio/inc/svgnode.hxx:67
+svgio/inc/svgnode.hxx:66
enum svgio::svgreader::Display Display_table_row_group
-svgio/inc/svgnode.hxx:68
+svgio/inc/svgnode.hxx:67
enum svgio::svgreader::Display Display_table_header_group
-svgio/inc/svgnode.hxx:69
+svgio/inc/svgnode.hxx:68
enum svgio::svgreader::Display Display_table_footer_group
-svgio/inc/svgnode.hxx:70
+svgio/inc/svgnode.hxx:69
enum svgio::svgreader::Display Display_table_row
-svgio/inc/svgnode.hxx:71
+svgio/inc/svgnode.hxx:70
enum svgio::svgreader::Display Display_table_column_group
-svgio/inc/svgnode.hxx:72
+svgio/inc/svgnode.hxx:71
enum svgio::svgreader::Display Display_table_column
-svgio/inc/svgnode.hxx:73
+svgio/inc/svgnode.hxx:72
enum svgio::svgreader::Display Display_table_cell
-svgio/inc/svgnode.hxx:74
+svgio/inc/svgnode.hxx:73
enum svgio::svgreader::Display Display_table_caption
-svgio/inc/svgnode.hxx:76
+svgio/inc/svgnode.hxx:75
enum svgio::svgreader::Display Display_inherit
svgio/inc/svgstyleattributes.hxx:47
enum svgio::svgreader::StrokeLinecap StrokeLinecap_butt
@@ -12220,31 +9940,23 @@ svgio/inc/svgstyleattributes.hxx:55
enum svgio::svgreader::StrokeLinejoin StrokeLinejoin_miter
svgio/inc/svgstyleattributes.hxx:97
enum svgio::svgreader::FontStyle FontStyle_normal
-svgio/inc/svgstyleattributes.hxx:104
- enum svgio::svgreader::FontVariant FontVariant_notset
-svgio/inc/svgstyleattributes.hxx:105
- enum svgio::svgreader::FontVariant FontVariant_normal
-svgio/inc/svgstyleattributes.hxx:106
- enum svgio::svgreader::FontVariant FontVariant_small_caps
-svgio/inc/svgstyleattributes.hxx:141
+svgio/inc/svgstyleattributes.hxx:134
enum svgio::svgreader::TextDecoration TextDecoration_none
-svgio/inc/svgstyleattributes.hxx:145
+svgio/inc/svgstyleattributes.hxx:138
enum svgio::svgreader::TextDecoration TextDecoration_blink
-svgio/inc/svgstyleattributes.hxx:160
+svgio/inc/svgstyleattributes.hxx:153
enum svgio::svgreader::FillRule FillRule_evenodd
-svgio/inc/svgstyleattributes.hxx:165
+svgio/inc/svgstyleattributes.hxx:158
enum svgio::svgreader::BaselineShift BaselineShift_Baseline
-svgio/inc/svgstyleattributes.hxx:176
- enum svgio::svgreader::Visibility Visibility_hidden
-svgio/inc/svgstyleattributes.hxx:177
+svgio/inc/svgstyleattributes.hxx:170
enum svgio::svgreader::Visibility Visibility_collapse
svgio/inc/svgtoken.hxx:44
enum svgio::svgreader::SVGToken SVGTokenXmlns
-svgio/inc/svgtools.hxx:60
+svgio/inc/svgtools.hxx:56
enum svgio::svgreader::NumberType length
-svgio/inc/svgtools.hxx:143
+svgio/inc/svgtools.hxx:139
enum svgio::svgreader::SvgAlign Align_xMinYMin
-svgio/source/svgreader/svgtools.cxx:572
+svgio/source/svgreader/svgtools.cxx:559
enum DegreeType rad
svl/source/misc/adrparse.cxx:26
enum (anonymous namespace)::ElementType ELEMENT_START
@@ -12252,168 +9964,76 @@ svl/source/misc/strmadpt.cxx:44
enum SvDataPipe_Impl::SeekResult SEEK_BEFORE_MARKED
svl/source/misc/strmadpt.cxx:44
enum SvDataPipe_Impl::SeekResult SEEK_PAST_END
+svl/source/numbers/zforscan.hxx:45
+ enum ImpSvNumberformatScan::KeywordLocalization LocaleLegacy
svtools/inc/table/tablecontrolinterface.hxx:85
enum svt::table::TableCellArea CellContent
-svtools/source/config/htmlcfg.cxx:36
- enum HtmlCfgFlags UnknownTags
svtools/source/config/htmlcfg.cxx:37
- enum HtmlCfgFlags StarBasic
+ enum HtmlCfgFlags UnknownTags
svtools/source/config/htmlcfg.cxx:38
- enum HtmlCfgFlags LocalGrf
+ enum HtmlCfgFlags StarBasic
svtools/source/config/htmlcfg.cxx:39
- enum HtmlCfgFlags PrintLayoutExtension
+ enum HtmlCfgFlags LocalGrf
svtools/source/config/htmlcfg.cxx:40
- enum HtmlCfgFlags IgnoreFontFamily
+ enum HtmlCfgFlags PrintLayoutExtension
svtools/source/config/htmlcfg.cxx:41
- enum HtmlCfgFlags IsBasicWarning
+ enum HtmlCfgFlags IgnoreFontFamily
svtools/source/config/htmlcfg.cxx:42
+ enum HtmlCfgFlags IsBasicWarning
+svtools/source/config/htmlcfg.cxx:43
enum HtmlCfgFlags NumbersEnglishUS
svtools/source/config/miscopt.cxx:172
enum SvtMiscOptions_Impl::SetModifiedFlag DONT_SET
-svtools/source/contnr/fileview.cxx:104
- enum FileViewFlags ONLYFOLDER
-svtools/source/contnr/fileview.cxx:105
- enum FileViewFlags MULTISELECTION
svtools/source/contnr/fileview.cxx:106
- enum FileViewFlags SHOW_TYPE
-svtools/source/contnr/fileview.cxx:107
- enum FileViewFlags SHOW_ONLYTITLE
-svtools/source/contnr/imivctl.hxx:53
- enum IconChoiceFlags AddMode
-svtools/source/contnr/imivctl.hxx:54
- enum IconChoiceFlags SelectingRect
-svtools/source/contnr/imivctl.hxx:55
- enum IconChoiceFlags DownCtrl
-svtools/source/contnr/imivctl.hxx:56
- enum IconChoiceFlags DownDeselect
-svtools/source/contnr/imivctl.hxx:57
- enum IconChoiceFlags StartEditTimerInMouseUp
-svtools/source/contnr/imivctl.hxx:58
- enum IconChoiceFlags EntryListPosValid
-svtools/source/contnr/imivctl.hxx:59
- enum IconChoiceFlags ClearingSelection
-svtools/source/contnr/imivctl.hxx:60
- enum IconChoiceFlags Arranging
+ enum FileViewFlags ONLYFOLDER
svtools/source/contnr/imivctl.hxx:87
enum IcnViewFieldType Image
svtools/source/control/ctrltool.cxx:96
enum FontListFontNameType SCREEN
-svtools/source/control/fmtfield.cxx:51
- enum validation::State START
-svtools/source/control/fmtfield.cxx:52
- enum validation::State NUM_START
-svtools/source/control/fmtfield.cxx:54
- enum validation::State DIGIT_PRE_COMMA
-svtools/source/control/fmtfield.cxx:56
- enum validation::State DIGIT_POST_COMMA
-svtools/source/control/fmtfield.cxx:57
- enum validation::State EXPONENT_START
-svtools/source/control/fmtfield.cxx:59
- enum validation::State EXPONENT_DIGIT
-svtools/source/control/valueset.cxx:46
- enum (anonymous namespace)::(anonymous at svtools/source/control/valueset.cxx:44:1) ITEM_OFFSET
svtools/source/control/valueset.cxx:47
- enum (anonymous namespace)::(anonymous at svtools/source/control/valueset.cxx:44:1) ITEM_OFFSET_DOUBLE
-svtools/source/inc/svimpbox.hxx:67
- enum LBoxFlags InScrolling
-svtools/source/inc/svimpbox.hxx:68
- enum LBoxFlags DeselectAll
-svtools/source/inc/svimpbox.hxx:69
- enum LBoxFlags StartEditTimer
-svtools/source/inc/svimpbox.hxx:70
- enum LBoxFlags IgnoreSelect
-svtools/source/inc/svimpbox.hxx:71
- enum LBoxFlags InResize
-svtools/source/inc/svimpbox.hxx:72
- enum LBoxFlags RemovedEntryInvisible
-svtools/source/inc/svimpbox.hxx:73
- enum LBoxFlags RemovedRecalcMostRight
-svtools/source/inc/svimpbox.hxx:74
- enum LBoxFlags IgnoreChangedTabs
-svtools/source/inc/svimpbox.hxx:75
- enum LBoxFlags InPaint
-svtools/source/inc/svimpbox.hxx:76
- enum LBoxFlags EndScrollSetVisSize
-svtools/source/inc/svimpbox.hxx:77
- enum LBoxFlags Filling
-svtools/source/inc/svimpbox.hxx:113
- enum SvImpLBox::ImageType itNodeExpanded
-svtools/source/inc/svimpbox.hxx:114
- enum SvImpLBox::ImageType itNodeCollapsed
-svtools/source/inc/svimpbox.hxx:115
- enum SvImpLBox::ImageType itNodeDontKnow
-svtools/source/inc/svimpbox.hxx:116
- enum SvImpLBox::ImageType itEntryDefExpanded
-svtools/source/inc/svimpbox.hxx:117
- enum SvImpLBox::ImageType itEntryDefCollapsed
-svtools/source/svhtml/parhtml.cxx:1838
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/svtools/source/control/valueset.cxx:45:1) ITEM_OFFSET
+svtools/source/control/valueset.cxx:48
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/svtools/source/control/valueset.cxx:45:1) ITEM_OFFSET_DOUBLE
+svtools/source/control/valueset.cxx:49
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/svtools/source/control/valueset.cxx:45:1) NAME_LINE_OFF_X
+svtools/source/control/valueset.cxx:50
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/svtools/source/control/valueset.cxx:45:1) NAME_LINE_OFF_Y
+svtools/source/control/valueset.cxx:51
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/svtools/source/control/valueset.cxx:45:1) NAME_LINE_HEIGHT
+svtools/source/control/valueset.cxx:52
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/svtools/source/control/valueset.cxx:45:1) NAME_OFFSET
+svtools/source/control/valueset.cxx:53
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/svtools/source/control/valueset.cxx:45:1) SCRBAR_OFFSET
+svtools/source/control/valueset.cxx:54
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/svtools/source/control/valueset.cxx:45:1) SCROLL_OFFSET
+svtools/source/svhtml/parhtml.cxx:1898
enum HtmlMeta Generator
-svtools/source/svhtml/parhtml.cxx:1839
+svtools/source/svhtml/parhtml.cxx:1899
enum HtmlMeta SDFootnote
-svtools/source/svhtml/parhtml.cxx:1840
+svtools/source/svhtml/parhtml.cxx:1900
enum HtmlMeta SDEndnote
-svx/inc/galbrws2.hxx:53
- enum GalleryItemFlags ThemeName
-svx/inc/galbrws2.hxx:54
- enum GalleryItemFlags Title
-svx/inc/galbrws2.hxx:55
- enum GalleryItemFlags Path
svx/inc/sdr/overlay/overlaytools.hxx:219
enum drawinglayer::primitive2d::HelplineStyle HELPLINESTYLE_POINT
svx/inc/sxmkitm.hxx:25
enum SdrMeasureKind SDRMEASURE_STD
-svx/source/dialog/srchdlg.cxx:85
- enum ModifyFlags Search
-svx/source/dialog/srchdlg.cxx:86
- enum ModifyFlags Replace
svx/source/dialog/srchdlg.cxx:87
- enum ModifyFlags Word
+ enum ModifyFlags Search
svx/source/dialog/srchdlg.cxx:88
- enum ModifyFlags Exact
-svx/source/dialog/srchdlg.cxx:89
- enum ModifyFlags Backwards
-svx/source/dialog/srchdlg.cxx:90
- enum ModifyFlags Selection
-svx/source/dialog/srchdlg.cxx:91
- enum ModifyFlags Regexp
-svx/source/dialog/srchdlg.cxx:92
- enum ModifyFlags Layout
-svx/source/dialog/srchdlg.cxx:93
- enum ModifyFlags Similarity
-svx/source/dialog/srchdlg.cxx:94
- enum ModifyFlags Formulas
-svx/source/dialog/srchdlg.cxx:95
- enum ModifyFlags Values
+ enum ModifyFlags Replace
svx/source/dialog/srchdlg.cxx:96
- enum ModifyFlags CalcNotes
+ enum ModifyFlags Formulas
svx/source/dialog/srchdlg.cxx:97
- enum ModifyFlags Rows
+ enum ModifyFlags Values
svx/source/dialog/srchdlg.cxx:98
- enum ModifyFlags Columns
-svx/source/dialog/srchdlg.cxx:99
- enum ModifyFlags AllTables
-svx/source/dialog/srchdlg.cxx:100
- enum ModifyFlags Notes
-svx/source/dialog/srchdlg.cxx:101
- enum ModifyFlags Wildcard
-svx/source/fmcomp/fmgridcl.cxx:783
+ enum ModifyFlags CalcNotes
+svx/source/fmcomp/fmgridcl.cxx:781
enum InspectorAction eOpenInspector
svx/source/inc/datanavi.hxx:68
enum svxform::DataGroupType DGTUnknown
svx/source/inc/datanavi.hxx:79
enum svxform::DataItemType DITElement
-svx/source/inc/docrecovery.hxx:82
+svx/source/inc/docrecovery.hxx:83
enum EDocStates Unknown
-svx/source/inc/docrecovery.hxx:84
- enum EDocStates TryLoadBackup
-svx/source/inc/docrecovery.hxx:85
- enum EDocStates TryLoadOriginal
-svx/source/inc/docrecovery.hxx:90
- enum EDocStates Damaged
-svx/source/inc/docrecovery.hxx:92
- enum EDocStates Incomplete
-svx/source/inc/docrecovery.hxx:94
- enum EDocStates Succeeded
svx/source/inc/fmdocumentclassification.hxx:31
enum svxform::DocumentType eTextDocument
svx/source/inc/fmdocumentclassification.hxx:32
@@ -12428,117 +10048,75 @@ svx/source/inc/fmdocumentclassification.hxx:37
enum svxform::DocumentType eDatabaseForm
svx/source/inc/fmdocumentclassification.hxx:38
enum svxform::DocumentType eDatabaseReport
-svx/source/inc/fmexpl.hxx:379
+svx/source/inc/fmexpl.hxx:371
enum svxform::NavigatorTree::SELDATA_ITEMS SDI_ALL
-svx/source/inc/fmshimp.hxx:78
- enum LoopGridsFlags DISABLE_ROCTRLR
-svx/source/inc/fmshimp.hxx:88
+svx/source/inc/fmshimp.hxx:87
enum LoadFormsFlags Load
-svx/source/inc/fmshimp.hxx:89
+svx/source/inc/fmshimp.hxx:88
enum LoadFormsFlags Sync
-svx/source/inc/fmshimp.hxx:90
- enum LoadFormsFlags Unload
-svx/source/inc/fmshimp.hxx:91
- enum LoadFormsFlags Async
-svx/source/inc/fmtextcontrolshell.hxx:148
+svx/source/inc/fmtextcontrolshell.hxx:147
enum svx::FmTextControlShell::AttributeSet eParaAttribs
-svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx:527
+svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx:519
enum sdr::contact::ViewObjectContactOfUnoControl_Impl::ViewControlMode eAlive
-svx/source/stbctrls/modctrl.cxx:43
+svx/source/stbctrls/modctrl.cxx:44
enum SvxModifyControl::ImplData::ModificationState MODIFICATION_STATE_NO
-svx/source/stbctrls/modctrl.cxx:45
- enum SvxModifyControl::ImplData::ModificationState MODIFICATION_STATE_FEEDBACK
svx/source/stbctrls/modctrl.cxx:46
+ enum SvxModifyControl::ImplData::ModificationState MODIFICATION_STATE_FEEDBACK
+svx/source/stbctrls/modctrl.cxx:47
enum SvxModifyControl::ImplData::ModificationState MODIFICATION_STATE_SIZE
-svx/source/svdraw/svdibrow.cxx:70
+svx/source/svdraw/svdibrow.cxx:72
enum ItemType DONTKNOW
svx/source/svdraw/svdocapt.cxx:64
enum EscDir UNT
-svx/source/table/tablecontroller.cxx:91
- enum CellPosFlag Before
-svx/source/table/tablecontroller.cxx:92
- enum CellPosFlag Left
-svx/source/table/tablecontroller.cxx:93
- enum CellPosFlag Right
-svx/source/table/tablecontroller.cxx:94
- enum CellPosFlag After
-svx/source/table/tablecontroller.cxx:96
- enum CellPosFlag Upper
-svx/source/table/tablecontroller.cxx:97
- enum CellPosFlag Top
-svx/source/table/tablecontroller.cxx:98
- enum CellPosFlag Bottom
-svx/source/table/tablecontroller.cxx:99
- enum CellPosFlag Lower
svx/source/table/tablehandles.hxx:30
enum sdr::table::TableEdgeState Empty
svx/source/table/tablehandles.hxx:30
enum sdr::table::TableEdgeState Invisible
-svx/source/tbxctrls/tbcontrl.cxx:1778
+svx/source/tbxctrls/tbcontrl.cxx:2092
enum FrmValidFlags Left
-svx/source/tbxctrls/tbcontrl.cxx:1779
+svx/source/tbxctrls/tbcontrl.cxx:2093
enum FrmValidFlags Right
-svx/source/tbxctrls/tbcontrl.cxx:1780
+svx/source/tbxctrls/tbcontrl.cxx:2094
enum FrmValidFlags Top
-svx/source/tbxctrls/tbcontrl.cxx:1781
+svx/source/tbxctrls/tbcontrl.cxx:2095
enum FrmValidFlags Bottom
-svx/source/tbxctrls/tbcontrl.cxx:1782
+svx/source/tbxctrls/tbcontrl.cxx:2096
enum FrmValidFlags HInner
-svx/source/tbxctrls/tbcontrl.cxx:1783
+svx/source/tbxctrls/tbcontrl.cxx:2097
enum FrmValidFlags VInner
-svx/source/tbxctrls/tbcontrl.cxx:1784
+svx/source/tbxctrls/tbcontrl.cxx:2098
enum FrmValidFlags AllMask
-svx/source/tbxctrls/tbunosearchcontrollers.cxx:601
+svx/source/tbxctrls/tbunosearchcontrollers.cxx:592
enum (anonymous namespace)::UpDownSearchToolboxController::Type DOWN
-svx/source/unodraw/recoveryui.cxx:56
+svx/source/unodraw/recoveryui.cxx:54
enum (anonymous namespace)::RecoveryUI::EJob E_JOB_UNKNOWN
sw/inc/accmap.hxx:77
- enum AccessibleStates EDITABLE
-sw/inc/accmap.hxx:78
- enum AccessibleStates OPAQUE
-sw/inc/accmap.hxx:80
enum AccessibleStates TEXT_ATTRIBUTE_CHANGED
-sw/inc/accmap.hxx:81
+sw/inc/accmap.hxx:78
enum AccessibleStates TEXT_SELECTION_CHANGED
-sw/inc/accmap.hxx:82
+sw/inc/accmap.hxx:79
enum AccessibleStates CARET
-sw/inc/accmap.hxx:83
- enum AccessibleStates RELATION_FROM
-sw/inc/accmap.hxx:84
- enum AccessibleStates RELATION_TO
+sw/inc/calbck.hxx:116
+ enum sw::IteratorMode Exact
sw/inc/chpfld.hxx:31
enum SwChapterFormat CF_BEGIN
-sw/inc/crsrsh.hxx:92
- enum IsAttrAtPos Outline
-sw/inc/crsrsh.hxx:95
- enum IsAttrAtPos NumLabel
-sw/inc/crsrsh.hxx:96
- enum IsAttrAtPos ContentCheck
-sw/inc/crstate.hxx:54
+sw/inc/crstate.hxx:55
enum MultiPortionType TWOLINE
-sw/inc/crstate.hxx:56
- enum MultiPortionType ROT_270
-sw/inc/crstate.hxx:123
+sw/inc/crstate.hxx:124
enum CursorMoveState MV_LEFTMARGIN
-sw/inc/cshtyp.hxx:94
- enum FindRanges InSelAll
-sw/inc/cshtyp.hxx:95
- enum FindRanges InOther
sw/inc/cshtyp.hxx:96
- enum FindRanges InSel
-sw/inc/cshtyp.hxx:97
enum FindRanges InBodyOnly
-sw/inc/dbmgr.hxx:98
+sw/inc/dbmgr.hxx:97
enum SwDBSelect QUERY
-sw/inc/doc.hxx:439
+sw/inc/doc.hxx:382
enum SwDoc::DocumentType DOCTYPE_NATIVE
-sw/inc/docary.hxx:78
- enum SwVectorModifyBase<class SwFrameFormat *>::DestructorPolicy KeepElements
-sw/inc/docary.hxx:78
+sw/inc/docary.hxx:74
enum SwVectorModifyBase<class SwTextFormatColl *>::DestructorPolicy KeepElements
-sw/inc/docary.hxx:78
+sw/inc/docary.hxx:74
+ enum SwVectorModifyBase<class SwFrameFormat *>::DestructorPolicy KeepElements
+sw/inc/docary.hxx:74
enum SwVectorModifyBase<class SwGrfFormatColl *>::DestructorPolicy KeepElements
-sw/inc/docstyle.hxx:66
+sw/inc/docstyle.hxx:67
enum SwDocStyleSheet::FillStyleType FillOnlyName
sw/inc/docufld.hxx:39
enum SwAuthorFormat AF_BEGIN
@@ -12546,51 +10124,19 @@ sw/inc/docufld.hxx:48
enum SwDocStatSubType DS_BEGIN
sw/inc/docufld.hxx:119
enum SwJumpEditFormat JE_FMT_TEXT
-sw/inc/fesh.hxx:67
+sw/inc/fesh.hxx:63
enum FrameTypeFlags PAGE
-sw/inc/fesh.hxx:68
- enum FrameTypeFlags HEADER
-sw/inc/fesh.hxx:69
- enum FrameTypeFlags FOOTER
-sw/inc/fesh.hxx:70
- enum FrameTypeFlags BODY
-sw/inc/fesh.hxx:71
- enum FrameTypeFlags COLUMN
-sw/inc/fesh.hxx:72
- enum FrameTypeFlags TABLE
-sw/inc/fesh.hxx:73
- enum FrameTypeFlags FLY_FREE
-sw/inc/fesh.hxx:74
- enum FrameTypeFlags FLY_ATCNT
-sw/inc/fesh.hxx:75
- enum FrameTypeFlags FLY_INCNT
-sw/inc/fesh.hxx:76
- enum FrameTypeFlags FOOTNOTE
sw/inc/fesh.hxx:77
- enum FrameTypeFlags FTNPAGE
-sw/inc/fesh.hxx:78
- enum FrameTypeFlags FLY_ANY
-sw/inc/fesh.hxx:80
- enum FrameTypeFlags COLSECT
-sw/inc/fesh.hxx:81
enum FrameTypeFlags COLSECTOUTTAB
-sw/inc/fesh.hxx:94
- enum GotoObjFlags DrawAny
-sw/inc/fesh.hxx:99
+sw/inc/fesh.hxx:95
enum GotoObjFlags Any
-sw/inc/fesh.hxx:110
- enum FlyProtectFlags Content
-sw/inc/fesh.hxx:111
- enum FlyProtectFlags Size
-sw/inc/fesh.hxx:112
- enum FlyProtectFlags Pos
-sw/inc/fesh.hxx:113
+sw/inc/fesh.hxx:109
enum FlyProtectFlags Parent
-sw/inc/fesh.hxx:114
+sw/inc/fesh.hxx:110
enum FlyProtectFlags Fixed
-sw/inc/fesh.hxx:134
+sw/inc/fesh.hxx:130
enum ObjCntType OBJCNT_DONTCARE
-sw/inc/fesh.hxx:143
+sw/inc/fesh.hxx:139
enum CurRectType Frame
sw/inc/flyenum.hxx:36
enum SwChainRet NOT_EMPTY
@@ -12604,82 +10150,56 @@ sw/inc/flyenum.hxx:41
enum SwChainRet SOURCE_CHAINED
sw/inc/flyenum.hxx:42
enum SwChainRet SELF
-sw/inc/fmtcol.hxx:161
+sw/inc/fmtcol.hxx:160
enum Master_CollCondition PARA_IN_LIST
-sw/inc/fmtcol.hxx:162
+sw/inc/fmtcol.hxx:161
enum Master_CollCondition PARA_IN_OUTLINE
-sw/inc/fmtcol.hxx:163
+sw/inc/fmtcol.hxx:162
enum Master_CollCondition PARA_IN_FRAME
-sw/inc/fmtcol.hxx:166
+sw/inc/fmtcol.hxx:165
enum Master_CollCondition PARA_IN_SECTION
-sw/inc/fmtcol.hxx:167
+sw/inc/fmtcol.hxx:166
enum Master_CollCondition PARA_IN_FOOTNOTE
-sw/inc/fmtcol.hxx:170
+sw/inc/fmtcol.hxx:169
enum Master_CollCondition PARA_IN_ENDNOTE
sw/inc/fmtftntx.hxx:34
enum SwFootnoteEndPosEnum FTNEND_ATTXTEND_END
-sw/inc/hintids.hxx:292
- enum RES_FMT RES_FMT_END
-sw/inc/IDocumentContentOperations.hxx:47
+sw/inc/IDocumentContentOperations.hxx:46
enum SwMoveFlags DEFAULT
-sw/inc/IDocumentContentOperations.hxx:48
+sw/inc/IDocumentContentOperations.hxx:47
enum SwMoveFlags ALLFLYS
-sw/inc/IDocumentContentOperations.hxx:49
- enum SwMoveFlags CREATEUNDOOBJ
-sw/inc/IDocumentContentOperations.hxx:51
+sw/inc/IDocumentContentOperations.hxx:50
enum SwMoveFlags NO_DELFRMS
-sw/inc/IDocumentContentOperations.hxx:61
+sw/inc/IDocumentContentOperations.hxx:60
enum SwInsertFlags DEFAULT
-sw/inc/IDocumentContentOperations.hxx:62
- enum SwInsertFlags EMPTYEXPAND
-sw/inc/IDocumentContentOperations.hxx:63
- enum SwInsertFlags NOHINTEXPAND
-sw/inc/IDocumentContentOperations.hxx:64
- enum SwInsertFlags FORCEHINTEXPAND
sw/inc/IDocumentExternalData.hxx:28
enum sw::tExternalDataType STTBF_ASSOC
sw/inc/IDocumentExternalData.hxx:28
enum sw::tExternalDataType FIB
-sw/inc/IDocumentRedlineAccess.hxx:51
- enum RedlineFlags Ignore
-sw/inc/IDocumentRedlineAccess.hxx:59
- enum RedlineFlags DeleteRedlines
-sw/inc/IDocumentRedlineAccess.hxx:62
- enum RedlineFlags IgnoreDeleteRedlines
-sw/inc/IDocumentRedlineAccess.hxx:64
- enum RedlineFlags DontCombineRedlines
-sw/inc/istyleaccess.hxx:34
+sw/inc/IDocumentRedlineAccess.hxx:157
+ enum IDocumentRedlineAccess::AppendResult MERGED
+sw/inc/IMark.hxx:35
+ enum sw::mark::InsertMode CopyText
+sw/inc/istyleaccess.hxx:33
enum IStyleAccess::SwAutoStyleFamily AUTO_STYLE_NOTXT
-sw/inc/modcfg.hxx:44
+sw/inc/itabenum.hxx:31
+ enum SwInsertTableFlags HeadlineNoBorder
+sw/inc/itabenum.hxx:32
+ enum SwInsertTableFlags All
+sw/inc/modcfg.hxx:40
enum MailTextFormats HTML
-sw/inc/modcfg.hxx:45
+sw/inc/modcfg.hxx:41
enum MailTextFormats RTF
-sw/inc/modcfg.hxx:46
+sw/inc/modcfg.hxx:42
enum MailTextFormats OFFICE
-sw/inc/modeltoviewhelper.hxx:68
- enum ExpandMode ExpandFields
-sw/inc/modeltoviewhelper.hxx:69
- enum ExpandMode ExpandFootnote
-sw/inc/modeltoviewhelper.hxx:70
- enum ExpandMode HideInvisible
-sw/inc/modeltoviewhelper.hxx:71
- enum ExpandMode HideDeletions
-sw/inc/modeltoviewhelper.hxx:73
+sw/inc/modeltoviewhelper.hxx:74
enum ExpandMode ReplaceMode
-sw/inc/ndhints.hxx:36
+sw/inc/ndhints.hxx:35
enum CopyOrNewType New
-sw/inc/ndtxt.hxx:178
+sw/inc/ndtxt.hxx:176
enum SwTextNode::WrongState PENDING
sw/inc/ndtyp.hxx:40
enum SwNodeType NoTextMask
-sw/inc/ndtyp.hxx:42
- enum SwNodeType ContentMask
-sw/inc/pagedesc.hxx:126
- enum UseOnPage HeaderShare
-sw/inc/pagedesc.hxx:127
- enum UseOnPage FooterShare
-sw/inc/pagedesc.hxx:128
- enum UseOnPage FirstShare
sw/inc/pagedesc.hxx:129
enum UseOnPage NoHeaderShare
sw/inc/pagedesc.hxx:130
@@ -12690,479 +10210,223 @@ sw/inc/poolfmt.hxx:95
enum RES_POOLFMT RES_POOLFMT_BEGIN
sw/inc/poolfmt.hxx:206
enum RES_POOL_TABSTYLE_TYPE RES_POOLTABSTYLE_DEFAULT
-sw/inc/poolfmt.hxx:228
+sw/inc/poolfmt.hxx:240
enum RES_POOL_CELLSTYLE_TYPE RES_POOLCELLSTYLE_BEGIN
-sw/inc/poolfmt.hxx:229
+sw/inc/poolfmt.hxx:241
enum RES_POOL_CELLSTYLE_TYPE RES_POOLCELLSTYLE_END
-sw/inc/reffld.hxx:44
+sw/inc/redline.hxx:256
+ enum SwRangeRedline::Invalidation Remove
+sw/inc/reffld.hxx:45
enum REFERENCEMARK REF_BEGIN
-sw/inc/sortopt.hxx:26
- enum SwSortOrder SRT_DESCENDING
sw/inc/sortopt.hxx:27
+ enum SwSortOrder SRT_DESCENDING
+sw/inc/sortopt.hxx:28
enum SwSortDirection SRT_COLUMNS
-sw/inc/SwAppletImpl.hxx:33
+sw/inc/SwAppletImpl.hxx:31
enum SwHtmlOptType IGNORE
-sw/inc/swcrsr.hxx:51
- enum SwCursorSelOverFlags CheckNodeSection
-sw/inc/swcrsr.hxx:52
- enum SwCursorSelOverFlags Toggle
-sw/inc/swcrsr.hxx:53
- enum SwCursorSelOverFlags EnableRevDirection
-sw/inc/swcrsr.hxx:54
- enum SwCursorSelOverFlags ChangePos
-sw/inc/swmodule.hxx:62
+sw/inc/swmodule.hxx:60
enum SvViewOpt DestView
-sw/inc/swtypes.hxx:160
+sw/inc/swtypes.hxx:147
enum SetAttrMode DEFAULT
-sw/inc/swtypes.hxx:163
- enum SetAttrMode DONTEXPAND
-sw/inc/swtypes.hxx:164
- enum SetAttrMode DONTREPLACE
-sw/inc/swtypes.hxx:166
- enum SetAttrMode NOTXTATRCHR
-sw/inc/swtypes.hxx:169
+sw/inc/swtypes.hxx:156
enum SetAttrMode NOHINTADJUST
-sw/inc/swtypes.hxx:170
- enum SetAttrMode NOFORMATATTR
-sw/inc/swtypes.hxx:171
- enum SetAttrMode APICALL
-sw/inc/swtypes.hxx:174
+sw/inc/swtypes.hxx:161
enum SetAttrMode FORCEHINTEXPAND
-sw/inc/swtypes.hxx:176
+sw/inc/swtypes.hxx:163
enum SetAttrMode IS_COPY
-sw/inc/swtypes.hxx:225
+sw/inc/swtypes.hxx:165
+ enum SetAttrMode NOHINTEXPAND
+sw/inc/swtypes.hxx:207
enum PrepareHint PREP_BEGIN
-sw/inc/swtypes.hxx:228
+sw/inc/swtypes.hxx:210
enum PrepareHint PREP_FIXSIZE_CHG
-sw/inc/swtypes.hxx:229
+sw/inc/swtypes.hxx:211
enum PrepareHint PREP_FOLLOW_FOLLOWS
-sw/inc/swtypes.hxx:231
+sw/inc/swtypes.hxx:213
enum PrepareHint PREP_FLY_CHGD
-sw/inc/swtypes.hxx:241
+sw/inc/swtypes.hxx:223
enum PrepareHint PREP_UL_SPACE
-sw/inc/swtypes.hxx:267
- enum FrameControlType PageBreak
sw/inc/swundo.hxx:32
enum SwUndoId STD_BEGIN
-sw/inc/swundo.hxx:39
- enum SwUndoId INSERT
-sw/inc/swundo.hxx:40
- enum SwUndoId OVERWRITE
-sw/inc/swundo.hxx:41
- enum SwUndoId SPLITNODE
-sw/inc/swundo.hxx:42
- enum SwUndoId INSATTR
-sw/inc/swundo.hxx:43
- enum SwUndoId SETFMTCOLL
-sw/inc/swundo.hxx:44
- enum SwUndoId RESETATTR
-sw/inc/swundo.hxx:46
- enum SwUndoId INSDOKUMENT
-sw/inc/swundo.hxx:47
- enum SwUndoId COPY
-sw/inc/swundo.hxx:48
- enum SwUndoId INSTABLE
-sw/inc/swundo.hxx:49
- enum SwUndoId TABLETOTEXT
-sw/inc/swundo.hxx:50
- enum SwUndoId TEXTTOTABLE
-sw/inc/swundo.hxx:51
- enum SwUndoId SORT_TXT
-sw/inc/swundo.hxx:53
- enum SwUndoId TABLEHEADLINE
-sw/inc/swundo.hxx:55
- enum SwUndoId OUTLINE_LR
-sw/inc/swundo.hxx:57
- enum SwUndoId INSNUM
-sw/inc/swundo.hxx:58
- enum SwUndoId NUMUP
-sw/inc/swundo.hxx:59
- enum SwUndoId MOVENUM
-sw/inc/swundo.hxx:60
- enum SwUndoId INSDRAWFMT
-sw/inc/swundo.hxx:61
- enum SwUndoId NUMORNONUM
-sw/inc/swundo.hxx:63
- enum SwUndoId DEC_LEFTMARGIN
-sw/inc/swundo.hxx:64
- enum SwUndoId INSERTLABEL
-sw/inc/swundo.hxx:65
- enum SwUndoId SETNUMRULESTART
-sw/inc/swundo.hxx:66
- enum SwUndoId CHGFTN
-sw/inc/swundo.hxx:68
- enum SwUndoId ACCEPT_REDLINE
-sw/inc/swundo.hxx:70
- enum SwUndoId SPLIT_TABLE
-sw/inc/swundo.hxx:71
- enum SwUndoId DONTEXPAND
-sw/inc/swundo.hxx:73
- enum SwUndoId MERGE_TABLE
-sw/inc/swundo.hxx:74
- enum SwUndoId TRANSLITERATE
-sw/inc/swundo.hxx:75
- enum SwUndoId PASTE_CLIPBOARD
-sw/inc/swundo.hxx:76
- enum SwUndoId TYPING
-sw/inc/swundo.hxx:84
- enum SwUndoId MOVE
-sw/inc/swundo.hxx:85
- enum SwUndoId INSGLOSSARY
-sw/inc/swundo.hxx:86
- enum SwUndoId DELBOOKMARK
-sw/inc/swundo.hxx:87
- enum SwUndoId INSBOOKMARK
-sw/inc/swundo.hxx:88
- enum SwUndoId SORT_TBL
-sw/inc/swundo.hxx:89
- enum SwUndoId DELLAYFMT
-sw/inc/swundo.hxx:92
- enum SwUndoId DELSECTION
-sw/inc/swundo.hxx:93
- enum SwUndoId CHGSECTION
-sw/inc/swundo.hxx:96
- enum SwUndoId DELNUM
-sw/inc/swundo.hxx:97
- enum SwUndoId DRAWUNDO
-sw/inc/swundo.hxx:98
- enum SwUndoId DRAWGROUP
-sw/inc/swundo.hxx:99
- enum SwUndoId DRAWUNGROUP
-sw/inc/swundo.hxx:100
- enum SwUndoId DRAWDELETE
-sw/inc/swundo.hxx:101
- enum SwUndoId REREAD
-sw/inc/swundo.hxx:102
- enum SwUndoId DELGRF
-sw/inc/swundo.hxx:104
- enum SwUndoId TABLE_ATTR
-sw/inc/swundo.hxx:105
- enum SwUndoId TABLE_AUTOFMT
-sw/inc/swundo.hxx:110
- enum SwUndoId TABLE_MERGE
-sw/inc/swundo.hxx:111
- enum SwUndoId TBLNUMFMT
-sw/inc/swundo.hxx:112
- enum SwUndoId INSTOX
-sw/inc/swundo.hxx:113
- enum SwUndoId CLEARTOXRANGE
-sw/inc/swundo.hxx:114
- enum SwUndoId TBLCPYTBL
-sw/inc/swundo.hxx:115
- enum SwUndoId CPYTBL
-sw/inc/swundo.hxx:117
- enum SwUndoId CHAINE
-sw/inc/swundo.hxx:118
- enum SwUndoId UNCHAIN
-sw/inc/swundo.hxx:119
- enum SwUndoId FTNINFO
-sw/inc/swundo.hxx:121
- enum SwUndoId COMPAREDOC
-sw/inc/swundo.hxx:122
- enum SwUndoId SETFLYFRMFMT
-sw/inc/swundo.hxx:123
- enum SwUndoId SETRUBYATTR
-sw/inc/swundo.hxx:125
- enum SwUndoId TOXCHANGE
-sw/inc/swundo.hxx:126
- enum SwUndoId CREATE_PAGEDESC
-sw/inc/swundo.hxx:127
- enum SwUndoId CHANGE_PAGEDESC
-sw/inc/swundo.hxx:128
- enum SwUndoId DELETE_PAGEDESC
-sw/inc/swundo.hxx:129
- enum SwUndoId HEADER_FOOTER
-sw/inc/swundo.hxx:130
- enum SwUndoId FIELD
-sw/inc/swundo.hxx:131
- enum SwUndoId TXTFMTCOL_CREATE
-sw/inc/swundo.hxx:132
- enum SwUndoId TXTFMTCOL_DELETE
-sw/inc/swundo.hxx:133
- enum SwUndoId TXTFMTCOL_RENAME
-sw/inc/swundo.hxx:134
- enum SwUndoId CHARFMT_CREATE
-sw/inc/swundo.hxx:135
- enum SwUndoId CHARFMT_DELETE
-sw/inc/swundo.hxx:136
- enum SwUndoId CHARFMT_RENAME
-sw/inc/swundo.hxx:137
- enum SwUndoId FRMFMT_CREATE
-sw/inc/swundo.hxx:138
- enum SwUndoId FRMFMT_DELETE
-sw/inc/swundo.hxx:139
- enum SwUndoId FRMFMT_RENAME
-sw/inc/swundo.hxx:140
- enum SwUndoId NUMRULE_CREATE
-sw/inc/swundo.hxx:141
- enum SwUndoId NUMRULE_DELETE
-sw/inc/swundo.hxx:142
- enum SwUndoId NUMRULE_RENAME
-sw/inc/swundo.hxx:143
- enum SwUndoId BOOKMARK_RENAME
-sw/inc/swundo.hxx:144
- enum SwUndoId INDEX_ENTRY_INSERT
-sw/inc/swundo.hxx:145
- enum SwUndoId INDEX_ENTRY_DELETE
-sw/inc/swundo.hxx:148
- enum SwUndoId RENAME_PAGEDESC
-sw/inc/swundo.hxx:149
- enum SwUndoId NUMDOWN
-sw/inc/swundo.hxx:153
- enum SwUndoId TBLSTYLE_CREATE
-sw/inc/swundo.hxx:154
- enum SwUndoId TBLSTYLE_DELETE
-sw/inc/swundo.hxx:155
- enum SwUndoId TBLSTYLE_UPDATE
-sw/inc/swundo.hxx:156
- enum SwUndoId STD_END
-sw/inc/swundo.hxx:159
- enum SwUndoId UI_REPLACE
-sw/inc/swundo.hxx:160
- enum SwUndoId UI_INSERT_PAGE_BREAK
-sw/inc/swundo.hxx:161
- enum SwUndoId UI_INSERT_COLUMN_BREAK
-sw/inc/swundo.hxx:163
- enum SwUndoId UI_INSERT_ENVELOPE
-sw/inc/swundo.hxx:164
- enum SwUndoId UI_DRAG_AND_COPY
-sw/inc/swundo.hxx:165
- enum SwUndoId UI_DRAG_AND_MOVE
-sw/inc/swundo.hxx:166
- enum SwUndoId UI_INSERT_CHART
-sw/inc/swundo.hxx:167
- enum SwUndoId UI_INSERT_FOOTNOTE
-sw/inc/swundo.hxx:168
- enum SwUndoId UI_INSERT_URLBTN
-sw/inc/swundo.hxx:169
- enum SwUndoId UI_INSERT_URLTXT
-sw/inc/swundo.hxx:171
- enum SwUndoId UI_REPLACE_STYLE
-sw/inc/swundo.hxx:172
- enum SwUndoId UI_DELETE_PAGE_BREAK
-sw/inc/swundo.hxx:173
- enum SwUndoId UI_TEXT_CORRECTION
-sw/inc/swundo.hxx:174
- enum SwUndoId UI_TABLE_DELETE
-sw/inc/swurl.hxx:29
- enum LoadUrlFlags NewView
-sw/inc/tblenum.hxx:42
- enum TableChgWidthHeightType BiggerMode
-sw/inc/tblsel.hxx:68
- enum SwTableSearchType Protect
-sw/inc/tblsel.hxx:69
- enum SwTableSearchType NoUnionCorrect
-sw/inc/tox.hxx:333
- enum SwTOXElement Mark
-sw/inc/tox.hxx:337
- enum SwTOXElement Table
-sw/inc/tox.hxx:341
- enum SwTOXElement TableLeader
-sw/inc/tox.hxx:342
- enum SwTOXElement TableInToc
-sw/inc/tox.hxx:343
- enum SwTOXElement Bookmark
-sw/inc/tox.hxx:344
- enum SwTOXElement Newline
-sw/inc/tox.hxx:345
- enum SwTOXElement ParagraphOutlineLevel
-sw/inc/tox.hxx:346
- enum SwTOXElement IndexEntryType
-sw/inc/tox.hxx:355
- enum SwTOIOptions SameEntry
-sw/inc/tox.hxx:356
- enum SwTOIOptions FF
-sw/inc/tox.hxx:357
- enum SwTOIOptions CaseSensitive
-sw/inc/tox.hxx:358
- enum SwTOIOptions KeyAsEntry
-sw/inc/tox.hxx:359
- enum SwTOIOptions AlphaDelimiter
-sw/inc/tox.hxx:360
- enum SwTOIOptions Dash
-sw/inc/tox.hxx:361
- enum SwTOIOptions InitialCaps
-sw/inc/tox.hxx:378
+sw/inc/tox.hxx:377
enum SwTOOElements Math
-sw/inc/tox.hxx:379
+sw/inc/tox.hxx:378
enum SwTOOElements Chart
-sw/inc/tox.hxx:380
+sw/inc/tox.hxx:379
enum SwTOOElements Calc
-sw/inc/tox.hxx:381
+sw/inc/tox.hxx:380
enum SwTOOElements DrawImpress
-sw/inc/tox.hxx:382
+sw/inc/tox.hxx:381
enum SwTOOElements Other
-sw/inc/ToxTabStopTokenHandler.hxx:57
+sw/inc/ToxTabStopTokenHandler.hxx:56
enum sw::DefaultToxTabStopTokenHandler::TabStopReferencePolicy TABSTOPS_RELATIVE_TO_PAGE
-sw/inc/undobj.hxx:131
- enum DelContentType Ftn
-sw/inc/undobj.hxx:132
- enum DelContentType Fly
-sw/inc/undobj.hxx:133
- enum DelContentType Bkm
-sw/inc/undobj.hxx:134
+sw/inc/undobj.hxx:136
enum DelContentType AllMask
-sw/inc/undobj.hxx:135
- enum DelContentType CheckNoCntnt
-sw/inc/unobaseclass.hxx:51
+sw/inc/unobaseclass.hxx:50
enum CursorType All
-sw/inc/unocoll.hxx:136
+sw/inc/unocoll.hxx:126
enum SwServiceType FieldTypeDummy1
-sw/inc/unocoll.hxx:137
+sw/inc/unocoll.hxx:127
enum SwServiceType FieldTypeDummy2
-sw/inc/unocoll.hxx:138
+sw/inc/unocoll.hxx:128
enum SwServiceType FieldTypeDummy3
-sw/inc/unocrsrhelper.hxx:61
+sw/inc/unocrsrhelper.hxx:56
enum SwGetPropertyStatesCaller SW_PROPERTY_STATE_CALLER_DEFAULT
-sw/inc/unostyle.hxx:262
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) FIRST_ROW_STYLE
sw/inc/unostyle.hxx:263
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) LAST_ROW_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) FIRST_ROW_STYLE
sw/inc/unostyle.hxx:264
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) FIRST_COLUMN_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) LAST_ROW_STYLE
sw/inc/unostyle.hxx:265
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) LAST_COLUMN_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) FIRST_COLUMN_STYLE
sw/inc/unostyle.hxx:266
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) EVEN_ROWS_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) LAST_COLUMN_STYLE
sw/inc/unostyle.hxx:267
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) ODD_ROWS_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) EVEN_ROWS_STYLE
sw/inc/unostyle.hxx:268
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) EVEN_COLUMNS_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) ODD_ROWS_STYLE
sw/inc/unostyle.hxx:269
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) ODD_COLUMNS_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) EVEN_COLUMNS_STYLE
sw/inc/unostyle.hxx:270
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) BODY_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) ODD_COLUMNS_STYLE
sw/inc/unostyle.hxx:271
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) BACKGROUND_STYLE
-sw/inc/unostyle.hxx:273
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) FIRST_ROW_START_COLUMN_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) BODY_STYLE
+sw/inc/unostyle.hxx:272
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) BACKGROUND_STYLE
sw/inc/unostyle.hxx:274
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) FIRST_ROW_END_COLUMN_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) FIRST_ROW_START_COLUMN_STYLE
sw/inc/unostyle.hxx:275
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) LAST_ROW_START_COLUMN_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) FIRST_ROW_END_COLUMN_STYLE
sw/inc/unostyle.hxx:276
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) LAST_ROW_END_COLUMN_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) LAST_ROW_START_COLUMN_STYLE
sw/inc/unostyle.hxx:277
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) FIRST_ROW_EVEN_COLUMN_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) LAST_ROW_END_COLUMN_STYLE
sw/inc/unostyle.hxx:278
- enum SwXTextTableStyle::(anonymous at sw/inc/unostyle.hxx:261:5) LAST_ROW_EVEN_COLUMN_STYLE
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) FIRST_ROW_EVEN_COLUMN_STYLE
+sw/inc/unostyle.hxx:279
+ enum SwXTextTableStyle::(anonymous at /media/noel/disk2/libo6/sw/inc/unostyle.hxx:262:5) LAST_ROW_EVEN_COLUMN_STYLE
sw/inc/unotextrange.hxx:95
enum SwXTextRange::RangePosition RANGE_IN_TEXT
-sw/inc/view.hxx:112
+sw/inc/view.hxx:98
enum ShellMode Media
-sw/inc/view.hxx:113
+sw/inc/view.hxx:99
enum ShellMode ExtrudedCustomShape
-sw/inc/view.hxx:114
+sw/inc/view.hxx:100
enum ShellMode FontWork
-sw/inc/view.hxx:115
+sw/inc/view.hxx:101
enum ShellMode PostIt
-sw/inc/viewopt.hxx:41
+sw/inc/view.hxx:650
+ enum SwView::CachedStringID OldGrfCat
+sw/inc/view.hxx:651
+ enum SwView::CachedStringID OldTabCat
+sw/inc/view.hxx:652
+ enum SwView::CachedStringID OldFrameCat
+sw/inc/view.hxx:653
+ enum SwView::CachedStringID OldDrwCat
+sw/inc/view.hxx:654
+ enum SwView::CachedStringID CachedStrings
+sw/inc/viewopt.hxx:38
+ enum ViewOptFlags1 UseHeaderFooterMenu
+sw/inc/viewopt.hxx:39
enum ViewOptFlags1 Tab
-sw/inc/viewopt.hxx:42
+sw/inc/viewopt.hxx:40
enum ViewOptFlags1 Blank
-sw/inc/viewopt.hxx:43
+sw/inc/viewopt.hxx:41
enum ViewOptFlags1 HardBlank
-sw/inc/viewopt.hxx:44
+sw/inc/viewopt.hxx:42
enum ViewOptFlags1 Paragraph
-sw/inc/viewopt.hxx:45
+sw/inc/viewopt.hxx:43
enum ViewOptFlags1 Linebreak
-sw/inc/viewopt.hxx:46
+sw/inc/viewopt.hxx:44
enum ViewOptFlags1 Pagebreak
-sw/inc/viewopt.hxx:47
+sw/inc/viewopt.hxx:45
enum ViewOptFlags1 Columnbreak
-sw/inc/viewopt.hxx:48
+sw/inc/viewopt.hxx:46
enum ViewOptFlags1 SoftHyph
-sw/inc/viewopt.hxx:49
+sw/inc/viewopt.hxx:47
enum ViewOptFlags1 Ref
-sw/inc/viewopt.hxx:50
+sw/inc/viewopt.hxx:48
enum ViewOptFlags1 FieldName
-sw/inc/viewopt.hxx:51
+sw/inc/viewopt.hxx:49
enum ViewOptFlags1 Postits
-sw/inc/viewopt.hxx:52
+sw/inc/viewopt.hxx:50
enum ViewOptFlags1 FieldHidden
-sw/inc/viewopt.hxx:53
+sw/inc/viewopt.hxx:51
enum ViewOptFlags1 CharHidden
-sw/inc/viewopt.hxx:54
+sw/inc/viewopt.hxx:52
enum ViewOptFlags1 Graphic
-sw/inc/viewopt.hxx:55
+sw/inc/viewopt.hxx:53
enum ViewOptFlags1 Table
-sw/inc/viewopt.hxx:56
+sw/inc/viewopt.hxx:54
enum ViewOptFlags1 Draw
-sw/inc/viewopt.hxx:57
+sw/inc/viewopt.hxx:55
enum ViewOptFlags1 Control
-sw/inc/viewopt.hxx:58
+sw/inc/viewopt.hxx:56
enum ViewOptFlags1 Crosshair
-sw/inc/viewopt.hxx:59
+sw/inc/viewopt.hxx:57
enum ViewOptFlags1 Snap
-sw/inc/viewopt.hxx:60
+sw/inc/viewopt.hxx:58
enum ViewOptFlags1 Synchronize
-sw/inc/viewopt.hxx:61
+sw/inc/viewopt.hxx:59
enum ViewOptFlags1 GridVisible
-sw/inc/viewopt.hxx:62
+sw/inc/viewopt.hxx:60
enum ViewOptFlags1 OnlineSpell
-sw/inc/viewopt.hxx:63
+sw/inc/viewopt.hxx:61
+ enum ViewOptFlags1 ShowInlineTooltips
+sw/inc/viewopt.hxx:62
enum ViewOptFlags1 ViewMetachars
-sw/inc/viewopt.hxx:64
+sw/inc/viewopt.hxx:63
enum ViewOptFlags1 Pageback
-sw/inc/viewopt.hxx:71
+sw/inc/viewopt.hxx:70
enum ViewOptCoreFlags2 BlackFont
-sw/inc/viewopt.hxx:72
+sw/inc/viewopt.hxx:71
enum ViewOptCoreFlags2 HiddenPara
-sw/inc/viewopt.hxx:73
+sw/inc/viewopt.hxx:72
enum ViewOptCoreFlags2 SmoothScroll
-sw/inc/viewopt.hxx:74
+sw/inc/viewopt.hxx:73
enum ViewOptCoreFlags2 CursorInProt
-sw/inc/viewopt.hxx:75
+sw/inc/viewopt.hxx:74
enum ViewOptCoreFlags2 PdfExport
-sw/inc/viewopt.hxx:76
+sw/inc/viewopt.hxx:75
enum ViewOptCoreFlags2 Printing
sw/inc/viewopt.hxx:83
- enum ViewOptFlags2 HRuler
-sw/inc/viewopt.hxx:84
enum ViewOptFlags2 VScrollbar
-sw/inc/viewopt.hxx:85
+sw/inc/viewopt.hxx:84
enum ViewOptFlags2 HScrollbar
-sw/inc/viewopt.hxx:86
- enum ViewOptFlags2 VRuler
sw/inc/viewopt.hxx:87
- enum ViewOptFlags2 AnyRuler
-sw/inc/viewopt.hxx:88
enum ViewOptFlags2 Modified
-sw/inc/viewopt.hxx:89
+sw/inc/viewopt.hxx:88
enum ViewOptFlags2 KeepAspectRatio
-sw/inc/viewopt.hxx:90
+sw/inc/viewopt.hxx:89
enum ViewOptFlags2 GrfKeepZoom
-sw/inc/viewopt.hxx:91
+sw/inc/viewopt.hxx:90
enum ViewOptFlags2 ContentTips
-sw/inc/viewopt.hxx:92
+sw/inc/viewopt.hxx:91
enum ViewOptFlags2 ScrollbarTips
-sw/inc/viewopt.hxx:93
+sw/inc/viewopt.hxx:92
enum ViewOptFlags2 PrintFormat
-sw/inc/viewopt.hxx:94
+sw/inc/viewopt.hxx:93
enum ViewOptFlags2 ShadowCursor
-sw/inc/viewopt.hxx:95
+sw/inc/viewopt.hxx:94
enum ViewOptFlags2 VRulerRight
-sw/inc/viewopt.hxx:109
+sw/inc/viewopt.hxx:108
enum ViewOptFlags DocBoundaries
-sw/inc/viewopt.hxx:110
+sw/inc/viewopt.hxx:109
enum ViewOptFlags ObjectBoundaries
-sw/inc/viewopt.hxx:111
+sw/inc/viewopt.hxx:110
enum ViewOptFlags TableBoundaries
-sw/inc/viewopt.hxx:112
+sw/inc/viewopt.hxx:111
enum ViewOptFlags IndexShadings
-sw/inc/viewopt.hxx:113
+sw/inc/viewopt.hxx:112
enum ViewOptFlags Links
-sw/inc/viewopt.hxx:114
+sw/inc/viewopt.hxx:113
enum ViewOptFlags VisitedLinks
-sw/inc/viewopt.hxx:115
+sw/inc/viewopt.hxx:114
enum ViewOptFlags FieldShadings
-sw/inc/viewopt.hxx:116
+sw/inc/viewopt.hxx:115
enum ViewOptFlags SectionBoundaries
-sw/inc/viewopt.hxx:117
+sw/inc/viewopt.hxx:116
enum ViewOptFlags Shadow
sw/source/core/access/accfrmobjmap.hxx:36
- enum SwAccessibleChildMapKey::LayerId CONTROLS
-sw/source/core/access/accfrmobjmap.hxx:36
enum SwAccessibleChildMapKey::LayerId HELL
sw/source/core/access/accfrmobjmap.hxx:36
enum SwAccessibleChildMapKey::LayerId HEAVEN
@@ -13171,72 +10435,52 @@ sw/source/core/access/accfrmobjmap.hxx:36
sw/source/core/access/accfrmobjmap.hxx:36
enum SwAccessibleChildMapKey::LayerId INVALID
sw/source/core/access/accfrmobjmap.hxx:36
+ enum SwAccessibleChildMapKey::LayerId CONTROLS
+sw/source/core/access/accfrmobjmap.hxx:36
enum SwAccessibleChildMapKey::LayerId TEXT
-sw/source/core/inc/ascharanchoredobjectposition.hxx:35
- enum AsCharFlags Quick
-sw/source/core/inc/ascharanchoredobjectposition.hxx:36
- enum AsCharFlags UlSpace
-sw/source/core/inc/ascharanchoredobjectposition.hxx:37
- enum AsCharFlags Init
-sw/source/core/inc/ascharanchoredobjectposition.hxx:38
- enum AsCharFlags Rotate
-sw/source/core/inc/ascharanchoredobjectposition.hxx:39
- enum AsCharFlags Reverse
-sw/source/core/inc/ascharanchoredobjectposition.hxx:40
- enum AsCharFlags Bidi
+sw/source/core/fields/cellfml.cxx:52
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/sw/source/core/fields/cellfml.cxx:50:1) cMAXSTACKSIZE
sw/source/core/inc/ascharanchoredobjectposition.hxx:52
enum sw::LineAlign TOP
-sw/source/core/inc/dbg_lay.hxx:57
- enum DbgAction PrevSect
-sw/source/core/inc/dbg_lay.hxx:57
+sw/source/core/inc/dbg_lay.hxx:58
enum DbgAction NextSect
-sw/source/core/inc/frame.hxx:306
- enum SwFrame::InvalidationType INVALID_LINENUM
-sw/source/core/inc/frame.hxx:306
- enum SwFrame::InvalidationType INVALID_SIZE
-sw/source/core/inc/frame.hxx:306
+sw/source/core/inc/dbg_lay.hxx:58
+ enum DbgAction PrevSect
+sw/source/core/inc/frame.hxx:468
enum SwFrame::InvalidationType INVALID_PRTAREA
-sw/source/core/inc/rolbck.hxx:59
- enum HISTORY_HINT HSTRY_SETFMTHNT
+sw/source/core/inc/frame.hxx:468
+ enum SwFrame::InvalidationType INVALID_SIZE
+sw/source/core/inc/frame.hxx:468
+ enum SwFrame::InvalidationType INVALID_LINENUM
+sw/source/core/inc/mvsave.hxx:70
+ enum sw::mark::RestoreMode All
sw/source/core/inc/rolbck.hxx:60
- enum HISTORY_HINT HSTRY_RESETFMTHNT
+ enum HISTORY_HINT HSTRY_SETFMTHNT
sw/source/core/inc/rolbck.hxx:61
- enum HISTORY_HINT HSTRY_SETTXTHNT
+ enum HISTORY_HINT HSTRY_RESETFMTHNT
sw/source/core/inc/rolbck.hxx:62
- enum HISTORY_HINT HSTRY_SETTXTFLDHNT
+ enum HISTORY_HINT HSTRY_SETTXTHNT
sw/source/core/inc/rolbck.hxx:63
+ enum HISTORY_HINT HSTRY_SETTXTFLDHNT
+sw/source/core/inc/rolbck.hxx:64
enum HISTORY_HINT HSTRY_SETREFMARKHNT
-sw/source/core/inc/rolbck.hxx:66
- enum HISTORY_HINT HSTRY_SETFTNHNT
sw/source/core/inc/rolbck.hxx:67
+ enum HISTORY_HINT HSTRY_SETFTNHNT
+sw/source/core/inc/rolbck.hxx:68
enum HISTORY_HINT HSTRY_CHGFMTCOLL
-sw/source/core/inc/rolbck.hxx:69
- enum HISTORY_HINT HSTRY_BOOKMARK
sw/source/core/inc/rolbck.hxx:70
- enum HISTORY_HINT HSTRY_SETATTRSET
+ enum HISTORY_HINT HSTRY_BOOKMARK
sw/source/core/inc/rolbck.hxx:71
- enum HISTORY_HINT HSTRY_CHGFLYANCHOR
+ enum HISTORY_HINT HSTRY_SETATTRSET
sw/source/core/inc/rolbck.hxx:72
- enum HISTORY_HINT HSTRY_CHGFLYCHAIN
+ enum HISTORY_HINT HSTRY_CHGFLYANCHOR
sw/source/core/inc/rolbck.hxx:73
+ enum HISTORY_HINT HSTRY_CHGFLYCHAIN
+sw/source/core/inc/rolbck.hxx:74
enum HISTORY_HINT HSTRY_CHGCHARFMT
-sw/source/core/inc/rootfrm.hxx:46
- enum SwInvalidateFlags Size
-sw/source/core/inc/rootfrm.hxx:47
- enum SwInvalidateFlags PrtArea
-sw/source/core/inc/rootfrm.hxx:48
- enum SwInvalidateFlags Pos
-sw/source/core/inc/rootfrm.hxx:49
- enum SwInvalidateFlags Table
-sw/source/core/inc/rootfrm.hxx:50
- enum SwInvalidateFlags Section
-sw/source/core/inc/rootfrm.hxx:51
- enum SwInvalidateFlags LineNum
-sw/source/core/inc/rootfrm.hxx:52
- enum SwInvalidateFlags Direction
sw/source/core/inc/rootfrm.hxx:63
enum SwRemoveResult Prev
-sw/source/core/inc/sectfrm.hxx:34
+sw/source/core/inc/sectfrm.hxx:33
enum SwFindMode LastCnt
sw/source/core/inc/SwXMLBlockImport.hxx:106
enum SwXMLBlockListToken ABBREVIATED_NAME
@@ -13248,194 +10492,124 @@ sw/source/core/inc/SwXMLBlockImport.hxx:111
enum SwXMLBlockListToken PACKAGE_NAME
sw/source/core/inc/SwXMLBlockImport.hxx:112
enum SwXMLBlockListToken UNFORMATTED_TEXT
-sw/source/core/inc/SwXMLTextBlocks.hxx:34
- enum SwXmlFlags NoRootCommit
sw/source/core/inc/txmsrt.hxx:42
enum TOXSortType TOX_SORT_AUTHORITY
-sw/source/core/inc/UndoManager.hxx:115
+sw/source/core/inc/txtfrm.hxx:100
+ enum sw::FrameMode New
+sw/source/core/inc/txtfrm.hxx:121
+ enum sw::Recreate ThisNode
+sw/source/core/inc/UndoManager.hxx:120
enum sw::UndoManager::UndoOrRedoType Redo
-sw/source/core/inc/wrong.hxx:50
+sw/source/core/inc/wrong.hxx:60
enum WrongListType WRONGLIST_CHANGETRACKING
-sw/source/core/layout/paintfrm.cxx:2398
+sw/source/core/layout/paintfrm.cxx:2217
enum SwLineEntry::OverlapType NO_OVERLAP
-sw/source/core/text/pormulti.hxx:42
+sw/source/core/text/pormulti.hxx:43
enum SwMultiCreatorId Double
+sw/source/core/text/pormulti.hxx:49
+ enum RubyPosition BELOW
sw/source/filter/html/css1atr.cxx:104
enum Css1Background Attr
sw/source/filter/html/css1atr.cxx:108
enum Css1Background Section
-sw/source/filter/html/css1atr.cxx:113
- enum Css1FrameSize Width
sw/source/filter/html/css1atr.cxx:114
enum Css1FrameSize VarHeight
sw/source/filter/html/css1atr.cxx:115
enum Css1FrameSize MinHeight
sw/source/filter/html/css1atr.cxx:116
enum Css1FrameSize FixHeight
-sw/source/filter/html/css1atr.cxx:117
- enum Css1FrameSize AnyHeight
-sw/source/filter/html/css1atr.cxx:118
- enum Css1FrameSize Pixel
-sw/source/filter/html/htmlatr.cxx:1046
+sw/source/filter/html/htmlatr.cxx:1061
enum HTMLOnOffState HTML_NOT_SUPPORTED
-sw/source/filter/html/htmlfly.hxx:36
+sw/source/filter/html/htmlfly.hxx:35
enum SwHTMLFrameType HTML_FRMTYPE_TABLE
-sw/source/filter/html/htmlfly.hxx:37
+sw/source/filter/html/htmlfly.hxx:36
enum SwHTMLFrameType HTML_FRMTYPE_TABLE_CAP
-sw/source/filter/html/htmlfly.hxx:38
+sw/source/filter/html/htmlfly.hxx:37
enum SwHTMLFrameType HTML_FRMTYPE_MULTICOL
-sw/source/filter/html/htmlfly.hxx:39
+sw/source/filter/html/htmlfly.hxx:38
enum SwHTMLFrameType HTML_FRMTYPE_EMPTY
-sw/source/filter/html/htmlfly.hxx:40
+sw/source/filter/html/htmlfly.hxx:39
enum SwHTMLFrameType HTML_FRMTYPE_TEXT
-sw/source/filter/html/htmlfly.hxx:41
+sw/source/filter/html/htmlfly.hxx:40
enum SwHTMLFrameType HTML_FRMTYPE_GRF
-sw/source/filter/html/htmlfly.hxx:42
+sw/source/filter/html/htmlfly.hxx:41
enum SwHTMLFrameType HTML_FRMTYPE_PLUGIN
-sw/source/filter/html/htmlfly.hxx:43
+sw/source/filter/html/htmlfly.hxx:42
enum SwHTMLFrameType HTML_FRMTYPE_APPLET
-sw/source/filter/html/htmlfly.hxx:44
+sw/source/filter/html/htmlfly.hxx:43
enum SwHTMLFrameType HTML_FRMTYPE_IFRAME
-sw/source/filter/html/htmlfly.hxx:45
+sw/source/filter/html/htmlfly.hxx:44
enum SwHTMLFrameType HTML_FRMTYPE_OLE
-sw/source/filter/html/htmlfly.hxx:46
+sw/source/filter/html/htmlfly.hxx:45
enum SwHTMLFrameType HTML_FRMTYPE_MARQUEE
-sw/source/filter/html/htmlfly.hxx:47
+sw/source/filter/html/htmlfly.hxx:46
enum SwHTMLFrameType HTML_FRMTYPE_CONTROL
-sw/source/filter/html/htmlfly.hxx:48
+sw/source/filter/html/htmlfly.hxx:47
enum SwHTMLFrameType HTML_FRMTYPE_DRAW
-sw/source/filter/html/htmlfly.hxx:49
+sw/source/filter/html/htmlfly.hxx:48
enum SwHTMLFrameType HTML_FRMTYPE_END
-sw/source/filter/html/htmlfly.hxx:68
+sw/source/filter/html/htmlfly.hxx:67
enum HtmlPosition Prefix
-sw/source/filter/html/htmlfly.hxx:69
+sw/source/filter/html/htmlfly.hxx:68
enum HtmlPosition Before
-sw/source/filter/html/htmlform.cxx:103
+sw/source/filter/html/htmlform.cxx:105
enum HTMLWordWrapMode HTML_WM_SOFT
-sw/source/filter/html/htmlform.hxx:25
- enum HTMLEventType HTML_ET_ONSUBMITFORM
-sw/source/filter/html/htmlform.hxx:25
- enum HTMLEventType HTML_ET_ONRESETFORM
-sw/source/filter/html/htmlform.hxx:26
- enum HTMLEventType HTML_ET_ONLOSEFOCUS
-sw/source/filter/html/htmlform.hxx:26
- enum HTMLEventType HTML_ET_ONGETFOCUS
-sw/source/filter/html/htmlform.hxx:27
- enum HTMLEventType HTML_ET_ONCLICK_ITEM
-sw/source/filter/html/htmlform.hxx:27
- enum HTMLEventType HTML_ET_ONCLICK
-sw/source/filter/html/htmlform.hxx:28
- enum HTMLEventType HTML_ET_ONCHANGE
-sw/source/filter/html/htmlform.hxx:28
- enum HTMLEventType HTML_ET_ONSELECT
-sw/source/filter/html/htmlforw.cxx:701
+sw/source/filter/html/htmlforw.cxx:706
enum Tag TAG_INPUT
-sw/source/filter/html/htmlforw.cxx:707
+sw/source/filter/html/htmlforw.cxx:712
enum Type TYPE_PASSWORD
-sw/source/filter/html/htmlforw.cxx:708
- enum Type TYPE_SUBMIT
-sw/source/filter/html/htmlforw.cxx:708
+sw/source/filter/html/htmlforw.cxx:713
enum Type TYPE_RESET
-sw/source/filter/html/htmlforw.cxx:708
+sw/source/filter/html/htmlforw.cxx:713
+ enum Type TYPE_SUBMIT
+sw/source/filter/html/htmlforw.cxx:713
enum Type TYPE_BUTTON
sw/source/filter/html/parcss1.hxx:61
enum CSS1ParserState CSS1_PAR_ACCEPTED
-sw/source/filter/html/svxcss1.hxx:39
- enum SvxCSS1Position SVX_CSS1_POS_STATIC
sw/source/filter/html/svxcss1.hxx:41
+ enum SvxCSS1Position SVX_CSS1_POS_STATIC
+sw/source/filter/html/svxcss1.hxx:43
enum SvxCSS1Position SVX_CSS1_POS_RELATIVE
-sw/source/filter/html/svxcss1.hxx:47
+sw/source/filter/html/svxcss1.hxx:49
enum SvxCSS1LengthType SVX_CSS1_LTYPE_AUTO
-sw/source/filter/html/svxcss1.hxx:56
+sw/source/filter/html/svxcss1.hxx:58
enum SvxCSS1SizeType SVX_CSS1_STYPE_AUTO
-sw/source/filter/html/swhtml.hxx:189
+sw/source/filter/html/swhtml.hxx:197
enum SwHTMLAppendMode AM_NORMAL
-sw/source/filter/html/swhtml.hxx:337
- enum HtmlContextFlags ProtectStack
-sw/source/filter/html/swhtml.hxx:338
+sw/source/filter/html/swhtml.hxx:307
enum HtmlContextFlags StripPara
-sw/source/filter/html/swhtml.hxx:339
+sw/source/filter/html/swhtml.hxx:308
enum HtmlContextFlags KeepNumrule
-sw/source/filter/html/swhtml.hxx:340
+sw/source/filter/html/swhtml.hxx:309
enum HtmlContextFlags HeaderDist
-sw/source/filter/html/swhtml.hxx:341
+sw/source/filter/html/swhtml.hxx:310
enum HtmlContextFlags FooterDist
-sw/source/filter/html/swhtml.hxx:342
- enum HtmlContextFlags KeepAttrs
-sw/source/filter/html/swhtml.hxx:343
+sw/source/filter/html/swhtml.hxx:312
enum HtmlContextFlags MultiColMask
-sw/source/filter/html/swhtml.hxx:351
- enum HtmlFrameFormatFlags Box
-sw/source/filter/html/swhtml.hxx:352
- enum HtmlFrameFormatFlags Background
-sw/source/filter/html/swhtml.hxx:353
- enum HtmlFrameFormatFlags Padding
-sw/source/filter/html/swhtml.hxx:354
- enum HtmlFrameFormatFlags Direction
-sw/source/filter/html/wrthtml.hxx:74
- enum HtmlFrmOpts Align
-sw/source/filter/html/wrthtml.hxx:75
- enum HtmlFrmOpts SAlign
-sw/source/filter/html/wrthtml.hxx:77
- enum HtmlFrmOpts Width
-sw/source/filter/html/wrthtml.hxx:78
- enum HtmlFrmOpts Height
-sw/source/filter/html/wrthtml.hxx:79
- enum HtmlFrmOpts Size
-sw/source/filter/html/wrthtml.hxx:80
- enum HtmlFrmOpts SWidth
-sw/source/filter/html/wrthtml.hxx:81
- enum HtmlFrmOpts SHeight
-sw/source/filter/html/wrthtml.hxx:82
- enum HtmlFrmOpts SSize
-sw/source/filter/html/wrthtml.hxx:83
- enum HtmlFrmOpts AnySize
-sw/source/filter/html/wrthtml.hxx:84
- enum HtmlFrmOpts AbsSize
-sw/source/filter/html/wrthtml.hxx:85
- enum HtmlFrmOpts MarginSize
-sw/source/filter/html/wrthtml.hxx:87
- enum HtmlFrmOpts Space
-sw/source/filter/html/wrthtml.hxx:88
- enum HtmlFrmOpts SSpace
-sw/source/filter/html/wrthtml.hxx:90
- enum HtmlFrmOpts Border
-sw/source/filter/html/wrthtml.hxx:91
- enum HtmlFrmOpts SBorder
-sw/source/filter/html/wrthtml.hxx:92
- enum HtmlFrmOpts SNoBorder
-sw/source/filter/html/wrthtml.hxx:94
- enum HtmlFrmOpts SBackground
-sw/source/filter/html/wrthtml.hxx:96
- enum HtmlFrmOpts Name
-sw/source/filter/html/wrthtml.hxx:97
- enum HtmlFrmOpts Alt
-sw/source/filter/html/wrthtml.hxx:98
- enum HtmlFrmOpts BrClear
-sw/source/filter/html/wrthtml.hxx:99
- enum HtmlFrmOpts SPixSize
-sw/source/filter/html/wrthtml.hxx:100
- enum HtmlFrmOpts Id
-sw/source/filter/html/wrthtml.hxx:101
- enum HtmlFrmOpts Dir
sw/source/filter/html/wrthtml.hxx:103
+ enum HtmlFrmOpts Replacement
+sw/source/filter/html/wrthtml.hxx:105
enum HtmlFrmOpts GenImgAllMask
-sw/source/filter/html/wrthtml.hxx:104
+sw/source/filter/html/wrthtml.hxx:106
enum HtmlFrmOpts GenImgMask
-sw/source/filter/inc/fltshell.hxx:161
+sw/source/filter/inc/fltshell.hxx:149
+ enum SwFltControlStack::MoveAttrsMode DEFAULT
+sw/source/filter/inc/fltshell.hxx:153
enum SwFltControlStack::Flags HYPO
-sw/source/filter/inc/fltshell.hxx:162
+sw/source/filter/inc/fltshell.hxx:154
enum SwFltControlStack::Flags TAGS_DO_ID
-sw/source/filter/inc/fltshell.hxx:163
+sw/source/filter/inc/fltshell.hxx:155
enum SwFltControlStack::Flags TAGS_VISIBLE
-sw/source/filter/inc/fltshell.hxx:164
+sw/source/filter/inc/fltshell.hxx:156
enum SwFltControlStack::Flags BOOK_TO_VAR_REF
-sw/source/filter/inc/fltshell.hxx:165
+sw/source/filter/inc/fltshell.hxx:157
enum SwFltControlStack::Flags BOOK_AND_REF
-sw/source/filter/inc/fltshell.hxx:166
+sw/source/filter/inc/fltshell.hxx:158
enum SwFltControlStack::Flags TAGS_IN_TEXT
-sw/source/filter/inc/fltshell.hxx:167
+sw/source/filter/inc/fltshell.hxx:159
enum SwFltControlStack::Flags ALLOW_FLD_CR
+sw/source/filter/inc/wrt_fn.hxx:42
+ enum RES_NODE RES_NODE_BEGIN
sw/source/filter/inc/wrt_fn.hxx:43
enum RES_NODE RES_TXTNODE
sw/source/filter/inc/wrt_fn.hxx:44
@@ -13444,49 +10618,41 @@ sw/source/filter/inc/wrt_fn.hxx:45
enum RES_NODE RES_OLENODE
sw/source/filter/inc/wrt_fn.hxx:46
enum RES_NODE RES_NODE_END
-sw/source/filter/ww8/sprmids.hxx:79
+sw/source/filter/ww8/sprmids.hxx:244
enum NS_sprm::sgc paragraph
-sw/source/filter/ww8/sprmids.hxx:80
+sw/source/filter/ww8/sprmids.hxx:245
enum NS_sprm::sgc character
-sw/source/filter/ww8/sprmids.hxx:81
+sw/source/filter/ww8/sprmids.hxx:246
enum NS_sprm::sgc picture
-sw/source/filter/ww8/sprmids.hxx:82
+sw/source/filter/ww8/sprmids.hxx:247
enum NS_sprm::sgc section
-sw/source/filter/ww8/sprmids.hxx:83
+sw/source/filter/ww8/sprmids.hxx:248
enum NS_sprm::sgc table
-sw/source/filter/ww8/sprmids.hxx:87
+sw/source/filter/ww8/sprmids.hxx:252
enum NS_sprm::spra operand_toggle_1b_0
-sw/source/filter/ww8/sprmids.hxx:88
+sw/source/filter/ww8/sprmids.hxx:253
enum NS_sprm::spra operand_1b_1
-sw/source/filter/ww8/sprmids.hxx:89
+sw/source/filter/ww8/sprmids.hxx:254
enum NS_sprm::spra operand_2b_2
-sw/source/filter/ww8/sprmids.hxx:90
+sw/source/filter/ww8/sprmids.hxx:255
enum NS_sprm::spra operand_4b_3
-sw/source/filter/ww8/sprmids.hxx:91
+sw/source/filter/ww8/sprmids.hxx:256
enum NS_sprm::spra operand_2b_4
-sw/source/filter/ww8/sprmids.hxx:92
+sw/source/filter/ww8/sprmids.hxx:257
enum NS_sprm::spra operand_2b_5
-sw/source/filter/ww8/sprmids.hxx:93
+sw/source/filter/ww8/sprmids.hxx:258
enum NS_sprm::spra operand_varlen_6
-sw/source/filter/ww8/sprmids.hxx:94
+sw/source/filter/ww8/sprmids.hxx:259
enum NS_sprm::spra operand_3b_7
-sw/source/filter/ww8/wrtww8.hxx:141
- enum FieldFlags Start
-sw/source/filter/ww8/wrtww8.hxx:142
- enum FieldFlags CmdStart
-sw/source/filter/ww8/wrtww8.hxx:143
- enum FieldFlags CmdEnd
-sw/source/filter/ww8/wrtww8.hxx:144
- enum FieldFlags End
-sw/source/filter/ww8/wrtww8.hxx:145
- enum FieldFlags Close
-sw/source/filter/ww8/ww8par2.cxx:1679
+sw/source/filter/ww8/wrtww8.hxx:794
+ enum MSWordExportBase::ExportFormat DOC
+sw/source/filter/ww8/ww8par2.cxx:1635
enum wwTableSprm sprmNil
-sw/source/filter/ww8/ww8par2.hxx:148
+sw/source/filter/ww8/ww8par2.hxx:298
enum WW8LvlType WW8_Sequence
-sw/source/filter/ww8/ww8par.cxx:5673
- enum (anonymous at sw/source/filter/ww8/ww8par.cxx:5673:5) Other
-sw/source/filter/ww8/ww8par.hxx:149
+sw/source/filter/ww8/ww8par.cxx:5712
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/filter/ww8/ww8par.cxx:5712:5) Other
+sw/source/filter/ww8/ww8par.hxx:150
enum WW8ListManager::ListLevel nMinLevel
sw/source/filter/ww8/ww8scan.hxx:388
enum ePLCFT PLCF_END
@@ -13496,128 +10662,140 @@ sw/source/filter/ww8/ww8scan.hxx:391
enum eExtSprm eBKN
sw/source/filter/ww8/ww8scan.hxx:391
enum eExtSprm eATNBKN
-sw/source/filter/ww8/ww8scan.hxx:742
+sw/source/filter/ww8/ww8scan.hxx:747
enum eBookStatus BOOK_NORMAL
-sw/source/filter/ww8/ww8scan.hxx:929
+sw/source/filter/ww8/ww8scan.hxx:867
+ enum ManMaskTypes MAN_MASK_NEW_SEP
+sw/source/filter/ww8/ww8scan.hxx:934
enum WW8PLCFMan::WW8PLCFManLimits MAN_PLCF_COUNT
-sw/source/filter/ww8/ww8struc.hxx:364
+sw/source/filter/ww8/ww8struc.hxx:367
enum BRC_Sides WW8_BETW
-sw/source/filter/ww8/ww8struc.hxx:941
+sw/source/filter/ww8/ww8struc.hxx:944
enum WW8_FSPA::FSPAOrient RelPageBorder
-sw/source/filter/xml/xmlitemi.cxx:85
- enum SwXMLImportTableItemMapper_Impl::(anonymous at sw/source/filter/xml/xmlitemi.cxx:85:5) BOTTOM
-sw/source/filter/xml/xmlitemi.cxx:85
- enum SwXMLImportTableItemMapper_Impl::(anonymous at sw/source/filter/xml/xmlitemi.cxx:85:5) LEFT
-sw/source/filter/xml/xmlitemi.cxx:85
- enum SwXMLImportTableItemMapper_Impl::(anonymous at sw/source/filter/xml/xmlitemi.cxx:85:5) TOP
-sw/source/filter/xml/xmlitemi.cxx:85
- enum SwXMLImportTableItemMapper_Impl::(anonymous at sw/source/filter/xml/xmlitemi.cxx:85:5) RIGHT
-sw/source/filter/xml/xmlmeta.cxx:76
+sw/source/filter/xml/xmlitemi.cxx:84
+ enum SwXMLImportTableItemMapper_Impl::(anonymous at /media/noel/disk2/libo6/sw/source/filter/xml/xmlitemi.cxx:84:5) TOP
+sw/source/filter/xml/xmlitemi.cxx:84
+ enum SwXMLImportTableItemMapper_Impl::(anonymous at /media/noel/disk2/libo6/sw/source/filter/xml/xmlitemi.cxx:84:5) RIGHT
+sw/source/filter/xml/xmlitemi.cxx:84
+ enum SwXMLImportTableItemMapper_Impl::(anonymous at /media/noel/disk2/libo6/sw/source/filter/xml/xmlitemi.cxx:84:5) BOTTOM
+sw/source/filter/xml/xmlitemi.cxx:84
+ enum SwXMLImportTableItemMapper_Impl::(anonymous at /media/noel/disk2/libo6/sw/source/filter/xml/xmlitemi.cxx:84:5) LEFT
+sw/source/filter/xml/xmlmeta.cxx:75
enum SvXMLTokenMapAttrs XML_TOK_META_STAT_TABLE
-sw/source/filter/xml/xmlmeta.cxx:77
+sw/source/filter/xml/xmlmeta.cxx:76
enum SvXMLTokenMapAttrs XML_TOK_META_STAT_IMAGE
-sw/source/filter/xml/xmlmeta.cxx:78
+sw/source/filter/xml/xmlmeta.cxx:77
enum SvXMLTokenMapAttrs XML_TOK_META_STAT_OLE
-sw/source/filter/xml/xmlmeta.cxx:81
+sw/source/filter/xml/xmlmeta.cxx:80
enum SvXMLTokenMapAttrs XML_TOK_META_STAT_WORD
-sw/source/filter/xml/xmlmeta.cxx:82
+sw/source/filter/xml/xmlmeta.cxx:81
enum SvXMLTokenMapAttrs XML_TOK_META_STAT_CHAR
-sw/source/filter/xml/xmlmeta.cxx:83
+sw/source/filter/xml/xmlmeta.cxx:82
enum SvXMLTokenMapAttrs XML_TOK_META_STAT_NON_WHITE_SPACE_CHAR
-sw/source/filter/xml/xmlmeta.cxx:84
+sw/source/filter/xml/xmlmeta.cxx:83
enum SvXMLTokenMapAttrs XML_TOK_META_STAT_END
-sw/source/ui/frmdlg/frmpage.cxx:90
+sw/source/ui/fldui/fldref.cxx:760
+ enum FMT_REF_IDX FMT_REF_PAGE_PGDSC_IDX
+sw/source/ui/fldui/fldref.cxx:763
+ enum FMT_REF_IDX FMT_REF_ONLYSEQNO_IDX
+sw/source/ui/fldui/fldref.cxx:764
+ enum FMT_REF_IDX FMT_REF_NUMBER_IDX
+sw/source/ui/fldui/fldref.cxx:765
+ enum FMT_REF_IDX FMT_REF_NUMBER_NO_CONTEXT_IDX
+sw/source/ui/fldui/fldref.cxx:766
+ enum FMT_REF_IDX FMT_REF_NUMBER_FULL_CONTEXT_IDX
+sw/source/ui/frmdlg/frmpage.cxx:92
enum LB Frame
-sw/source/ui/frmdlg/frmpage.cxx:91
+sw/source/ui/frmdlg/frmpage.cxx:93
enum LB PrintArea
-sw/source/ui/frmdlg/frmpage.cxx:92
+sw/source/ui/frmdlg/frmpage.cxx:94
enum LB VertFrame
-sw/source/ui/frmdlg/frmpage.cxx:93
+sw/source/ui/frmdlg/frmpage.cxx:95
enum LB VertPrintArea
-sw/source/ui/frmdlg/frmpage.cxx:94
+sw/source/ui/frmdlg/frmpage.cxx:96
enum LB RelFrameLeft
-sw/source/ui/frmdlg/frmpage.cxx:95
- enum LB RelFrameRight
sw/source/ui/frmdlg/frmpage.cxx:97
+ enum LB RelFrameRight
+sw/source/ui/frmdlg/frmpage.cxx:99
enum LB RelPageLeft
-sw/source/ui/frmdlg/frmpage.cxx:98
+sw/source/ui/frmdlg/frmpage.cxx:100
enum LB RelPageRight
-sw/source/ui/frmdlg/frmpage.cxx:99
+sw/source/ui/frmdlg/frmpage.cxx:101
enum LB RelPageFrame
-sw/source/ui/frmdlg/frmpage.cxx:100
- enum LB RelPagePrintArea
sw/source/ui/frmdlg/frmpage.cxx:102
+ enum LB RelPagePrintArea
+sw/source/ui/frmdlg/frmpage.cxx:104
enum LB FlyRelPageLeft
-sw/source/ui/frmdlg/frmpage.cxx:103
+sw/source/ui/frmdlg/frmpage.cxx:105
enum LB FlyRelPageRight
-sw/source/ui/frmdlg/frmpage.cxx:104
+sw/source/ui/frmdlg/frmpage.cxx:106
enum LB FlyRelPageFrame
-sw/source/ui/frmdlg/frmpage.cxx:105
- enum LB FlyRelPagePrintArea
sw/source/ui/frmdlg/frmpage.cxx:107
- enum LB RelBase
+ enum LB FlyRelPagePrintArea
sw/source/ui/frmdlg/frmpage.cxx:109
- enum LB RelRow
+ enum LB RelBase
sw/source/ui/frmdlg/frmpage.cxx:111
+ enum LB RelRow
+sw/source/ui/frmdlg/frmpage.cxx:113
enum LB FlyVertFrame
-sw/source/ui/frmdlg/frmpage.cxx:112
- enum LB FlyVertPrintArea
sw/source/ui/frmdlg/frmpage.cxx:114
+ enum LB FlyVertPrintArea
+sw/source/ui/frmdlg/frmpage.cxx:116
enum LB VertLine
-sw/source/uibase/dbui/dbmgr.cxx:167
+sw/source/uibase/dbui/dbmgr.cxx:174
enum WorkingDocType COPY
-sw/source/uibase/docvw/edtwin.cxx:1564
+sw/source/uibase/docvw/edtwin.cxx:1555
enum SwKeyState NumOrNoNum
-sw/source/uibase/docvw/edtwin.cxx:6003
+sw/source/uibase/docvw/edtwin.cxx:5905
enum Capitalization CASE_OTHER
sw/source/uibase/fldui/fldmgr.cxx:95
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_DOC_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_DOC_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:96
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_DOC_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_DOC_END
sw/source/uibase/fldui/fldmgr.cxx:98
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_FKT_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_FKT_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:99
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_FKT_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_FKT_END
sw/source/uibase/fldui/fldmgr.cxx:101
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_REF_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_REF_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:102
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_REF_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_REF_END
sw/source/uibase/fldui/fldmgr.cxx:104
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_REG_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_REG_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:105
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_REG_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_REG_END
sw/source/uibase/fldui/fldmgr.cxx:107
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_DB_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_DB_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:108
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_DB_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_DB_END
sw/source/uibase/fldui/fldmgr.cxx:110
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_VAR_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_VAR_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:111
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_VAR_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:93:1) GRP_VAR_END
sw/source/uibase/fldui/fldmgr.cxx:116
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_DOC_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_DOC_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:117
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_DOC_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_DOC_END
sw/source/uibase/fldui/fldmgr.cxx:119
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_FKT_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_FKT_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:120
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_FKT_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_FKT_END
sw/source/uibase/fldui/fldmgr.cxx:122
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_REF_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_REF_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:123
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_REF_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_REF_END
sw/source/uibase/fldui/fldmgr.cxx:125
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_REG_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_REG_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:126
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_REG_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_REG_END
sw/source/uibase/fldui/fldmgr.cxx:128
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_DB_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_DB_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:129
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_DB_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_DB_END
sw/source/uibase/fldui/fldmgr.cxx:131
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_VAR_BEGIN
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_VAR_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:132
- enum (anonymous at sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_VAR_END
+ enum (anonymous at /media/noel/disk2/libo6/sw/source/uibase/fldui/fldmgr.cxx:114:1) GRP_WEB_VAR_END
sw/source/uibase/inc/chrdlgmodes.hxx:15
enum SwCharDlgMode Env
sw/source/uibase/inc/conttree.hxx:57
@@ -13634,103 +10812,123 @@ sw/source/uibase/inc/conttree.hxx:62
enum MenuEnableFlags Update
sw/source/uibase/inc/conttree.hxx:63
enum MenuEnableFlags UpdateSel
-sw/source/uibase/inc/conttree.hxx:64
- enum MenuEnableFlags EditLink
sw/source/uibase/inc/frmmgr.hxx:47
enum Frmmgr_Type ENVELP
-sw/source/uibase/inc/numberingtypelistbox.hxx:29
+sw/source/uibase/inc/numberingtypelistbox.hxx:31
enum SwInsertNumTypes NoNumbering
-sw/source/uibase/inc/numberingtypelistbox.hxx:30
+sw/source/uibase/inc/numberingtypelistbox.hxx:32
enum SwInsertNumTypes PageStyleNumbering
-sw/source/uibase/inc/numberingtypelistbox.hxx:31
+sw/source/uibase/inc/numberingtypelistbox.hxx:33
enum SwInsertNumTypes Bitmap
-sw/source/uibase/inc/numberingtypelistbox.hxx:32
+sw/source/uibase/inc/numberingtypelistbox.hxx:34
enum SwInsertNumTypes Bullet
-sw/source/uibase/inc/numberingtypelistbox.hxx:33
- enum SwInsertNumTypes Extended
sw/source/uibase/inc/pview.hxx:123
enum SwPagePreviewWin::MoveMode MV_SPECIFIC_PAGE
-sw/source/uibase/inc/swdtflvr.hxx:46
- enum TransferBufferType Document
-sw/source/uibase/inc/swdtflvr.hxx:47
+sw/source/uibase/inc/swdtflvr.hxx:50
enum TransferBufferType DocumentWord
-sw/source/uibase/inc/swdtflvr.hxx:49
- enum TransferBufferType Table
sw/source/uibase/inc/swdtflvr.hxx:52
+ enum TransferBufferType Table
+sw/source/uibase/inc/swdtflvr.hxx:55
enum TransferBufferType Drawing
-sw/source/uibase/inc/wrtsh.hxx:63
- enum SelectionType TableCell
-sw/source/uibase/inc/wrtsh.hxx:66
- enum SelectionType Ornament
-sw/source/uibase/inc/wrtsh.hxx:68
- enum SelectionType FormControl
-sw/source/uibase/inc/wrtsh.hxx:69
- enum SelectionType Media
-sw/source/uibase/inc/wrtsh.hxx:70
- enum SelectionType ExtrudedCustomShape
-sw/source/uibase/inc/wrtsh.hxx:71
- enum SelectionType FontWork
-sw/source/uibase/inc/wrtsh.hxx:73
+sw/source/uibase/inc/wrtsh.hxx:75
enum SelectionType All
-sw/source/uibase/inc/wrtsh.hxx:344
+sw/source/uibase/inc/wrtsh.hxx:347
enum SwWrtShell::GetStyle GETSTYLE_CREATESOME
-sw/source/uibase/inc/wrtsh.hxx:502
+sw/source/uibase/inc/wrtsh.hxx:507
enum SwWrtShell::PageMove MV_PAGE_UP
-sw/source/uibase/inc/wrtsh.hxx:503
+sw/source/uibase/inc/wrtsh.hxx:508
enum SwWrtShell::PageMove MV_PAGE_DOWN
-sw/source/uibase/uno/unomailmerge.cxx:91
+sw/source/uibase/ribbar/workctrl.cxx:958
+ enum PrevNextScrollToolboxController::Type NEXT
+sw/source/uibase/uno/unomailmerge.cxx:92
enum CloseResult eSuccess
-sw/source/uibase/uno/unomailmerge.cxx:93
+sw/source/uibase/uno/unomailmerge.cxx:94
enum CloseResult eFailed
-sw/source/uibase/utlui/initui.cxx:52
- enum (anonymous namespace)::CachedStringID OldGrfCat
-sw/source/uibase/utlui/initui.cxx:53
- enum (anonymous namespace)::CachedStringID OldTabCat
-sw/source/uibase/utlui/initui.cxx:54
- enum (anonymous namespace)::CachedStringID OldFrameCat
-sw/source/uibase/utlui/initui.cxx:55
- enum (anonymous namespace)::CachedStringID OldDrwCat
-sw/source/uibase/utlui/initui.cxx:56
- enum (anonymous namespace)::CachedStringID CurrGlosGroup
-sw/source/uibase/utlui/initui.cxx:57
- enum (anonymous namespace)::CachedStringID CachedStrings
+sw/source/uibase/utlui/content.cxx:821
+ enum STR_CONTEXT_IDX IDX_STR_OUTLINE_LEVEL
+sw/source/uibase/utlui/content.cxx:822
+ enum STR_CONTEXT_IDX IDX_STR_DRAGMODE
+sw/source/uibase/utlui/content.cxx:823
+ enum STR_CONTEXT_IDX IDX_STR_HYPERLINK
+sw/source/uibase/utlui/content.cxx:826
+ enum STR_CONTEXT_IDX IDX_STR_DISPLAY
+sw/source/uibase/utlui/content.cxx:827
+ enum STR_CONTEXT_IDX IDX_STR_ACTIVE_VIEW
+sw/source/uibase/utlui/content.cxx:828
+ enum STR_CONTEXT_IDX IDX_STR_HIDDEN
+sw/source/uibase/utlui/content.cxx:829
+ enum STR_CONTEXT_IDX IDX_STR_ACTIVE
+sw/source/uibase/utlui/content.cxx:831
+ enum STR_CONTEXT_IDX IDX_STR_EDIT_ENTRY
+sw/source/uibase/utlui/content.cxx:832
+ enum STR_CONTEXT_IDX IDX_STR_DELETE_ENTRY
+sw/source/uibase/utlui/glbltree.cxx:137
+ enum GLOBAL_CONTEXT_IDX IDX_STR_UPDATE
+sw/source/uibase/utlui/glbltree.cxx:138
+ enum GLOBAL_CONTEXT_IDX IDX_STR_EDIT_CONTENT
+sw/source/uibase/utlui/glbltree.cxx:139
+ enum GLOBAL_CONTEXT_IDX IDX_STR_EDIT_INSERT
+sw/source/uibase/utlui/glbltree.cxx:140
+ enum GLOBAL_CONTEXT_IDX IDX_STR_INDEX
+sw/source/uibase/utlui/glbltree.cxx:141
+ enum GLOBAL_CONTEXT_IDX IDX_STR_FILE
+sw/source/uibase/utlui/glbltree.cxx:142
+ enum GLOBAL_CONTEXT_IDX IDX_STR_NEW_FILE
+sw/source/uibase/utlui/glbltree.cxx:143
+ enum GLOBAL_CONTEXT_IDX IDX_STR_INSERT_TEXT
+sw/source/uibase/utlui/glbltree.cxx:144
+ enum GLOBAL_CONTEXT_IDX IDX_STR_DELETE
+sw/source/uibase/utlui/glbltree.cxx:145
+ enum GLOBAL_CONTEXT_IDX IDX_STR_UPDATE_SEL
+sw/source/uibase/utlui/glbltree.cxx:149
+ enum GLOBAL_CONTEXT_IDX IDX_STR_BROKEN_LINK
+sw/source/uibase/utlui/glbltree.cxx:150
+ enum GLOBAL_CONTEXT_IDX IDX_STR_EDIT_LINK
+sw/source/uibase/utlui/navipi.cxx:592
+ enum StatusIndex IDX_STR_HIDDEN
+sw/source/uibase/utlui/navipi.cxx:593
+ enum StatusIndex IDX_STR_ACTIVE
+sw/source/uibase/utlui/navipi.cxx:594
+ enum StatusIndex IDX_STR_INACTIVE
+toolkit/inc/helper/msgbox.hxx:32
+ enum MessBoxStyle DefaultOk
toolkit/source/helper/vclunohelper.cxx:356
enum (anonymous namespace)::UnitConversionDirection MeasurementUnitToFieldUnit
-tools/source/fsys/urlobj.cxx:304
+tools/source/fsys/urlobj.cxx:305
enum INetURLObject::PrefixInfo::Kind OFFICIAL
-tools/source/fsys/urlobj.cxx:436
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PA
tools/source/fsys/urlobj.cxx:437
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PD
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PA
tools/source/fsys/urlobj.cxx:438
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PE
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PD
tools/source/fsys/urlobj.cxx:439
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PF
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PE
tools/source/fsys/urlobj.cxx:440
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PG
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PF
tools/source/fsys/urlobj.cxx:441
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PH
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PG
tools/source/fsys/urlobj.cxx:442
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PI
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PH
tools/source/fsys/urlobj.cxx:443
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PJ
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PI
tools/source/fsys/urlobj.cxx:444
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PK
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PJ
tools/source/fsys/urlobj.cxx:445
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PL
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PK
tools/source/fsys/urlobj.cxx:446
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PM
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PL
tools/source/fsys/urlobj.cxx:447
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PN
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PM
tools/source/fsys/urlobj.cxx:448
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PO
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PN
tools/source/fsys/urlobj.cxx:449
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PP
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PO
tools/source/fsys/urlobj.cxx:450
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PQ
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PP
tools/source/fsys/urlobj.cxx:451
- enum (anonymous namespace)::(anonymous at tools/source/fsys/urlobj.cxx:434:1) PR
-tools/source/fsys/urlobj.cxx:1628
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PQ
+tools/source/fsys/urlobj.cxx:452
+ enum (anonymous namespace)::(anonymous at /media/noel/disk2/libo6/tools/source/fsys/urlobj.cxx:435:1) PR
+tools/source/fsys/urlobj.cxx:1624
enum State STATE_DONE
ucb/source/ucp/ext/ucpext_content.hxx:45
enum ucb::ucp::ext::ExtensionContentType E_UNKNOWN
@@ -13792,343 +10990,227 @@ unotools/source/config/fltrcfg.cxx:56
enum ConfigFlags SmartArtShapeLoad
unotools/source/config/fltrcfg.cxx:57
enum ConfigFlags CharBackgroundToHighlighting
-unotools/source/config/viewoptions.cxx:92
+unotools/source/config/viewoptions.cxx:90
enum SvtViewOptionsBase_Impl::State STATE_FALSE
-unotools/source/misc/fontcvt.cxx:1017
- enum SymbolFont Webdings
-unotools/source/misc/fontcvt.cxx:1017
- enum SymbolFont Wingdings2
-unotools/source/misc/fontcvt.cxx:1017
- enum SymbolFont MonotypeSorts
-unotools/source/misc/fontcvt.cxx:1017
+unotools/source/misc/fontcvt.cxx:1018
enum SymbolFont Wingdings
-unotools/source/misc/fontcvt.cxx:1017
+unotools/source/misc/fontcvt.cxx:1018
enum SymbolFont Symbol
unotools/source/misc/fontcvt.cxx:1018
- enum SymbolFont Wingdings3
+ enum SymbolFont Wingdings2
unotools/source/misc/fontcvt.cxx:1018
- enum SymbolFont MTExtra
+ enum SymbolFont MonotypeSorts
unotools/source/misc/fontcvt.cxx:1018
+ enum SymbolFont Webdings
+unotools/source/misc/fontcvt.cxx:1019
+ enum SymbolFont Wingdings3
+unotools/source/misc/fontcvt.cxx:1019
+ enum SymbolFont MTExtra
+unotools/source/misc/fontcvt.cxx:1019
enum SymbolFont TimesNewRoman
-unotools/source/ucbhelper/ucblockbytes.cxx:245
+unotools/source/ucbhelper/ucblockbytes.cxx:247
enum utl::Moderator::ResultType GENERAL
-uui/source/iahndl-errorhandler.cxx:154
- enum Source SOURCE_UUI
-uui/source/iahndl-errorhandler.cxx:154
+uui/source/iahndl-errorhandler.cxx:147
enum Source SOURCE_SVX
-uui/source/iahndl-errorhandler.cxx:154
+uui/source/iahndl-errorhandler.cxx:147
+ enum Source SOURCE_UUI
+uui/source/iahndl-errorhandler.cxx:147
enum Source SOURCE_DEFAULT
-uui/source/logindlg.hxx:32
- enum LoginFlags NoPath
-uui/source/logindlg.hxx:33
- enum LoginFlags NoUsername
-uui/source/logindlg.hxx:34
- enum LoginFlags NoPassword
-uui/source/logindlg.hxx:35
- enum LoginFlags NoSavePassword
-uui/source/logindlg.hxx:36
- enum LoginFlags NoErrorText
-uui/source/logindlg.hxx:37
- enum LoginFlags PathReadonly
-uui/source/logindlg.hxx:38
- enum LoginFlags UsernameReadonly
-uui/source/logindlg.hxx:39
- enum LoginFlags NoAccount
-uui/source/logindlg.hxx:40
- enum LoginFlags NoUseSysCreds
-vcl/inc/brdwin.hxx:34
- enum BorderWindowStyle Overlap
vcl/inc/brdwin.hxx:35
enum BorderWindowStyle Border
-vcl/inc/brdwin.hxx:36
- enum BorderWindowStyle Float
-vcl/inc/brdwin.hxx:37
- enum BorderWindowStyle Frame
-vcl/inc/brdwin.hxx:38
- enum BorderWindowStyle App
-vcl/inc/brdwin.hxx:46
- enum BorderWindowHitTest Title
-vcl/inc/brdwin.hxx:47
- enum BorderWindowHitTest Left
-vcl/inc/brdwin.hxx:48
- enum BorderWindowHitTest Menu
-vcl/inc/brdwin.hxx:49
- enum BorderWindowHitTest Top
-vcl/inc/brdwin.hxx:50
- enum BorderWindowHitTest Right
-vcl/inc/brdwin.hxx:51
- enum BorderWindowHitTest Bottom
-vcl/inc/brdwin.hxx:52
- enum BorderWindowHitTest TopLeft
-vcl/inc/brdwin.hxx:53
- enum BorderWindowHitTest TopRight
-vcl/inc/brdwin.hxx:54
- enum BorderWindowHitTest BottomLeft
-vcl/inc/brdwin.hxx:55
- enum BorderWindowHitTest BottomRight
-vcl/inc/brdwin.hxx:56
- enum BorderWindowHitTest Close
-vcl/inc/brdwin.hxx:57
- enum BorderWindowHitTest Roll
-vcl/inc/brdwin.hxx:58
- enum BorderWindowHitTest Dock
-vcl/inc/brdwin.hxx:59
- enum BorderWindowHitTest Hide
-vcl/inc/brdwin.hxx:60
- enum BorderWindowHitTest Help
-vcl/inc/brdwin.hxx:67
- enum BorderWindowTitleType Normal
-vcl/inc/fontsubset.hxx:38
- enum FontType TYPE3_FONT
-vcl/inc/fontsubset.hxx:39
- enum FontType TYPE42_FONT
-vcl/inc/headless/svpgdi.hxx:68
+vcl/inc/headless/svpgdi.hxx:74
enum PaintMode Over
-vcl/inc/opengl/program.hxx:30
+vcl/inc/headless/svpinst.hxx:65
+ enum SvpRequest MainThreadDispatchOneEvent
+vcl/inc/opengl/program.hxx:29
enum TextureShaderType Normal
-vcl/inc/opengl/program.hxx:31
+vcl/inc/opengl/program.hxx:30
enum TextureShaderType Blend
-vcl/inc/opengl/program.hxx:32
+vcl/inc/opengl/program.hxx:31
enum TextureShaderType Masked
-vcl/inc/opengl/program.hxx:33
+vcl/inc/opengl/program.hxx:32
enum TextureShaderType Diff
-vcl/inc/opengl/program.hxx:34
+vcl/inc/opengl/program.hxx:33
enum TextureShaderType MaskedColor
-vcl/inc/opengl/program.hxx:39
+vcl/inc/opengl/program.hxx:38
enum DrawShaderType Normal
-vcl/inc/opengl/program.hxx:40
+vcl/inc/opengl/program.hxx:39
enum DrawShaderType Line
vcl/inc/opengl/watchdog.hxx:28
enum WatchdogTimingMode NORMAL
vcl/inc/openglgdiimpl.hxx:164
enum OpenGLSalGraphicsImpl::XOROption IGNORE_XOR
-vcl/inc/PhysicalFontFamily.hxx:35
- enum FontTypeFaces Scalable
-vcl/inc/PhysicalFontFamily.hxx:37
- enum FontTypeFaces NoneSymbol
-vcl/inc/PhysicalFontFamily.hxx:38
- enum FontTypeFaces Light
-vcl/inc/PhysicalFontFamily.hxx:39
- enum FontTypeFaces Bold
-vcl/inc/PhysicalFontFamily.hxx:40
- enum FontTypeFaces Normal
-vcl/inc/PhysicalFontFamily.hxx:41
- enum FontTypeFaces NoneItalic
-vcl/inc/PhysicalFontFamily.hxx:42
- enum FontTypeFaces Italic
vcl/inc/regband.hxx:45
enum LineType LINE_ASCENDING
vcl/inc/regband.hxx:45
enum LineType LINE_DESCENDING
-vcl/inc/salframe.hxx:45
- enum SalFrameToTop RestoreWhenMin
-vcl/inc/salframe.hxx:46
- enum SalFrameToTop ForegroundTask
-vcl/inc/salframe.hxx:47
- enum SalFrameToTop GrabFocus
-vcl/inc/salframe.hxx:48
- enum SalFrameToTop GrabFocusOnly
-vcl/inc/salframe.hxx:59
- enum SalFrameStyleFlags MOVEABLE
-vcl/inc/salframe.hxx:61
- enum SalFrameStyleFlags CLOSEABLE
-vcl/inc/salframe.hxx:63
+vcl/inc/salframe.hxx:64
enum SalFrameStyleFlags NOSHADOW
-vcl/inc/salframe.hxx:65
+vcl/inc/salframe.hxx:66
enum SalFrameStyleFlags TOOLTIP
-vcl/inc/salframe.hxx:67
- enum SalFrameStyleFlags OWNERDRAWDECORATION
-vcl/inc/salframe.hxx:69
- enum SalFrameStyleFlags DIALOG
-vcl/inc/salframe.hxx:71
- enum SalFrameStyleFlags INTRO
-vcl/inc/salframe.hxx:73
- enum SalFrameStyleFlags PARTIAL_FULLSCREEN
-vcl/inc/salframe.hxx:75
- enum SalFrameStyleFlags SYSTEMCHILD
-vcl/inc/salframe.hxx:77
- enum SalFrameStyleFlags PLUG
-vcl/inc/salframe.hxx:81
- enum SalFrameStyleFlags TOOLWINDOW
-vcl/inc/salinst.hxx:61
- enum SalYieldResult TIMEOUT
-vcl/inc/salptype.hxx:29
- enum JobSetFlags ORIENTATION
-vcl/inc/salptype.hxx:30
- enum JobSetFlags PAPERBIN
-vcl/inc/salptype.hxx:31
- enum JobSetFlags PAPERSIZE
-vcl/inc/salptype.hxx:32
- enum JobSetFlags DUPLEXMODE
vcl/inc/salptype.hxx:33
enum JobSetFlags ALL
-vcl/inc/svdata.hxx:108
+vcl/inc/svdata.hxx:130
enum ImplSVAppData::ImeStatusWindowMode ImeStatusWindowMode_UNKNOWN
vcl/inc/unx/desktops.hxx:29
enum DesktopType DESKTOP_UNKNOWN
-vcl/inc/unx/i18n_cb.hxx:69
+vcl/inc/unx/i18n_cb.hxx:67
enum PreeditStatus DontKnow
-vcl/inc/unx/i18n_status.hxx:81
- enum vcl::I18NStatus::ShowReason focus
-vcl/inc/unx/i18n_status.hxx:81
+vcl/inc/unx/i18n_status.hxx:74
enum vcl::I18NStatus::ShowReason contextmap
-vcl/inc/unx/printergfx.hxx:44
+vcl/inc/unx/i18n_status.hxx:74
+ enum vcl::I18NStatus::ShowReason presentation
+vcl/inc/unx/i18n_status.hxx:74
+ enum vcl::I18NStatus::ShowReason focus
+vcl/inc/unx/printergfx.hxx:46
enum psp::PrinterColor::ColorSpace eRGB
-vcl/inc/unx/printergfx.hxx:233
+vcl/inc/unx/printergfx.hxx:234
enum psp::PrinterGfx::pspath_t moveto
-vcl/inc/unx/saldisp.hxx:66
+vcl/inc/unx/saldisp.hxx:67
srv_vendor_t vendor_unknown
-vcl/inc/unx/saldisp.hxx:73
- enum SalRGB RBG
vcl/inc/unx/saldisp.hxx:74
+ enum SalRGB RBG
+vcl/inc/unx/saldisp.hxx:75
enum SalRGB GRB
-vcl/inc/unx/saldisp.hxx:74
- enum SalRGB GBR
vcl/inc/unx/saldisp.hxx:75
+ enum SalRGB GBR
+vcl/inc/unx/saldisp.hxx:76
enum SalRGB BRG
vcl/inc/unx/salframe.h:55
enum WMWindowType Normal
vcl/inc/unx/wmadaptor.hxx:43
enum vcl_sal::WMAdaptor::WMAtom UTF8_STRING
vcl/inc/unx/wmadaptor.hxx:46
- enum vcl_sal::WMAdaptor::WMAtom NET_SUPPORTED
+ enum vcl_sal::WMAdaptor::WMAtom NET_ACTIVE_WINDOW
vcl/inc/unx/wmadaptor.hxx:47
- enum vcl_sal::WMAdaptor::WMAtom NET_SUPPORTING_WM_CHECK
+ enum vcl_sal::WMAdaptor::WMAtom NET_SUPPORTED
vcl/inc/unx/wmadaptor.hxx:48
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_NAME
+ enum vcl_sal::WMAdaptor::WMAtom NET_SUPPORTING_WM_CHECK
vcl/inc/unx/wmadaptor.hxx:49
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_DESKTOP
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_NAME
vcl/inc/unx/wmadaptor.hxx:50
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_ICON_NAME
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_DESKTOP
vcl/inc/unx/wmadaptor.hxx:51
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_PID
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_ICON_NAME
vcl/inc/unx/wmadaptor.hxx:52
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_PING
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_PID
vcl/inc/unx/wmadaptor.hxx:53
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_PING
vcl/inc/unx/wmadaptor.hxx:54
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MAXIMIZED_HORZ
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE
vcl/inc/unx/wmadaptor.hxx:55
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MAXIMIZED_VERT
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MAXIMIZED_HORZ
vcl/inc/unx/wmadaptor.hxx:56
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MODAL
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MAXIMIZED_VERT
vcl/inc/unx/wmadaptor.hxx:57
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_SHADED
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MODAL
vcl/inc/unx/wmadaptor.hxx:58
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_SKIP_PAGER
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_SHADED
vcl/inc/unx/wmadaptor.hxx:59
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_SKIP_PAGER
+vcl/inc/unx/wmadaptor.hxx:60
enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_SKIP_TASKBAR
-vcl/inc/unx/wmadaptor.hxx:61
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_STICKY
vcl/inc/unx/wmadaptor.hxx:62
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_FULLSCREEN
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_STICKY
vcl/inc/unx/wmadaptor.hxx:63
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STRUT
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_FULLSCREEN
vcl/inc/unx/wmadaptor.hxx:64
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_STRUT_PARTIAL
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STRUT
vcl/inc/unx/wmadaptor.hxx:65
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_USER_TIME
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_STRUT_PARTIAL
vcl/inc/unx/wmadaptor.hxx:66
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_USER_TIME
vcl/inc/unx/wmadaptor.hxx:67
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DESKTOP
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE
vcl/inc/unx/wmadaptor.hxx:68
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DIALOG
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DESKTOP
vcl/inc/unx/wmadaptor.hxx:69
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DOCK
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DIALOG
vcl/inc/unx/wmadaptor.hxx:70
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_MENU
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DOCK
vcl/inc/unx/wmadaptor.hxx:71
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_NORMAL
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_MENU
vcl/inc/unx/wmadaptor.hxx:72
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_TOOLBAR
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_NORMAL
vcl/inc/unx/wmadaptor.hxx:73
- enum vcl_sal::WMAdaptor::WMAtom KDE_NET_WM_WINDOW_TYPE_OVERRIDE
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_TOOLBAR
vcl/inc/unx/wmadaptor.hxx:74
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_SPLASH
+ enum vcl_sal::WMAdaptor::WMAtom KDE_NET_WM_WINDOW_TYPE_OVERRIDE
vcl/inc/unx/wmadaptor.hxx:75
- enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_UTILITY
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_SPLASH
vcl/inc/unx/wmadaptor.hxx:76
- enum vcl_sal::WMAdaptor::WMAtom NET_NUMBER_OF_DESKTOPS
+ enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_UTILITY
vcl/inc/unx/wmadaptor.hxx:77
- enum vcl_sal::WMAdaptor::WMAtom NET_CURRENT_DESKTOP
+ enum vcl_sal::WMAdaptor::WMAtom NET_NUMBER_OF_DESKTOPS
vcl/inc/unx/wmadaptor.hxx:78
- enum vcl_sal::WMAdaptor::WMAtom NET_WORKAREA
+ enum vcl_sal::WMAdaptor::WMAtom NET_CURRENT_DESKTOP
vcl/inc/unx/wmadaptor.hxx:79
+ enum vcl_sal::WMAdaptor::WMAtom NET_WORKAREA
+vcl/inc/unx/wmadaptor.hxx:80
enum vcl_sal::WMAdaptor::WMAtom NET_WM_ICON
-vcl/inc/unx/wmadaptor.hxx:82
- enum vcl_sal::WMAdaptor::WMAtom WIN_SUPPORTING_WM_CHECK
vcl/inc/unx/wmadaptor.hxx:83
- enum vcl_sal::WMAdaptor::WMAtom WIN_PROTOCOLS
+ enum vcl_sal::WMAdaptor::WMAtom WIN_SUPPORTING_WM_CHECK
vcl/inc/unx/wmadaptor.hxx:84
- enum vcl_sal::WMAdaptor::WMAtom WIN_WORKSPACE_COUNT
+ enum vcl_sal::WMAdaptor::WMAtom WIN_PROTOCOLS
vcl/inc/unx/wmadaptor.hxx:85
+ enum vcl_sal::WMAdaptor::WMAtom WIN_WORKSPACE_COUNT
+vcl/inc/unx/wmadaptor.hxx:86
enum vcl_sal::WMAdaptor::WMAtom WIN_WORKSPACE
-vcl/inc/unx/wmadaptor.hxx:87
- enum vcl_sal::WMAdaptor::WMAtom WIN_STATE
vcl/inc/unx/wmadaptor.hxx:88
- enum vcl_sal::WMAdaptor::WMAtom WIN_HINTS
+ enum vcl_sal::WMAdaptor::WMAtom WIN_STATE
vcl/inc/unx/wmadaptor.hxx:89
- enum vcl_sal::WMAdaptor::WMAtom WIN_APP_STATE
+ enum vcl_sal::WMAdaptor::WMAtom WIN_HINTS
vcl/inc/unx/wmadaptor.hxx:90
- enum vcl_sal::WMAdaptor::WMAtom WIN_EXPANDED_SIZE
+ enum vcl_sal::WMAdaptor::WMAtom WIN_APP_STATE
vcl/inc/unx/wmadaptor.hxx:91
- enum vcl_sal::WMAdaptor::WMAtom WIN_ICONS
+ enum vcl_sal::WMAdaptor::WMAtom WIN_EXPANDED_SIZE
vcl/inc/unx/wmadaptor.hxx:92
+ enum vcl_sal::WMAdaptor::WMAtom WIN_ICONS
+vcl/inc/unx/wmadaptor.hxx:93
enum vcl_sal::WMAdaptor::WMAtom WIN_CLIENT_LIST
-vcl/inc/unx/wmadaptor.hxx:95
- enum vcl_sal::WMAdaptor::WMAtom WM_STATE
vcl/inc/unx/wmadaptor.hxx:96
- enum vcl_sal::WMAdaptor::WMAtom MOTIF_WM_HINTS
+ enum vcl_sal::WMAdaptor::WMAtom WM_STATE
vcl/inc/unx/wmadaptor.hxx:97
- enum vcl_sal::WMAdaptor::WMAtom WM_PROTOCOLS
+ enum vcl_sal::WMAdaptor::WMAtom MOTIF_WM_HINTS
vcl/inc/unx/wmadaptor.hxx:98
- enum vcl_sal::WMAdaptor::WMAtom WM_DELETE_WINDOW
+ enum vcl_sal::WMAdaptor::WMAtom WM_PROTOCOLS
vcl/inc/unx/wmadaptor.hxx:99
- enum vcl_sal::WMAdaptor::WMAtom WM_TAKE_FOCUS
+ enum vcl_sal::WMAdaptor::WMAtom WM_DELETE_WINDOW
vcl/inc/unx/wmadaptor.hxx:100
- enum vcl_sal::WMAdaptor::WMAtom WM_CLIENT_LEADER
+ enum vcl_sal::WMAdaptor::WMAtom WM_TAKE_FOCUS
vcl/inc/unx/wmadaptor.hxx:101
- enum vcl_sal::WMAdaptor::WMAtom WM_COMMAND
+ enum vcl_sal::WMAdaptor::WMAtom WM_CLIENT_LEADER
vcl/inc/unx/wmadaptor.hxx:102
- enum vcl_sal::WMAdaptor::WMAtom WM_LOCALE_NAME
+ enum vcl_sal::WMAdaptor::WMAtom WM_COMMAND
vcl/inc/unx/wmadaptor.hxx:103
+ enum vcl_sal::WMAdaptor::WMAtom WM_LOCALE_NAME
+vcl/inc/unx/wmadaptor.hxx:104
enum vcl_sal::WMAdaptor::WMAtom WM_TRANSIENT_FOR
-vcl/inc/unx/wmadaptor.hxx:106
- enum vcl_sal::WMAdaptor::WMAtom SAL_QUITEVENT
vcl/inc/unx/wmadaptor.hxx:107
- enum vcl_sal::WMAdaptor::WMAtom SAL_USEREVENT
+ enum vcl_sal::WMAdaptor::WMAtom SAL_QUITEVENT
vcl/inc/unx/wmadaptor.hxx:108
- enum vcl_sal::WMAdaptor::WMAtom SAL_EXTTEXTEVENT
+ enum vcl_sal::WMAdaptor::WMAtom SAL_USEREVENT
vcl/inc/unx/wmadaptor.hxx:109
- enum vcl_sal::WMAdaptor::WMAtom SAL_GETTIMEEVENT
+ enum vcl_sal::WMAdaptor::WMAtom SAL_EXTTEXTEVENT
vcl/inc/unx/wmadaptor.hxx:110
- enum vcl_sal::WMAdaptor::WMAtom VCL_SYSTEM_SETTINGS
+ enum vcl_sal::WMAdaptor::WMAtom SAL_GETTIMEEVENT
vcl/inc/unx/wmadaptor.hxx:111
- enum vcl_sal::WMAdaptor::WMAtom XSETTINGS
+ enum vcl_sal::WMAdaptor::WMAtom VCL_SYSTEM_SETTINGS
vcl/inc/unx/wmadaptor.hxx:112
- enum vcl_sal::WMAdaptor::WMAtom XEMBED
+ enum vcl_sal::WMAdaptor::WMAtom XSETTINGS
vcl/inc/unx/wmadaptor.hxx:113
- enum vcl_sal::WMAdaptor::WMAtom XEMBED_INFO
+ enum vcl_sal::WMAdaptor::WMAtom XEMBED
vcl/inc/unx/wmadaptor.hxx:114
+ enum vcl_sal::WMAdaptor::WMAtom XEMBED_INFO
+vcl/inc/unx/wmadaptor.hxx:115
enum vcl_sal::WMAdaptor::WMAtom NetAtomMax
-vcl/inc/window.h:180
- enum ImplPaintFlags PaintAll
-vcl/inc/window.h:181
- enum ImplPaintFlags PaintAllChildren
-vcl/inc/window.h:182
- enum ImplPaintFlags PaintChildren
-vcl/inc/window.h:183
- enum ImplPaintFlags Erase
-vcl/inc/window.h:184
- enum ImplPaintFlags CheckRtl
-vcl/source/filter/igif/gifread.cxx:41
- enum ReadState GIFREAD_OK
-vcl/source/filter/ixbm/xbmread.cxx:30
+vcl/opengl/x11/X11DeviceInfo.cxx:128
+ enum (anonymous at /media/noel/disk2/libo6/vcl/opengl/x11/X11DeviceInfo.cxx:128:5) buf_size
+vcl/source/filter/ixbm/xbmread.cxx:31
enum XBMFormat XBM11
-vcl/source/filter/ixbm/xbmread.cxx:35
+vcl/source/filter/ixbm/xbmread.cxx:36
enum ReadState XBMREAD_OK
-vcl/source/filter/ixpm/xpmread.cxx:46
+vcl/source/filter/ixpm/xpmread.cxx:47
enum ReadState XPMREAD_OK
vcl/source/filter/jpeg/Exif.hxx:31
enum Orientation TOP_RIGHT
@@ -14138,92 +11220,78 @@ vcl/source/filter/jpeg/Exif.hxx:34
enum Orientation LEFT_TOP
vcl/source/filter/jpeg/Exif.hxx:36
enum Orientation RIGHT_BOTTOM
-vcl/source/filter/jpeg/JpegReader.hxx:30
+vcl/source/filter/jpeg/JpegReader.hxx:34
enum ReadState JPEGREAD_OK
-vcl/source/filter/wmf/emfwr.cxx:98
- enum EmfPlusRecordType Header
vcl/source/filter/wmf/emfwr.cxx:99
- enum EmfPlusRecordType EndOfFile
+ enum EmfPlusRecordType Header
vcl/source/filter/wmf/emfwr.cxx:100
- enum EmfPlusRecordType GetDC
+ enum EmfPlusRecordType EndOfFile
vcl/source/filter/wmf/emfwr.cxx:101
- enum EmfPlusRecordType FillPolygon
+ enum EmfPlusRecordType GetDC
vcl/source/filter/wmf/emfwr.cxx:102
- enum EmfPlusRecordType SetAntiAliasMode
+ enum EmfPlusRecordType FillPolygon
vcl/source/filter/wmf/emfwr.cxx:103
- enum EmfPlusRecordType SetInterpolationMode
+ enum EmfPlusRecordType SetAntiAliasMode
vcl/source/filter/wmf/emfwr.cxx:104
- enum EmfPlusRecordType SetPixelOffsetMode
+ enum EmfPlusRecordType SetInterpolationMode
vcl/source/filter/wmf/emfwr.cxx:105
+ enum EmfPlusRecordType SetPixelOffsetMode
+vcl/source/filter/wmf/emfwr.cxx:106
enum EmfPlusRecordType SetCompositingQuality
-vcl/source/fontsubset/sft.cxx:1037
+vcl/source/fontsubset/sft.cxx:1029
+ enum vcl::cmapType CMAP_MS_Unicode
+vcl/source/fontsubset/sft.cxx:1030
enum vcl::cmapType CMAP_MS_ShiftJIS
-vcl/source/fontsubset/sft.cxx:1038
+vcl/source/fontsubset/sft.cxx:1031
enum vcl::cmapType CMAP_MS_Big5
-vcl/source/fontsubset/sft.cxx:1039
+vcl/source/fontsubset/sft.cxx:1032
enum vcl::cmapType CMAP_MS_PRC
-vcl/source/fontsubset/sft.cxx:1040
+vcl/source/fontsubset/sft.cxx:1033
enum vcl::cmapType CMAP_MS_Wansung
-vcl/source/fontsubset/sft.cxx:1041
+vcl/source/fontsubset/sft.cxx:1034
enum vcl::cmapType CMAP_MS_Johab
-vcl/source/fontsubset/ttcr.hxx:51
+vcl/source/fontsubset/ttcr.hxx:49
enum vcl::TTCRErrCodes TTCR_OK
-vcl/source/fontsubset/ttcr.hxx:52
+vcl/source/fontsubset/ttcr.hxx:50
enum vcl::TTCRErrCodes TTCR_ZEROGLYPHS
-vcl/source/fontsubset/ttcr.hxx:53
+vcl/source/fontsubset/ttcr.hxx:51
enum vcl::TTCRErrCodes TTCR_UNKNOWN
-vcl/source/fontsubset/ttcr.hxx:54
+vcl/source/fontsubset/ttcr.hxx:52
enum vcl::TTCRErrCodes TTCR_NONAMES
-vcl/source/fontsubset/ttcr.hxx:55
+vcl/source/fontsubset/ttcr.hxx:53
enum vcl::TTCRErrCodes TTCR_NAMETOOLONG
-vcl/source/fontsubset/ttcr.hxx:56
+vcl/source/fontsubset/ttcr.hxx:54
enum vcl::TTCRErrCodes TTCR_POSTFORMAT
-vcl/source/gdi/pdfwriter_impl.hxx:70
- enum GraphicsStateUpdateFlags Font
-vcl/source/gdi/pdfwriter_impl.hxx:71
- enum GraphicsStateUpdateFlags MapMode
-vcl/source/gdi/pdfwriter_impl.hxx:72
- enum GraphicsStateUpdateFlags LineColor
-vcl/source/gdi/pdfwriter_impl.hxx:73
- enum GraphicsStateUpdateFlags FillColor
-vcl/source/gdi/pdfwriter_impl.hxx:74
- enum GraphicsStateUpdateFlags TextLineColor
vcl/source/gdi/pdfwriter_impl.hxx:75
- enum GraphicsStateUpdateFlags OverlineColor
+ enum GraphicsStateUpdateFlags TextLineColor
vcl/source/gdi/pdfwriter_impl.hxx:76
- enum GraphicsStateUpdateFlags ClipRegion
-vcl/source/gdi/pdfwriter_impl.hxx:77
- enum GraphicsStateUpdateFlags LayoutMode
-vcl/source/gdi/pdfwriter_impl.hxx:78
- enum GraphicsStateUpdateFlags TransparentPercent
-vcl/source/gdi/pdfwriter_impl.hxx:79
- enum GraphicsStateUpdateFlags DigitLanguage
-vcl/source/gdi/pdfwriter_impl.hxx:80
+ enum GraphicsStateUpdateFlags OverlineColor
+vcl/source/gdi/pdfwriter_impl.hxx:81
enum GraphicsStateUpdateFlags All
-vcl/source/gdi/pdfwriter_impl.hxx:837
+vcl/source/gdi/pdfwriter_impl.hxx:795
enum vcl::PDFWriterImpl::Mode DEFAULT
-vcl/source/gdi/region.cxx:1568
+vcl/source/gdi/region.cxx:1545
enum RegionType REGION_RECTANGLE
-vcl/source/gdi/region.cxx:1568
+vcl/source/gdi/region.cxx:1545
enum RegionType REGION_COMPLEX
-vcl/source/gdi/regionband.cxx:191
+vcl/source/gdi/regionband.cxx:194
enum StreamEntryType STREAMENTRY_SEPARATION
-vcl/unx/generic/app/sm.cxx:184
- enum (anonymous at vcl/unx/generic/app/sm.cxx:184:1) eRestartStyleHint
-vcl/unx/generic/app/sm.cxx:184
- enum (anonymous at vcl/unx/generic/app/sm.cxx:184:1) eRestartCommand
-vcl/unx/generic/app/sm.cxx:184
- enum (anonymous at vcl/unx/generic/app/sm.cxx:184:1) eCloneCommand
-vcl/unx/generic/app/sm.cxx:184
- enum (anonymous at vcl/unx/generic/app/sm.cxx:184:1) eUserId
-vcl/unx/generic/app/sm.cxx:184
- enum (anonymous at vcl/unx/generic/app/sm.cxx:184:1) eProgram
-vcl/unx/generic/app/sm.cxx:185
- enum (anonymous at vcl/unx/generic/app/sm.cxx:185:1) eDiscardCommand
-vcl/unx/generic/dtrans/X11_selection.hxx:180
+vcl/unx/generic/app/sm.cxx:190
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/generic/app/sm.cxx:190:1) eCloneCommand
+vcl/unx/generic/app/sm.cxx:190
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/generic/app/sm.cxx:190:1) eUserId
+vcl/unx/generic/app/sm.cxx:190
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/generic/app/sm.cxx:190:1) eRestartStyleHint
+vcl/unx/generic/app/sm.cxx:190
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/generic/app/sm.cxx:190:1) eRestartCommand
+vcl/unx/generic/app/sm.cxx:190
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/generic/app/sm.cxx:190:1) eProgram
+vcl/unx/generic/app/sm.cxx:191
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/generic/app/sm.cxx:191:1) eDiscardCommand
+vcl/unx/generic/dtrans/X11_selection.hxx:181
enum x11::SelectionManager::Selection::State Inactive
-vcl/unx/glxtest.cxx:84
- enum (anonymous at vcl/unx/glxtest.cxx:84:3) bufsize
+vcl/unx/glxtest.cxx:89
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/glxtest.cxx:89:3) bufsize
vcl/unx/gtk/a11y/atktextattributes.cxx:80
enum ExportedAttribute TEXT_ATTRIBUTE_CASEMAP
vcl/unx/gtk/a11y/atktextattributes.cxx:82
@@ -14282,2649 +11350,2643 @@ vcl/unx/gtk/a11y/atktextattributes.cxx:109
enum ExportedAttribute TEXT_ATTRIBUTE_WRITING_MODE
vcl/unx/gtk/a11y/atktextattributes.cxx:110
enum ExportedAttribute TEXT_ATTRIBUTE_LAST
-vcl/unx/gtk/a11y/atktextattributes.cxx:775
- enum (anonymous at vcl/unx/gtk/a11y/atktextattributes.cxx:772:1) DECORATION_BLINK
-vcl/unx/gtk/a11y/atktextattributes.cxx:775
- enum (anonymous at vcl/unx/gtk3/a11y/../../gtk/a11y/atktextattributes.cxx:772:1) DECORATION_BLINK
-vcl/unx/gtk/a11y/atktextattributes.cxx:776
- enum (anonymous at vcl/unx/gtk/a11y/atktextattributes.cxx:772:1) DECORATION_UNDERLINE
-vcl/unx/gtk/a11y/atktextattributes.cxx:776
- enum (anonymous at vcl/unx/gtk3/a11y/../../gtk/a11y/atktextattributes.cxx:772:1) DECORATION_UNDERLINE
-vcl/unx/gtk/a11y/atktextattributes.cxx:777
- enum (anonymous at vcl/unx/gtk3/a11y/../../gtk/a11y/atktextattributes.cxx:772:1) DECORATION_LINE_THROUGH
-vcl/unx/gtk/a11y/atktextattributes.cxx:777
- enum (anonymous at vcl/unx/gtk/a11y/atktextattributes.cxx:772:1) DECORATION_LINE_THROUGH
-vcl/unx/gtk/fpicker/SalGtkFilePicker.hxx:177
- enum SalGtkFilePicker::(anonymous at vcl/unx/gtk/fpicker/SalGtkFilePicker.hxx:176:9) PLAY
-writerfilter/source/dmapper/BorderHandler.hxx:38
- enum writerfilter::dmapper::BorderHandler::BorderPosition BORDER_TOP
+vcl/unx/gtk/a11y/atktextattributes.cxx:772
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/gtk/a11y/atktextattributes.cxx:769:1) DECORATION_BLINK
+vcl/unx/gtk/a11y/atktextattributes.cxx:772
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/gtk3/a11y/../../gtk/a11y/atktextattributes.cxx:769:1) DECORATION_BLINK
+vcl/unx/gtk/a11y/atktextattributes.cxx:773
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/gtk3/a11y/../../gtk/a11y/atktextattributes.cxx:769:1) DECORATION_UNDERLINE
+vcl/unx/gtk/a11y/atktextattributes.cxx:773
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/gtk/a11y/atktextattributes.cxx:769:1) DECORATION_UNDERLINE
+vcl/unx/gtk/a11y/atktextattributes.cxx:774
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/gtk/a11y/atktextattributes.cxx:769:1) DECORATION_LINE_THROUGH
+vcl/unx/gtk/a11y/atktextattributes.cxx:774
+ enum (anonymous at /media/noel/disk2/libo6/vcl/unx/gtk3/a11y/../../gtk/a11y/atktextattributes.cxx:769:1) DECORATION_LINE_THROUGH
+vcl/unx/gtk/fpicker/SalGtkFilePicker.hxx:175
+ enum SalGtkFilePicker::(anonymous at /media/noel/disk2/libo6/vcl/unx/gtk/fpicker/SalGtkFilePicker.hxx:174:9) PLAY
writerfilter/source/dmapper/BorderHandler.hxx:39
- enum writerfilter::dmapper::BorderHandler::BorderPosition BORDER_LEFT
+ enum writerfilter::dmapper::BorderHandler::BorderPosition Top
writerfilter/source/dmapper/BorderHandler.hxx:40
- enum writerfilter::dmapper::BorderHandler::BorderPosition BORDER_BOTTOM
+ enum writerfilter::dmapper::BorderHandler::BorderPosition Left
writerfilter/source/dmapper/BorderHandler.hxx:41
- enum writerfilter::dmapper::BorderHandler::BorderPosition BORDER_RIGHT
+ enum writerfilter::dmapper::BorderHandler::BorderPosition Bottom
writerfilter/source/dmapper/BorderHandler.hxx:42
- enum writerfilter::dmapper::BorderHandler::BorderPosition BORDER_HORIZONTAL
+ enum writerfilter::dmapper::BorderHandler::BorderPosition Right
writerfilter/source/dmapper/BorderHandler.hxx:43
- enum writerfilter::dmapper::BorderHandler::BorderPosition BORDER_VERTICAL
+ enum writerfilter::dmapper::BorderHandler::BorderPosition Horizontal
+writerfilter/source/dmapper/BorderHandler.hxx:44
+ enum writerfilter::dmapper::BorderHandler::BorderPosition Vertical
writerfilter/source/dmapper/DomainMapper_Impl.hxx:108
enum writerfilter::dmapper::ContextType CONTEXT_LIST
+writerfilter/source/dmapper/DomainMapper_Impl.hxx:484
+ enum writerfilter::dmapper::DomainMapper_Impl::HeaderFooterImportState header
writerfilter/source/dmapper/PropertyIds.hxx:26
enum writerfilter::dmapper::PropertyIds PROP_ID_START
-writerfilter/source/dmapper/PropertyMap.hxx:65
- enum writerfilter::dmapper::BorderPosition BORDER_LEFT
writerfilter/source/dmapper/PropertyMap.hxx:66
- enum writerfilter::dmapper::BorderPosition BORDER_RIGHT
+ enum writerfilter::dmapper::BorderPosition BORDER_LEFT
writerfilter/source/dmapper/PropertyMap.hxx:67
- enum writerfilter::dmapper::BorderPosition BORDER_TOP
+ enum writerfilter::dmapper::BorderPosition BORDER_RIGHT
writerfilter/source/dmapper/PropertyMap.hxx:68
+ enum writerfilter::dmapper::BorderPosition BORDER_TOP
+writerfilter/source/dmapper/PropertyMap.hxx:69
enum writerfilter::dmapper::BorderPosition BORDER_BOTTOM
-writerfilter/source/dmapper/PropertyMap.hxx:73
+writerfilter/source/dmapper/PropertyMap.hxx:74
enum writerfilter::dmapper::GrabBagType NO_GRAB_BAG
-writerfilter/source/dmapper/PropertyMap.hxx:540
+writerfilter/source/dmapper/PropertyMap.hxx:192
+ enum writerfilter::dmapper::SectionPropertyMap::BorderOffsetFrom Text
+writerfilter/source/dmapper/PropertyMap.hxx:533
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget TablePropertyMapTarget_START
-writerfilter/source/dmapper/PropertyMap.hxx:541
+writerfilter/source/dmapper/PropertyMap.hxx:534
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget CELL_MAR_LEFT
-writerfilter/source/dmapper/PropertyMap.hxx:542
+writerfilter/source/dmapper/PropertyMap.hxx:535
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget CELL_MAR_RIGHT
-writerfilter/source/dmapper/PropertyMap.hxx:543
+writerfilter/source/dmapper/PropertyMap.hxx:536
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget CELL_MAR_TOP
-writerfilter/source/dmapper/PropertyMap.hxx:544
+writerfilter/source/dmapper/PropertyMap.hxx:537
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget CELL_MAR_BOTTOM
-writerfilter/source/dmapper/PropertyMap.hxx:545
+writerfilter/source/dmapper/PropertyMap.hxx:538
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget TABLE_WIDTH
-writerfilter/source/dmapper/PropertyMap.hxx:546
+writerfilter/source/dmapper/PropertyMap.hxx:539
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget TABLE_WIDTH_TYPE
-writerfilter/source/dmapper/PropertyMap.hxx:547
+writerfilter/source/dmapper/PropertyMap.hxx:540
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget GAP_HALF
-writerfilter/source/dmapper/PropertyMap.hxx:548
+writerfilter/source/dmapper/PropertyMap.hxx:541
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget LEFT_MARGIN
-writerfilter/source/dmapper/PropertyMap.hxx:549
+writerfilter/source/dmapper/PropertyMap.hxx:542
enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget HORI_ORIENT
-writerfilter/source/ooxml/OOXMLFactory.hxx:36
- enum writerfilter::ooxml::ResourceType NoResource
-writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:45
+writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:43
+ enum writerfilter::ooxml::OOXMLFastContextHandler::ResourceEnum_t PROPERTIES
+writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:43
enum writerfilter::ooxml::OOXMLFastContextHandler::ResourceEnum_t TABLE
-writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:45
+writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:43
enum writerfilter::ooxml::OOXMLFastContextHandler::ResourceEnum_t SHAPE
-writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:45
- enum writerfilter::ooxml::OOXMLFastContextHandler::ResourceEnum_t PROPERTIES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:37
+writerfilter/source/rtftok/rtfcontrolwords.hxx:36
enum writerfilter::rtftok::Destination LISTTABLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:66
+writerfilter/source/rtftok/rtfcontrolwords.hxx:65
enum writerfilter::rtftok::Destination INFO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:78
+writerfilter/source/rtftok/rtfcontrolwords.hxx:77
enum writerfilter::rtftok::Destination RESULT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:154
+writerfilter/source/rtftok/rtfcontrolwords.hxx:153
enum writerfilter::rtftok::Destination BACKGROUND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:170
+writerfilter/source/rtftok/rtfcontrolwords.hxx:169
enum writerfilter::rtftok::RTFKeyword RTF_SUBENTRY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:174
+writerfilter/source/rtftok/rtfcontrolwords.hxx:173
enum writerfilter::rtftok::RTFKeyword RTF_FORMULA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:179
+writerfilter/source/rtftok/rtfcontrolwords.hxx:178
enum writerfilter::rtftok::RTFKeyword RTF_ABSLOCK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:180
+writerfilter/source/rtftok/rtfcontrolwords.hxx:179
enum writerfilter::rtftok::RTFKeyword RTF_ABSNOOVRLP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:182
+writerfilter/source/rtftok/rtfcontrolwords.hxx:181
enum writerfilter::rtftok::RTFKeyword RTF_ACAPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:188
+writerfilter/source/rtftok/rtfcontrolwords.hxx:187
enum writerfilter::rtftok::RTFKeyword RTF_ACF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:189
+writerfilter/source/rtftok/rtfcontrolwords.hxx:188
enum writerfilter::rtftok::RTFKeyword RTF_ADEFF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:190
+writerfilter/source/rtftok/rtfcontrolwords.hxx:189
enum writerfilter::rtftok::RTFKeyword RTF_ADDITIVE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:192
+writerfilter/source/rtftok/rtfcontrolwords.hxx:191
enum writerfilter::rtftok::RTFKeyword RTF_ADJUSTRIGHT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:193
+writerfilter/source/rtftok/rtfcontrolwords.hxx:192
enum writerfilter::rtftok::RTFKeyword RTF_ADN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:196
+writerfilter/source/rtftok/rtfcontrolwords.hxx:195
enum writerfilter::rtftok::RTFKeyword RTF_AEXPND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:198
+writerfilter/source/rtftok/rtfcontrolwords.hxx:197
enum writerfilter::rtftok::RTFKeyword RTF_AFELEV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:200
+writerfilter/source/rtftok/rtfcontrolwords.hxx:199
enum writerfilter::rtftok::RTFKeyword RTF_AFTNBJ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:201
+writerfilter/source/rtftok/rtfcontrolwords.hxx:200
enum writerfilter::rtftok::RTFKeyword RTF_AFTNCN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:206
+writerfilter/source/rtftok/rtfcontrolwords.hxx:205
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNCHOSUNG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:207
+writerfilter/source/rtftok/rtfcontrolwords.hxx:206
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNCNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:208
+writerfilter/source/rtftok/rtfcontrolwords.hxx:207
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNDBAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:209
+writerfilter/source/rtftok/rtfcontrolwords.hxx:208
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNDBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:210
+writerfilter/source/rtftok/rtfcontrolwords.hxx:209
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNDBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:211
+writerfilter/source/rtftok/rtfcontrolwords.hxx:210
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNDBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:212
+writerfilter/source/rtftok/rtfcontrolwords.hxx:211
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNDBNUMT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:213
+writerfilter/source/rtftok/rtfcontrolwords.hxx:212
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNGANADA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:214
+writerfilter/source/rtftok/rtfcontrolwords.hxx:213
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNGBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:215
+writerfilter/source/rtftok/rtfcontrolwords.hxx:214
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNGBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:216
+writerfilter/source/rtftok/rtfcontrolwords.hxx:215
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNGBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:217
+writerfilter/source/rtftok/rtfcontrolwords.hxx:216
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNGBNUML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:220
+writerfilter/source/rtftok/rtfcontrolwords.hxx:219
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNZODIAC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:221
+writerfilter/source/rtftok/rtfcontrolwords.hxx:220
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNZODIACD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:222
+writerfilter/source/rtftok/rtfcontrolwords.hxx:221
enum writerfilter::rtftok::RTFKeyword RTF_AFTNNZODIACL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:225
+writerfilter/source/rtftok/rtfcontrolwords.hxx:224
enum writerfilter::rtftok::RTFKeyword RTF_AFTNSEP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:226
+writerfilter/source/rtftok/rtfcontrolwords.hxx:225
enum writerfilter::rtftok::RTFKeyword RTF_AFTNSEPC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:228
+writerfilter/source/rtftok/rtfcontrolwords.hxx:227
enum writerfilter::rtftok::RTFKeyword RTF_AFTNTJ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:231
+writerfilter/source/rtftok/rtfcontrolwords.hxx:230
enum writerfilter::rtftok::RTFKeyword RTF_ALLOWFIELDENDSEL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:232
+writerfilter/source/rtftok/rtfcontrolwords.hxx:231
enum writerfilter::rtftok::RTFKeyword RTF_ALLPROT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:233
+writerfilter/source/rtftok/rtfcontrolwords.hxx:232
enum writerfilter::rtftok::RTFKeyword RTF_ALNTBLIND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:234
+writerfilter/source/rtftok/rtfcontrolwords.hxx:233
enum writerfilter::rtftok::RTFKeyword RTF_ALT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:237
+writerfilter/source/rtftok/rtfcontrolwords.hxx:236
enum writerfilter::rtftok::RTFKeyword RTF_ANNOTPROT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:240
+writerfilter/source/rtftok/rtfcontrolwords.hxx:239
enum writerfilter::rtftok::RTFKeyword RTF_AOUTL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:241
+writerfilter/source/rtftok/rtfcontrolwords.hxx:240
enum writerfilter::rtftok::RTFKeyword RTF_APPLYBRKRULES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:242
+writerfilter/source/rtftok/rtfcontrolwords.hxx:241
enum writerfilter::rtftok::RTFKeyword RTF_ASCAPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:243
+writerfilter/source/rtftok/rtfcontrolwords.hxx:242
enum writerfilter::rtftok::RTFKeyword RTF_ASHAD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:244
+writerfilter/source/rtftok/rtfcontrolwords.hxx:243
enum writerfilter::rtftok::RTFKeyword RTF_ASIANBRKRULE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:246
+writerfilter/source/rtftok/rtfcontrolwords.hxx:245
enum writerfilter::rtftok::RTFKeyword RTF_ASPNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:247
+writerfilter/source/rtftok/rtfcontrolwords.hxx:246
enum writerfilter::rtftok::RTFKeyword RTF_ASTRIKE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:250
+writerfilter/source/rtftok/rtfcontrolwords.hxx:249
enum writerfilter::rtftok::RTFKeyword RTF_ATNICN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:252
+writerfilter/source/rtftok/rtfcontrolwords.hxx:251
enum writerfilter::rtftok::RTFKeyword RTF_ATNPARENT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:254
+writerfilter/source/rtftok/rtfcontrolwords.hxx:253
enum writerfilter::rtftok::RTFKeyword RTF_ATNTIME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:257
+writerfilter/source/rtftok/rtfcontrolwords.hxx:256
enum writerfilter::rtftok::RTFKeyword RTF_AUL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:258
+writerfilter/source/rtftok/rtfcontrolwords.hxx:257
enum writerfilter::rtftok::RTFKeyword RTF_AULD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:259
+writerfilter/source/rtftok/rtfcontrolwords.hxx:258
enum writerfilter::rtftok::RTFKeyword RTF_AULDB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:261
+writerfilter/source/rtftok/rtfcontrolwords.hxx:260
enum writerfilter::rtftok::RTFKeyword RTF_AULW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:262
+writerfilter/source/rtftok/rtfcontrolwords.hxx:261
enum writerfilter::rtftok::RTFKeyword RTF_AUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:264
+writerfilter/source/rtftok/rtfcontrolwords.hxx:263
enum writerfilter::rtftok::RTFKeyword RTF_AUTOFMTOVERRIDE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:267
+writerfilter/source/rtftok/rtfcontrolwords.hxx:266
enum writerfilter::rtftok::RTFKeyword RTF_BDBFHDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:268
+writerfilter/source/rtftok/rtfcontrolwords.hxx:267
enum writerfilter::rtftok::RTFKeyword RTF_BDRRLSWSIX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:269
+writerfilter/source/rtftok/rtfcontrolwords.hxx:268
enum writerfilter::rtftok::RTFKeyword RTF_BGBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:270
+writerfilter/source/rtftok/rtfcontrolwords.hxx:269
enum writerfilter::rtftok::RTFKeyword RTF_BGCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:271
+writerfilter/source/rtftok/rtfcontrolwords.hxx:270
enum writerfilter::rtftok::RTFKeyword RTF_BGDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:272
+writerfilter/source/rtftok/rtfcontrolwords.hxx:271
enum writerfilter::rtftok::RTFKeyword RTF_BGDKBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:273
+writerfilter/source/rtftok/rtfcontrolwords.hxx:272
enum writerfilter::rtftok::RTFKeyword RTF_BGDKCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:274
+writerfilter/source/rtftok/rtfcontrolwords.hxx:273
enum writerfilter::rtftok::RTFKeyword RTF_BGDKDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:275
+writerfilter/source/rtftok/rtfcontrolwords.hxx:274
enum writerfilter::rtftok::RTFKeyword RTF_BGDKFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:276
+writerfilter/source/rtftok/rtfcontrolwords.hxx:275
enum writerfilter::rtftok::RTFKeyword RTF_BGDKHORIZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:277
+writerfilter/source/rtftok/rtfcontrolwords.hxx:276
enum writerfilter::rtftok::RTFKeyword RTF_BGDKVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:278
+writerfilter/source/rtftok/rtfcontrolwords.hxx:277
enum writerfilter::rtftok::RTFKeyword RTF_BGFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:279
+writerfilter/source/rtftok/rtfcontrolwords.hxx:278
enum writerfilter::rtftok::RTFKeyword RTF_BGHORIZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:280
+writerfilter/source/rtftok/rtfcontrolwords.hxx:279
enum writerfilter::rtftok::RTFKeyword RTF_BGVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:282
+writerfilter/source/rtftok/rtfcontrolwords.hxx:281
enum writerfilter::rtftok::RTFKeyword RTF_BINFSXN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:283
+writerfilter/source/rtftok/rtfcontrolwords.hxx:282
enum writerfilter::rtftok::RTFKeyword RTF_BINSXN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:284
+writerfilter/source/rtftok/rtfcontrolwords.hxx:283
enum writerfilter::rtftok::RTFKeyword RTF_BKMKCOLF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:285
+writerfilter/source/rtftok/rtfcontrolwords.hxx:284
enum writerfilter::rtftok::RTFKeyword RTF_BKMKCOLL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:287
+writerfilter/source/rtftok/rtfcontrolwords.hxx:286
enum writerfilter::rtftok::RTFKeyword RTF_BKMKPUB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:289
+writerfilter/source/rtftok/rtfcontrolwords.hxx:288
enum writerfilter::rtftok::RTFKeyword RTF_BLIPTAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:290
+writerfilter/source/rtftok/rtfcontrolwords.hxx:289
enum writerfilter::rtftok::RTFKeyword RTF_BLIPUID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:291
+writerfilter/source/rtftok/rtfcontrolwords.hxx:290
enum writerfilter::rtftok::RTFKeyword RTF_BLIPUPI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:293
+writerfilter/source/rtftok/rtfcontrolwords.hxx:292
enum writerfilter::rtftok::RTFKeyword RTF_BOOKFOLD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:294
+writerfilter/source/rtftok/rtfcontrolwords.hxx:293
enum writerfilter::rtftok::RTFKeyword RTF_BOOKFOLDREV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:295
+writerfilter/source/rtftok/rtfcontrolwords.hxx:294
enum writerfilter::rtftok::RTFKeyword RTF_BOOKFOLDSHEETS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:297
+writerfilter/source/rtftok/rtfcontrolwords.hxx:296
enum writerfilter::rtftok::RTFKeyword RTF_BRDRART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:299
+writerfilter/source/rtftok/rtfcontrolwords.hxx:298
enum writerfilter::rtftok::RTFKeyword RTF_BRDRBAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:300
+writerfilter/source/rtftok/rtfcontrolwords.hxx:299
enum writerfilter::rtftok::RTFKeyword RTF_BRDRBTW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:303
- enum writerfilter::rtftok::RTFKeyword RTF_BRDRDASHD
writerfilter/source/rtftok/rtfcontrolwords.hxx:304
- enum writerfilter::rtftok::RTFKeyword RTF_BRDRDASHDD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:305
- enum writerfilter::rtftok::RTFKeyword RTF_BRDRDASHDOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:306
- enum writerfilter::rtftok::RTFKeyword RTF_BRDRDASHDOTDOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:307
enum writerfilter::rtftok::RTFKeyword RTF_BRDRDASHDOTSTR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:308
- enum writerfilter::rtftok::RTFKeyword RTF_BRDRDASHSM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:313
+writerfilter/source/rtftok/rtfcontrolwords.hxx:310
enum writerfilter::rtftok::RTFKeyword RTF_BRDRFRAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:317
+writerfilter/source/rtftok/rtfcontrolwords.hxx:314
enum writerfilter::rtftok::RTFKeyword RTF_BRDRNIL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:324
+writerfilter/source/rtftok/rtfcontrolwords.hxx:321
enum writerfilter::rtftok::RTFKeyword RTF_BRDRTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:325
+writerfilter/source/rtftok/rtfcontrolwords.hxx:322
enum writerfilter::rtftok::RTFKeyword RTF_BRDRTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:332
+writerfilter/source/rtftok/rtfcontrolwords.hxx:329
enum writerfilter::rtftok::RTFKeyword RTF_BRDRTNTHTNLG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:333
+writerfilter/source/rtftok/rtfcontrolwords.hxx:330
enum writerfilter::rtftok::RTFKeyword RTF_BRDRTNTHTNMG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:334
+writerfilter/source/rtftok/rtfcontrolwords.hxx:331
enum writerfilter::rtftok::RTFKeyword RTF_BRDRTNTHTNSG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:335
+writerfilter/source/rtftok/rtfcontrolwords.hxx:332
enum writerfilter::rtftok::RTFKeyword RTF_BRDRTRIPLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:337
+writerfilter/source/rtftok/rtfcontrolwords.hxx:334
enum writerfilter::rtftok::RTFKeyword RTF_BRDRWAVY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:338
+writerfilter/source/rtftok/rtfcontrolwords.hxx:335
enum writerfilter::rtftok::RTFKeyword RTF_BRDRWAVYDB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:339
+writerfilter/source/rtftok/rtfcontrolwords.hxx:336
enum writerfilter::rtftok::RTFKeyword RTF_BRKFRM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:342
+writerfilter/source/rtftok/rtfcontrolwords.hxx:339
enum writerfilter::rtftok::RTFKeyword RTF_BUPTIM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:343
+writerfilter/source/rtftok/rtfcontrolwords.hxx:340
enum writerfilter::rtftok::RTFKeyword RTF_BXE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:344
+writerfilter/source/rtftok/rtfcontrolwords.hxx:341
enum writerfilter::rtftok::RTFKeyword RTF_CACCENTFIVE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:345
+writerfilter/source/rtftok/rtfcontrolwords.hxx:342
enum writerfilter::rtftok::RTFKeyword RTF_CACCENTFOUR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:346
+writerfilter/source/rtftok/rtfcontrolwords.hxx:343
enum writerfilter::rtftok::RTFKeyword RTF_CACCENTONE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:347
+writerfilter/source/rtftok/rtfcontrolwords.hxx:344
enum writerfilter::rtftok::RTFKeyword RTF_CACCENTSIX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:348
+writerfilter/source/rtftok/rtfcontrolwords.hxx:345
enum writerfilter::rtftok::RTFKeyword RTF_CACCENTTHREE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:349
+writerfilter/source/rtftok/rtfcontrolwords.hxx:346
enum writerfilter::rtftok::RTFKeyword RTF_CACCENTTWO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:350
+writerfilter/source/rtftok/rtfcontrolwords.hxx:347
enum writerfilter::rtftok::RTFKeyword RTF_CACHEDCOLBAL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:352
+writerfilter/source/rtftok/rtfcontrolwords.hxx:349
enum writerfilter::rtftok::RTFKeyword RTF_CATEGORY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:353
+writerfilter/source/rtftok/rtfcontrolwords.hxx:350
enum writerfilter::rtftok::RTFKeyword RTF_CB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:354
+writerfilter/source/rtftok/rtfcontrolwords.hxx:351
enum writerfilter::rtftok::RTFKeyword RTF_CBACKGROUNDONE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:355
+writerfilter/source/rtftok/rtfcontrolwords.hxx:352
enum writerfilter::rtftok::RTFKeyword RTF_CBACKGROUNDTWO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:357
+writerfilter/source/rtftok/rtfcontrolwords.hxx:354
enum writerfilter::rtftok::RTFKeyword RTF_CCHS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:361
+writerfilter/source/rtftok/rtfcontrolwords.hxx:358
enum writerfilter::rtftok::RTFKeyword RTF_CFOLLOWEDHYPERLINK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:362
+writerfilter/source/rtftok/rtfcontrolwords.hxx:359
enum writerfilter::rtftok::RTFKeyword RTF_CFPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:363
+writerfilter/source/rtftok/rtfcontrolwords.hxx:360
enum writerfilter::rtftok::RTFKeyword RTF_CGRID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:364
+writerfilter/source/rtftok/rtfcontrolwords.hxx:361
enum writerfilter::rtftok::RTFKeyword RTF_CHARRSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:366
+writerfilter/source/rtftok/rtfcontrolwords.hxx:363
enum writerfilter::rtftok::RTFKeyword RTF_CHATN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:367
+writerfilter/source/rtftok/rtfcontrolwords.hxx:364
enum writerfilter::rtftok::RTFKeyword RTF_CHBGBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:368
+writerfilter/source/rtftok/rtfcontrolwords.hxx:365
enum writerfilter::rtftok::RTFKeyword RTF_CHBGCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:369
+writerfilter/source/rtftok/rtfcontrolwords.hxx:366
enum writerfilter::rtftok::RTFKeyword RTF_CHBGDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:370
+writerfilter/source/rtftok/rtfcontrolwords.hxx:367
enum writerfilter::rtftok::RTFKeyword RTF_CHBGDKBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:371
+writerfilter/source/rtftok/rtfcontrolwords.hxx:368
enum writerfilter::rtftok::RTFKeyword RTF_CHBGDKCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:372
+writerfilter/source/rtftok/rtfcontrolwords.hxx:369
enum writerfilter::rtftok::RTFKeyword RTF_CHBGDKDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:373
+writerfilter/source/rtftok/rtfcontrolwords.hxx:370
enum writerfilter::rtftok::RTFKeyword RTF_CHBGDKFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:374
+writerfilter/source/rtftok/rtfcontrolwords.hxx:371
enum writerfilter::rtftok::RTFKeyword RTF_CHBGDKHORIZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:375
+writerfilter/source/rtftok/rtfcontrolwords.hxx:372
enum writerfilter::rtftok::RTFKeyword RTF_CHBGDKVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:376
+writerfilter/source/rtftok/rtfcontrolwords.hxx:373
enum writerfilter::rtftok::RTFKeyword RTF_CHBGFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:377
+writerfilter/source/rtftok/rtfcontrolwords.hxx:374
enum writerfilter::rtftok::RTFKeyword RTF_CHBGHORIZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:378
+writerfilter/source/rtftok/rtfcontrolwords.hxx:375
enum writerfilter::rtftok::RTFKeyword RTF_CHBGVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:381
+writerfilter/source/rtftok/rtfcontrolwords.hxx:378
enum writerfilter::rtftok::RTFKeyword RTF_CHCFPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:382
+writerfilter/source/rtftok/rtfcontrolwords.hxx:379
enum writerfilter::rtftok::RTFKeyword RTF_CHDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:383
+writerfilter/source/rtftok/rtfcontrolwords.hxx:380
enum writerfilter::rtftok::RTFKeyword RTF_CHDPA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:384
+writerfilter/source/rtftok/rtfcontrolwords.hxx:381
enum writerfilter::rtftok::RTFKeyword RTF_CHDPL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:387
+writerfilter/source/rtftok/rtfcontrolwords.hxx:384
enum writerfilter::rtftok::RTFKeyword RTF_CHFTNSEPC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:389
+writerfilter/source/rtftok/rtfcontrolwords.hxx:386
enum writerfilter::rtftok::RTFKeyword RTF_CHHRES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:390
+writerfilter/source/rtftok/rtfcontrolwords.hxx:387
enum writerfilter::rtftok::RTFKeyword RTF_CHSHDNG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:391
+writerfilter/source/rtftok/rtfcontrolwords.hxx:388
enum writerfilter::rtftok::RTFKeyword RTF_CHTIME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:392
+writerfilter/source/rtftok/rtfcontrolwords.hxx:389
enum writerfilter::rtftok::RTFKeyword RTF_CHYPERLINK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:393
+writerfilter/source/rtftok/rtfcontrolwords.hxx:390
enum writerfilter::rtftok::RTFKeyword RTF_CLBGBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:394
+writerfilter/source/rtftok/rtfcontrolwords.hxx:391
enum writerfilter::rtftok::RTFKeyword RTF_CLBGCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:395
+writerfilter/source/rtftok/rtfcontrolwords.hxx:392
enum writerfilter::rtftok::RTFKeyword RTF_CLBGDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:396
+writerfilter/source/rtftok/rtfcontrolwords.hxx:393
enum writerfilter::rtftok::RTFKeyword RTF_CLBGDKBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:397
+writerfilter/source/rtftok/rtfcontrolwords.hxx:394
enum writerfilter::rtftok::RTFKeyword RTF_CLBGDKCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:398
+writerfilter/source/rtftok/rtfcontrolwords.hxx:395
enum writerfilter::rtftok::RTFKeyword RTF_CLBGDKDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:399
+writerfilter/source/rtftok/rtfcontrolwords.hxx:396
enum writerfilter::rtftok::RTFKeyword RTF_CLBGDKFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:400
+writerfilter/source/rtftok/rtfcontrolwords.hxx:397
enum writerfilter::rtftok::RTFKeyword RTF_CLBGDKHOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:401
+writerfilter/source/rtftok/rtfcontrolwords.hxx:398
enum writerfilter::rtftok::RTFKeyword RTF_CLBGDKVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:402
+writerfilter/source/rtftok/rtfcontrolwords.hxx:399
enum writerfilter::rtftok::RTFKeyword RTF_CLBGFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:403
+writerfilter/source/rtftok/rtfcontrolwords.hxx:400
enum writerfilter::rtftok::RTFKeyword RTF_CLBGHORIZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:404
+writerfilter/source/rtftok/rtfcontrolwords.hxx:401
enum writerfilter::rtftok::RTFKeyword RTF_CLBGVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:411
+writerfilter/source/rtftok/rtfcontrolwords.hxx:408
enum writerfilter::rtftok::RTFKeyword RTF_CLCFPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:412
+writerfilter/source/rtftok/rtfcontrolwords.hxx:409
enum writerfilter::rtftok::RTFKeyword RTF_CLCFPATRAW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:413
+writerfilter/source/rtftok/rtfcontrolwords.hxx:410
enum writerfilter::rtftok::RTFKeyword RTF_CLDEL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:414
+writerfilter/source/rtftok/rtfcontrolwords.hxx:411
enum writerfilter::rtftok::RTFKeyword RTF_CLDELAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:415
+writerfilter/source/rtftok/rtfcontrolwords.hxx:412
enum writerfilter::rtftok::RTFKeyword RTF_CLDELDTTM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:416
+writerfilter/source/rtftok/rtfcontrolwords.hxx:413
enum writerfilter::rtftok::RTFKeyword RTF_CLDGLL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:417
+writerfilter/source/rtftok/rtfcontrolwords.hxx:414
enum writerfilter::rtftok::RTFKeyword RTF_CLDGLU
-writerfilter/source/rtftok/rtfcontrolwords.hxx:418
+writerfilter/source/rtftok/rtfcontrolwords.hxx:415
enum writerfilter::rtftok::RTFKeyword RTF_CLFITTEXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:419
+writerfilter/source/rtftok/rtfcontrolwords.hxx:416
enum writerfilter::rtftok::RTFKeyword RTF_CLFTSWIDTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:420
+writerfilter/source/rtftok/rtfcontrolwords.hxx:417
enum writerfilter::rtftok::RTFKeyword RTF_CLHIDEMARK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:421
+writerfilter/source/rtftok/rtfcontrolwords.hxx:418
enum writerfilter::rtftok::RTFKeyword RTF_CLINS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:422
+writerfilter/source/rtftok/rtfcontrolwords.hxx:419
enum writerfilter::rtftok::RTFKeyword RTF_CLINSAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:423
+writerfilter/source/rtftok/rtfcontrolwords.hxx:420
enum writerfilter::rtftok::RTFKeyword RTF_CLINSDTTM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:426
+writerfilter/source/rtftok/rtfcontrolwords.hxx:423
enum writerfilter::rtftok::RTFKeyword RTF_CLMRGD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:427
+writerfilter/source/rtftok/rtfcontrolwords.hxx:424
enum writerfilter::rtftok::RTFKeyword RTF_CLMRGDAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:428
+writerfilter/source/rtftok/rtfcontrolwords.hxx:425
enum writerfilter::rtftok::RTFKeyword RTF_CLMRGDDTTM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:429
+writerfilter/source/rtftok/rtfcontrolwords.hxx:426
enum writerfilter::rtftok::RTFKeyword RTF_CLMRGDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:430
+writerfilter/source/rtftok/rtfcontrolwords.hxx:427
enum writerfilter::rtftok::RTFKeyword RTF_CLNOWRAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:432
+writerfilter/source/rtftok/rtfcontrolwords.hxx:429
enum writerfilter::rtftok::RTFKeyword RTF_CLPADFB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:433
+writerfilter/source/rtftok/rtfcontrolwords.hxx:430
enum writerfilter::rtftok::RTFKeyword RTF_CLPADFL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:434
+writerfilter/source/rtftok/rtfcontrolwords.hxx:431
enum writerfilter::rtftok::RTFKeyword RTF_CLPADFR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:435
+writerfilter/source/rtftok/rtfcontrolwords.hxx:432
enum writerfilter::rtftok::RTFKeyword RTF_CLPADFT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:439
+writerfilter/source/rtftok/rtfcontrolwords.hxx:436
enum writerfilter::rtftok::RTFKeyword RTF_CLSPB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:440
+writerfilter/source/rtftok/rtfcontrolwords.hxx:437
enum writerfilter::rtftok::RTFKeyword RTF_CLSPFB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:441
+writerfilter/source/rtftok/rtfcontrolwords.hxx:438
enum writerfilter::rtftok::RTFKeyword RTF_CLSPFL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:442
+writerfilter/source/rtftok/rtfcontrolwords.hxx:439
enum writerfilter::rtftok::RTFKeyword RTF_CLSPFR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:443
+writerfilter/source/rtftok/rtfcontrolwords.hxx:440
enum writerfilter::rtftok::RTFKeyword RTF_CLSPFT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:444
+writerfilter/source/rtftok/rtfcontrolwords.hxx:441
enum writerfilter::rtftok::RTFKeyword RTF_CLSPL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:445
+writerfilter/source/rtftok/rtfcontrolwords.hxx:442
enum writerfilter::rtftok::RTFKeyword RTF_CLSPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:446
+writerfilter/source/rtftok/rtfcontrolwords.hxx:443
enum writerfilter::rtftok::RTFKeyword RTF_CLSPT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:448
+writerfilter/source/rtftok/rtfcontrolwords.hxx:445
enum writerfilter::rtftok::RTFKeyword RTF_CLSHDNGRAW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:449
+writerfilter/source/rtftok/rtfcontrolwords.hxx:446
enum writerfilter::rtftok::RTFKeyword RTF_CLSHDRAWNIL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:450
+writerfilter/source/rtftok/rtfcontrolwords.hxx:447
enum writerfilter::rtftok::RTFKeyword RTF_CLSPLIT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:451
+writerfilter/source/rtftok/rtfcontrolwords.hxx:448
enum writerfilter::rtftok::RTFKeyword RTF_CLSPLITR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:462
+writerfilter/source/rtftok/rtfcontrolwords.hxx:459
enum writerfilter::rtftok::RTFKeyword RTF_CLWWIDTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:463
+writerfilter/source/rtftok/rtfcontrolwords.hxx:460
enum writerfilter::rtftok::RTFKeyword RTF_CMAINDARKONE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:464
+writerfilter/source/rtftok/rtfcontrolwords.hxx:461
enum writerfilter::rtftok::RTFKeyword RTF_CMAINDARKTWO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:465
+writerfilter/source/rtftok/rtfcontrolwords.hxx:462
enum writerfilter::rtftok::RTFKeyword RTF_CMAINLIGHTONE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:466
+writerfilter/source/rtftok/rtfcontrolwords.hxx:463
enum writerfilter::rtftok::RTFKeyword RTF_CMAINLIGHTTWO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:467
+writerfilter/source/rtftok/rtfcontrolwords.hxx:464
enum writerfilter::rtftok::RTFKeyword RTF_COLLAPSED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:469
+writerfilter/source/rtftok/rtfcontrolwords.hxx:466
enum writerfilter::rtftok::RTFKeyword RTF_COLORSCHEMEMAPPING
-writerfilter/source/rtftok/rtfcontrolwords.hxx:480
+writerfilter/source/rtftok/rtfcontrolwords.hxx:477
enum writerfilter::rtftok::RTFKeyword RTF_CRAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:481
+writerfilter/source/rtftok/rtfcontrolwords.hxx:478
enum writerfilter::rtftok::RTFKeyword RTF_CRDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:484
+writerfilter/source/rtftok/rtfcontrolwords.hxx:481
enum writerfilter::rtftok::RTFKeyword RTF_CSHADE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:485
+writerfilter/source/rtftok/rtfcontrolwords.hxx:482
enum writerfilter::rtftok::RTFKeyword RTF_CTEXTONE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:486
+writerfilter/source/rtftok/rtfcontrolwords.hxx:483
enum writerfilter::rtftok::RTFKeyword RTF_CTEXTTWO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:487
+writerfilter/source/rtftok/rtfcontrolwords.hxx:484
enum writerfilter::rtftok::RTFKeyword RTF_CTINT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:488
+writerfilter/source/rtftok/rtfcontrolwords.hxx:485
enum writerfilter::rtftok::RTFKeyword RTF_CTRL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:489
+writerfilter/source/rtftok/rtfcontrolwords.hxx:486
enum writerfilter::rtftok::RTFKeyword RTF_CTS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:490
+writerfilter/source/rtftok/rtfcontrolwords.hxx:487
enum writerfilter::rtftok::RTFKeyword RTF_CUFI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:491
+writerfilter/source/rtftok/rtfcontrolwords.hxx:488
enum writerfilter::rtftok::RTFKeyword RTF_CULI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:492
+writerfilter/source/rtftok/rtfcontrolwords.hxx:489
enum writerfilter::rtftok::RTFKeyword RTF_CURI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:493
+writerfilter/source/rtftok/rtfcontrolwords.hxx:490
enum writerfilter::rtftok::RTFKeyword RTF_CVMME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:495
+writerfilter/source/rtftok/rtfcontrolwords.hxx:492
enum writerfilter::rtftok::RTFKeyword RTF_DATASTORE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:496
+writerfilter/source/rtftok/rtfcontrolwords.hxx:493
enum writerfilter::rtftok::RTFKeyword RTF_DATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:498
+writerfilter/source/rtftok/rtfcontrolwords.hxx:495
enum writerfilter::rtftok::RTFKeyword RTF_DEFCHP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:500
+writerfilter/source/rtftok/rtfcontrolwords.hxx:497
enum writerfilter::rtftok::RTFKeyword RTF_DEFFORMAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:502
+writerfilter/source/rtftok/rtfcontrolwords.hxx:499
enum writerfilter::rtftok::RTFKeyword RTF_DEFLANGFE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:503
+writerfilter/source/rtftok/rtfcontrolwords.hxx:500
enum writerfilter::rtftok::RTFKeyword RTF_DEFPAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:504
+writerfilter/source/rtftok/rtfcontrolwords.hxx:501
enum writerfilter::rtftok::RTFKeyword RTF_DEFSHP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:507
+writerfilter/source/rtftok/rtfcontrolwords.hxx:504
enum writerfilter::rtftok::RTFKeyword RTF_DELRSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:508
+writerfilter/source/rtftok/rtfcontrolwords.hxx:505
enum writerfilter::rtftok::RTFKeyword RTF_DFRAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:509
+writerfilter/source/rtftok/rtfcontrolwords.hxx:506
enum writerfilter::rtftok::RTFKeyword RTF_DFRDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:512
+writerfilter/source/rtftok/rtfcontrolwords.hxx:509
enum writerfilter::rtftok::RTFKeyword RTF_DFRSTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:513
+writerfilter/source/rtftok/rtfcontrolwords.hxx:510
enum writerfilter::rtftok::RTFKeyword RTF_DFRSTOP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:514
+writerfilter/source/rtftok/rtfcontrolwords.hxx:511
enum writerfilter::rtftok::RTFKeyword RTF_DFRXST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:515
+writerfilter/source/rtftok/rtfcontrolwords.hxx:512
enum writerfilter::rtftok::RTFKeyword RTF_DGHORIGIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:516
+writerfilter/source/rtftok/rtfcontrolwords.hxx:513
enum writerfilter::rtftok::RTFKeyword RTF_DGHSHOW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:517
+writerfilter/source/rtftok/rtfcontrolwords.hxx:514
enum writerfilter::rtftok::RTFKeyword RTF_DGHSPACE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:518
+writerfilter/source/rtftok/rtfcontrolwords.hxx:515
enum writerfilter::rtftok::RTFKeyword RTF_DGMARGIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:519
+writerfilter/source/rtftok/rtfcontrolwords.hxx:516
enum writerfilter::rtftok::RTFKeyword RTF_DGSNAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:520
+writerfilter/source/rtftok/rtfcontrolwords.hxx:517
enum writerfilter::rtftok::RTFKeyword RTF_DGVORIGIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:521
+writerfilter/source/rtftok/rtfcontrolwords.hxx:518
enum writerfilter::rtftok::RTFKeyword RTF_DGVSHOW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:522
+writerfilter/source/rtftok/rtfcontrolwords.hxx:519
enum writerfilter::rtftok::RTFKeyword RTF_DGVSPACE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:524
+writerfilter/source/rtftok/rtfcontrolwords.hxx:521
enum writerfilter::rtftok::RTFKeyword RTF_DISABLED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:526
+writerfilter/source/rtftok/rtfcontrolwords.hxx:523
enum writerfilter::rtftok::RTFKeyword RTF_DNTBLNSBDB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:528
+writerfilter/source/rtftok/rtfcontrolwords.hxx:525
enum writerfilter::rtftok::RTFKeyword RTF_DOBXCOLUMN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:535
+writerfilter/source/rtftok/rtfcontrolwords.hxx:532
enum writerfilter::rtftok::RTFKeyword RTF_DOCTEMP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:536
+writerfilter/source/rtftok/rtfcontrolwords.hxx:533
enum writerfilter::rtftok::RTFKeyword RTF_DOCTYPE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:537
+writerfilter/source/rtftok/rtfcontrolwords.hxx:534
enum writerfilter::rtftok::RTFKeyword RTF_DOCVAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:539
+writerfilter/source/rtftok/rtfcontrolwords.hxx:536
enum writerfilter::rtftok::RTFKeyword RTF_DOLOCK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:540
+writerfilter/source/rtftok/rtfcontrolwords.hxx:537
enum writerfilter::rtftok::RTFKeyword RTF_DONOTEMBEDLINGDATA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:541
+writerfilter/source/rtftok/rtfcontrolwords.hxx:538
enum writerfilter::rtftok::RTFKeyword RTF_DONOTEMBEDSYSFONT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:542
+writerfilter/source/rtftok/rtfcontrolwords.hxx:539
enum writerfilter::rtftok::RTFKeyword RTF_DONOTSHOWCOMMENTS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:543
+writerfilter/source/rtftok/rtfcontrolwords.hxx:540
enum writerfilter::rtftok::RTFKeyword RTF_DONOTSHOWINSDEL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:544
+writerfilter/source/rtftok/rtfcontrolwords.hxx:541
enum writerfilter::rtftok::RTFKeyword RTF_DONOTSHOWMARKUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:545
+writerfilter/source/rtftok/rtfcontrolwords.hxx:542
enum writerfilter::rtftok::RTFKeyword RTF_DONOTSHOWPROPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:546
+writerfilter/source/rtftok/rtfcontrolwords.hxx:543
enum writerfilter::rtftok::RTFKeyword RTF_DPAENDHOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:547
+writerfilter/source/rtftok/rtfcontrolwords.hxx:544
enum writerfilter::rtftok::RTFKeyword RTF_DPAENDL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:548
+writerfilter/source/rtftok/rtfcontrolwords.hxx:545
enum writerfilter::rtftok::RTFKeyword RTF_DPAENDSOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:549
+writerfilter/source/rtftok/rtfcontrolwords.hxx:546
enum writerfilter::rtftok::RTFKeyword RTF_DPAENDW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:550
+writerfilter/source/rtftok/rtfcontrolwords.hxx:547
enum writerfilter::rtftok::RTFKeyword RTF_DPARC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:551
+writerfilter/source/rtftok/rtfcontrolwords.hxx:548
enum writerfilter::rtftok::RTFKeyword RTF_DPARCFLIPX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:552
+writerfilter/source/rtftok/rtfcontrolwords.hxx:549
enum writerfilter::rtftok::RTFKeyword RTF_DPARCFLIPY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:553
+writerfilter/source/rtftok/rtfcontrolwords.hxx:550
enum writerfilter::rtftok::RTFKeyword RTF_DPASTARTHOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:554
+writerfilter/source/rtftok/rtfcontrolwords.hxx:551
enum writerfilter::rtftok::RTFKeyword RTF_DPASTARTL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:555
+writerfilter/source/rtftok/rtfcontrolwords.hxx:552
enum writerfilter::rtftok::RTFKeyword RTF_DPASTARTSOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:556
+writerfilter/source/rtftok/rtfcontrolwords.hxx:553
enum writerfilter::rtftok::RTFKeyword RTF_DPASTARTW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:557
+writerfilter/source/rtftok/rtfcontrolwords.hxx:554
enum writerfilter::rtftok::RTFKeyword RTF_DPCALLOUT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:558
+writerfilter/source/rtftok/rtfcontrolwords.hxx:555
enum writerfilter::rtftok::RTFKeyword RTF_DPCOA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:559
+writerfilter/source/rtftok/rtfcontrolwords.hxx:556
enum writerfilter::rtftok::RTFKeyword RTF_DPCOACCENT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:560
+writerfilter/source/rtftok/rtfcontrolwords.hxx:557
enum writerfilter::rtftok::RTFKeyword RTF_DPCOBESTFIT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:561
+writerfilter/source/rtftok/rtfcontrolwords.hxx:558
enum writerfilter::rtftok::RTFKeyword RTF_DPCOBORDER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:562
+writerfilter/source/rtftok/rtfcontrolwords.hxx:559
enum writerfilter::rtftok::RTFKeyword RTF_DPCODABS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:563
+writerfilter/source/rtftok/rtfcontrolwords.hxx:560
enum writerfilter::rtftok::RTFKeyword RTF_DPCODBOTTOM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:564
+writerfilter/source/rtftok/rtfcontrolwords.hxx:561
enum writerfilter::rtftok::RTFKeyword RTF_DPCODCENTER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:565
+writerfilter/source/rtftok/rtfcontrolwords.hxx:562
enum writerfilter::rtftok::RTFKeyword RTF_DPCODESCENT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:566
+writerfilter/source/rtftok/rtfcontrolwords.hxx:563
enum writerfilter::rtftok::RTFKeyword RTF_DPCODTOP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:567
+writerfilter/source/rtftok/rtfcontrolwords.hxx:564
enum writerfilter::rtftok::RTFKeyword RTF_DPCOLENGTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:568
+writerfilter/source/rtftok/rtfcontrolwords.hxx:565
enum writerfilter::rtftok::RTFKeyword RTF_DPCOMINUSX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:569
+writerfilter/source/rtftok/rtfcontrolwords.hxx:566
enum writerfilter::rtftok::RTFKeyword RTF_DPCOMINUSY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:570
+writerfilter/source/rtftok/rtfcontrolwords.hxx:567
enum writerfilter::rtftok::RTFKeyword RTF_DPCOOFFSET
-writerfilter/source/rtftok/rtfcontrolwords.hxx:571
+writerfilter/source/rtftok/rtfcontrolwords.hxx:568
enum writerfilter::rtftok::RTFKeyword RTF_DPCOSMARTA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:572
+writerfilter/source/rtftok/rtfcontrolwords.hxx:569
enum writerfilter::rtftok::RTFKeyword RTF_DPCOTDOUBLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:573
+writerfilter/source/rtftok/rtfcontrolwords.hxx:570
enum writerfilter::rtftok::RTFKeyword RTF_DPCOTRIGHT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:574
+writerfilter/source/rtftok/rtfcontrolwords.hxx:571
enum writerfilter::rtftok::RTFKeyword RTF_DPCOTSINGLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:575
+writerfilter/source/rtftok/rtfcontrolwords.hxx:572
enum writerfilter::rtftok::RTFKeyword RTF_DPCOTTRIPLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:576
+writerfilter/source/rtftok/rtfcontrolwords.hxx:573
enum writerfilter::rtftok::RTFKeyword RTF_DPCOUNT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:578
+writerfilter/source/rtftok/rtfcontrolwords.hxx:575
enum writerfilter::rtftok::RTFKeyword RTF_DPENDGROUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:582
+writerfilter/source/rtftok/rtfcontrolwords.hxx:579
enum writerfilter::rtftok::RTFKeyword RTF_DPFILLBGGRAY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:583
+writerfilter/source/rtftok/rtfcontrolwords.hxx:580
enum writerfilter::rtftok::RTFKeyword RTF_DPFILLBGPAL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:584
+writerfilter/source/rtftok/rtfcontrolwords.hxx:581
enum writerfilter::rtftok::RTFKeyword RTF_DPFILLFGCB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:585
+writerfilter/source/rtftok/rtfcontrolwords.hxx:582
enum writerfilter::rtftok::RTFKeyword RTF_DPFILLFGCG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:586
+writerfilter/source/rtftok/rtfcontrolwords.hxx:583
enum writerfilter::rtftok::RTFKeyword RTF_DPFILLFGCR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:587
+writerfilter/source/rtftok/rtfcontrolwords.hxx:584
enum writerfilter::rtftok::RTFKeyword RTF_DPFILLFGGRAY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:588
+writerfilter/source/rtftok/rtfcontrolwords.hxx:585
enum writerfilter::rtftok::RTFKeyword RTF_DPFILLFGPAL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:589
+writerfilter/source/rtftok/rtfcontrolwords.hxx:586
enum writerfilter::rtftok::RTFKeyword RTF_DPFILLPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:590
+writerfilter/source/rtftok/rtfcontrolwords.hxx:587
enum writerfilter::rtftok::RTFKeyword RTF_DPGROUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:595
+writerfilter/source/rtftok/rtfcontrolwords.hxx:592
enum writerfilter::rtftok::RTFKeyword RTF_DPLINEDADO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:596
+writerfilter/source/rtftok/rtfcontrolwords.hxx:593
enum writerfilter::rtftok::RTFKeyword RTF_DPLINEDADODO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:597
+writerfilter/source/rtftok/rtfcontrolwords.hxx:594
enum writerfilter::rtftok::RTFKeyword RTF_DPLINEDASH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:598
+writerfilter/source/rtftok/rtfcontrolwords.hxx:595
enum writerfilter::rtftok::RTFKeyword RTF_DPLINEDOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:599
+writerfilter/source/rtftok/rtfcontrolwords.hxx:596
enum writerfilter::rtftok::RTFKeyword RTF_DPLINEGRAY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:601
+writerfilter/source/rtftok/rtfcontrolwords.hxx:598
enum writerfilter::rtftok::RTFKeyword RTF_DPLINEPAL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:602
+writerfilter/source/rtftok/rtfcontrolwords.hxx:599
enum writerfilter::rtftok::RTFKeyword RTF_DPLINESOLID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:603
+writerfilter/source/rtftok/rtfcontrolwords.hxx:600
enum writerfilter::rtftok::RTFKeyword RTF_DPLINEW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:611
+writerfilter/source/rtftok/rtfcontrolwords.hxx:608
enum writerfilter::rtftok::RTFKeyword RTF_DPSHADOW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:612
+writerfilter/source/rtftok/rtfcontrolwords.hxx:609
enum writerfilter::rtftok::RTFKeyword RTF_DPSHADX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:613
+writerfilter/source/rtftok/rtfcontrolwords.hxx:610
enum writerfilter::rtftok::RTFKeyword RTF_DPSHADY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:614
+writerfilter/source/rtftok/rtfcontrolwords.hxx:611
enum writerfilter::rtftok::RTFKeyword RTF_DPTXBTLR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:616
+writerfilter/source/rtftok/rtfcontrolwords.hxx:613
enum writerfilter::rtftok::RTFKeyword RTF_DPTXBXMAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:618
+writerfilter/source/rtftok/rtfcontrolwords.hxx:615
enum writerfilter::rtftok::RTFKeyword RTF_DPTXLRTB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:619
+writerfilter/source/rtftok/rtfcontrolwords.hxx:616
enum writerfilter::rtftok::RTFKeyword RTF_DPTXLRTBV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:620
+writerfilter/source/rtftok/rtfcontrolwords.hxx:617
enum writerfilter::rtftok::RTFKeyword RTF_DPTXTBRL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:621
+writerfilter/source/rtftok/rtfcontrolwords.hxx:618
enum writerfilter::rtftok::RTFKeyword RTF_DPTXTBRLV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:626
+writerfilter/source/rtftok/rtfcontrolwords.hxx:623
enum writerfilter::rtftok::RTFKeyword RTF_DROPCAPLI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:627
+writerfilter/source/rtftok/rtfcontrolwords.hxx:624
enum writerfilter::rtftok::RTFKeyword RTF_DROPCAPT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:631
+writerfilter/source/rtftok/rtfcontrolwords.hxx:628
enum writerfilter::rtftok::RTFKeyword RTF_EBCEND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:632
+writerfilter/source/rtftok/rtfcontrolwords.hxx:629
enum writerfilter::rtftok::RTFKeyword RTF_EBCSTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:634
+writerfilter/source/rtftok/rtfcontrolwords.hxx:631
enum writerfilter::rtftok::RTFKeyword RTF_EMBO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:636
+writerfilter/source/rtftok/rtfcontrolwords.hxx:633
enum writerfilter::rtftok::RTFKeyword RTF_EMFBLIP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:637
+writerfilter/source/rtftok/rtfcontrolwords.hxx:634
enum writerfilter::rtftok::RTFKeyword RTF_EMSPACE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:640
+writerfilter/source/rtftok/rtfcontrolwords.hxx:637
enum writerfilter::rtftok::RTFKeyword RTF_ENDNHERE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:641
+writerfilter/source/rtftok/rtfcontrolwords.hxx:638
enum writerfilter::rtftok::RTFKeyword RTF_ENDNOTES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:642
+writerfilter/source/rtftok/rtfcontrolwords.hxx:639
enum writerfilter::rtftok::RTFKeyword RTF_ENFORCEPROT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:643
+writerfilter/source/rtftok/rtfcontrolwords.hxx:640
enum writerfilter::rtftok::RTFKeyword RTF_ENSPACE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:646
+writerfilter/source/rtftok/rtfcontrolwords.hxx:643
enum writerfilter::rtftok::RTFKeyword RTF_EXPSHRTN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:651
+writerfilter/source/rtftok/rtfcontrolwords.hxx:648
enum writerfilter::rtftok::RTFKeyword RTF_FACTOIDNAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:657
+writerfilter/source/rtftok/rtfcontrolwords.hxx:654
enum writerfilter::rtftok::RTFKeyword RTF_FBIAS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:659
+writerfilter/source/rtftok/rtfcontrolwords.hxx:656
enum writerfilter::rtftok::RTFKeyword RTF_FBIDIS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:660
+writerfilter/source/rtftok/rtfcontrolwords.hxx:657
enum writerfilter::rtftok::RTFKeyword RTF_FBIMAJOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:661
+writerfilter/source/rtftok/rtfcontrolwords.hxx:658
enum writerfilter::rtftok::RTFKeyword RTF_FBIMINOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:662
+writerfilter/source/rtftok/rtfcontrolwords.hxx:659
enum writerfilter::rtftok::RTFKeyword RTF_FCHARS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:664
+writerfilter/source/rtftok/rtfcontrolwords.hxx:661
enum writerfilter::rtftok::RTFKeyword RTF_FCS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:665
+writerfilter/source/rtftok/rtfcontrolwords.hxx:662
enum writerfilter::rtftok::RTFKeyword RTF_FDBMAJOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:666
+writerfilter/source/rtftok/rtfcontrolwords.hxx:663
enum writerfilter::rtftok::RTFKeyword RTF_FDBMINOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:668
+writerfilter/source/rtftok/rtfcontrolwords.hxx:665
enum writerfilter::rtftok::RTFKeyword RTF_FELNBRELEV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:669
+writerfilter/source/rtftok/rtfcontrolwords.hxx:666
enum writerfilter::rtftok::RTFKeyword RTF_FET
-writerfilter/source/rtftok/rtfcontrolwords.hxx:670
+writerfilter/source/rtftok/rtfcontrolwords.hxx:667
enum writerfilter::rtftok::RTFKeyword RTF_FETCH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:672
+writerfilter/source/rtftok/rtfcontrolwords.hxx:669
enum writerfilter::rtftok::RTFKeyword RTF_FFDEFTEXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:673
+writerfilter/source/rtftok/rtfcontrolwords.hxx:670
enum writerfilter::rtftok::RTFKeyword RTF_FFENTRYMCR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:674
+writerfilter/source/rtftok/rtfcontrolwords.hxx:671
enum writerfilter::rtftok::RTFKeyword RTF_FFEXITMCR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:675
+writerfilter/source/rtftok/rtfcontrolwords.hxx:672
enum writerfilter::rtftok::RTFKeyword RTF_FFFORMAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:676
+writerfilter/source/rtftok/rtfcontrolwords.hxx:673
enum writerfilter::rtftok::RTFKeyword RTF_FFHASLISTBOX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:677
+writerfilter/source/rtftok/rtfcontrolwords.hxx:674
enum writerfilter::rtftok::RTFKeyword RTF_FFHELPTEXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:678
+writerfilter/source/rtftok/rtfcontrolwords.hxx:675
enum writerfilter::rtftok::RTFKeyword RTF_FFHPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:680
+writerfilter/source/rtftok/rtfcontrolwords.hxx:677
enum writerfilter::rtftok::RTFKeyword RTF_FFMAXLEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:682
+writerfilter/source/rtftok/rtfcontrolwords.hxx:679
enum writerfilter::rtftok::RTFKeyword RTF_FFOWNHELP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:683
+writerfilter/source/rtftok/rtfcontrolwords.hxx:680
enum writerfilter::rtftok::RTFKeyword RTF_FFOWNSTAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:684
+writerfilter/source/rtftok/rtfcontrolwords.hxx:681
enum writerfilter::rtftok::RTFKeyword RTF_FFPROT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:685
+writerfilter/source/rtftok/rtfcontrolwords.hxx:682
enum writerfilter::rtftok::RTFKeyword RTF_FFRECALC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:687
+writerfilter/source/rtftok/rtfcontrolwords.hxx:684
enum writerfilter::rtftok::RTFKeyword RTF_FFSIZE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:688
+writerfilter/source/rtftok/rtfcontrolwords.hxx:685
enum writerfilter::rtftok::RTFKeyword RTF_FFSTATTEXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:690
+writerfilter/source/rtftok/rtfcontrolwords.hxx:687
enum writerfilter::rtftok::RTFKeyword RTF_FFTYPETXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:691
+writerfilter/source/rtftok/rtfcontrolwords.hxx:688
enum writerfilter::rtftok::RTFKeyword RTF_FHIMAJOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:692
+writerfilter/source/rtftok/rtfcontrolwords.hxx:689
enum writerfilter::rtftok::RTFKeyword RTF_FHIMINOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:694
+writerfilter/source/rtftok/rtfcontrolwords.hxx:691
enum writerfilter::rtftok::RTFKeyword RTF_FID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:696
+writerfilter/source/rtftok/rtfcontrolwords.hxx:693
enum writerfilter::rtftok::RTFKeyword RTF_FILE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:697
+writerfilter/source/rtftok/rtfcontrolwords.hxx:694
enum writerfilter::rtftok::RTFKeyword RTF_FILETBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:698
+writerfilter/source/rtftok/rtfcontrolwords.hxx:695
enum writerfilter::rtftok::RTFKeyword RTF_FITTEXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:699
+writerfilter/source/rtftok/rtfcontrolwords.hxx:696
enum writerfilter::rtftok::RTFKeyword RTF_FJGOTHIC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:700
+writerfilter/source/rtftok/rtfcontrolwords.hxx:697
enum writerfilter::rtftok::RTFKeyword RTF_FJMINCHOU
-writerfilter/source/rtftok/rtfcontrolwords.hxx:701
+writerfilter/source/rtftok/rtfcontrolwords.hxx:698
enum writerfilter::rtftok::RTFKeyword RTF_FLDALT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:702
+writerfilter/source/rtftok/rtfcontrolwords.hxx:699
enum writerfilter::rtftok::RTFKeyword RTF_FLDDIRTY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:703
+writerfilter/source/rtftok/rtfcontrolwords.hxx:700
enum writerfilter::rtftok::RTFKeyword RTF_FLDEDIT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:705
+writerfilter/source/rtftok/rtfcontrolwords.hxx:702
enum writerfilter::rtftok::RTFKeyword RTF_FLDLOCK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:706
+writerfilter/source/rtftok/rtfcontrolwords.hxx:703
enum writerfilter::rtftok::RTFKeyword RTF_FLDPRIV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:708
+writerfilter/source/rtftok/rtfcontrolwords.hxx:705
enum writerfilter::rtftok::RTFKeyword RTF_FLDTYPE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:709
+writerfilter/source/rtftok/rtfcontrolwords.hxx:706
enum writerfilter::rtftok::RTFKeyword RTF_FLOMAJOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:710
+writerfilter/source/rtftok/rtfcontrolwords.hxx:707
enum writerfilter::rtftok::RTFKeyword RTF_FLOMINOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:712
+writerfilter/source/rtftok/rtfcontrolwords.hxx:709
enum writerfilter::rtftok::RTFKeyword RTF_FN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:713
+writerfilter/source/rtftok/rtfcontrolwords.hxx:710
enum writerfilter::rtftok::RTFKeyword RTF_FNAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:714
+writerfilter/source/rtftok/rtfcontrolwords.hxx:711
enum writerfilter::rtftok::RTFKeyword RTF_FNETWORK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:716
+writerfilter/source/rtftok/rtfcontrolwords.hxx:713
enum writerfilter::rtftok::RTFKeyword RTF_FNONFILESYS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:717
+writerfilter/source/rtftok/rtfcontrolwords.hxx:714
enum writerfilter::rtftok::RTFKeyword RTF_FONTEMB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:718
+writerfilter/source/rtftok/rtfcontrolwords.hxx:715
enum writerfilter::rtftok::RTFKeyword RTF_FONTFILE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:726
+writerfilter/source/rtftok/rtfcontrolwords.hxx:723
enum writerfilter::rtftok::RTFKeyword RTF_FORCEUPGRADE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:727
+writerfilter/source/rtftok/rtfcontrolwords.hxx:724
enum writerfilter::rtftok::RTFKeyword RTF_FORMDISP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:729
+writerfilter/source/rtftok/rtfcontrolwords.hxx:726
enum writerfilter::rtftok::RTFKeyword RTF_FORMPROT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:731
+writerfilter/source/rtftok/rtfcontrolwords.hxx:728
enum writerfilter::rtftok::RTFKeyword RTF_FOSNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:733
+writerfilter/source/rtftok/rtfcontrolwords.hxx:730
enum writerfilter::rtftok::RTFKeyword RTF_FRACWIDTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:734
+writerfilter/source/rtftok/rtfcontrolwords.hxx:731
enum writerfilter::rtftok::RTFKeyword RTF_FRELATIVE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:735
+writerfilter/source/rtftok/rtfcontrolwords.hxx:732
enum writerfilter::rtftok::RTFKeyword RTF_FRMTXBTLR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:736
+writerfilter/source/rtftok/rtfcontrolwords.hxx:733
enum writerfilter::rtftok::RTFKeyword RTF_FRMTXLRTB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:737
+writerfilter/source/rtftok/rtfcontrolwords.hxx:734
enum writerfilter::rtftok::RTFKeyword RTF_FRMTXLRTBV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:738
+writerfilter/source/rtftok/rtfcontrolwords.hxx:735
enum writerfilter::rtftok::RTFKeyword RTF_FRMTXTBRL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:739
+writerfilter/source/rtftok/rtfcontrolwords.hxx:736
enum writerfilter::rtftok::RTFKeyword RTF_FRMTXTBRLV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:741
+writerfilter/source/rtftok/rtfcontrolwords.hxx:738
enum writerfilter::rtftok::RTFKeyword RTF_FROMHTML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:742
+writerfilter/source/rtftok/rtfcontrolwords.hxx:739
enum writerfilter::rtftok::RTFKeyword RTF_FROMTEXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:747
+writerfilter/source/rtftok/rtfcontrolwords.hxx:744
enum writerfilter::rtftok::RTFKeyword RTF_FTNALT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:749
+writerfilter/source/rtftok/rtfcontrolwords.hxx:746
enum writerfilter::rtftok::RTFKeyword RTF_FTNCN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:750
+writerfilter/source/rtftok/rtfcontrolwords.hxx:747
enum writerfilter::rtftok::RTFKeyword RTF_FTNIL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:751
+writerfilter/source/rtftok/rtfcontrolwords.hxx:748
enum writerfilter::rtftok::RTFKeyword RTF_FTNLYTWNINE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:756
+writerfilter/source/rtftok/rtfcontrolwords.hxx:753
enum writerfilter::rtftok::RTFKeyword RTF_FTNNCHOSUNG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:757
+writerfilter/source/rtftok/rtfcontrolwords.hxx:754
enum writerfilter::rtftok::RTFKeyword RTF_FTNNCNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:758
+writerfilter/source/rtftok/rtfcontrolwords.hxx:755
enum writerfilter::rtftok::RTFKeyword RTF_FTNNDBAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:759
+writerfilter/source/rtftok/rtfcontrolwords.hxx:756
enum writerfilter::rtftok::RTFKeyword RTF_FTNNDBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:760
+writerfilter/source/rtftok/rtfcontrolwords.hxx:757
enum writerfilter::rtftok::RTFKeyword RTF_FTNNDBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:761
+writerfilter/source/rtftok/rtfcontrolwords.hxx:758
enum writerfilter::rtftok::RTFKeyword RTF_FTNNDBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:762
+writerfilter/source/rtftok/rtfcontrolwords.hxx:759
enum writerfilter::rtftok::RTFKeyword RTF_FTNNDBNUMT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:763
+writerfilter/source/rtftok/rtfcontrolwords.hxx:760
enum writerfilter::rtftok::RTFKeyword RTF_FTNNGANADA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:764
+writerfilter/source/rtftok/rtfcontrolwords.hxx:761
enum writerfilter::rtftok::RTFKeyword RTF_FTNNGBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:765
+writerfilter/source/rtftok/rtfcontrolwords.hxx:762
enum writerfilter::rtftok::RTFKeyword RTF_FTNNGBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:766
+writerfilter/source/rtftok/rtfcontrolwords.hxx:763
enum writerfilter::rtftok::RTFKeyword RTF_FTNNGBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:767
+writerfilter/source/rtftok/rtfcontrolwords.hxx:764
enum writerfilter::rtftok::RTFKeyword RTF_FTNNGBNUML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:770
+writerfilter/source/rtftok/rtfcontrolwords.hxx:767
enum writerfilter::rtftok::RTFKeyword RTF_FTNNZODIAC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:771
+writerfilter/source/rtftok/rtfcontrolwords.hxx:768
enum writerfilter::rtftok::RTFKeyword RTF_FTNNZODIACD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:772
+writerfilter/source/rtftok/rtfcontrolwords.hxx:769
enum writerfilter::rtftok::RTFKeyword RTF_FTNNZODIACL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:777
+writerfilter/source/rtftok/rtfcontrolwords.hxx:774
enum writerfilter::rtftok::RTFKeyword RTF_FTNSEPC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:779
+writerfilter/source/rtftok/rtfcontrolwords.hxx:776
enum writerfilter::rtftok::RTFKeyword RTF_FTNTJ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:780
+writerfilter/source/rtftok/rtfcontrolwords.hxx:777
enum writerfilter::rtftok::RTFKeyword RTF_FTTRUETYPE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:781
+writerfilter/source/rtftok/rtfcontrolwords.hxx:778
enum writerfilter::rtftok::RTFKeyword RTF_FVALIDDOS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:782
+writerfilter/source/rtftok/rtfcontrolwords.hxx:779
enum writerfilter::rtftok::RTFKeyword RTF_FVALIDHPFS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:783
+writerfilter/source/rtftok/rtfcontrolwords.hxx:780
enum writerfilter::rtftok::RTFKeyword RTF_FVALIDMAC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:784
+writerfilter/source/rtftok/rtfcontrolwords.hxx:781
enum writerfilter::rtftok::RTFKeyword RTF_FVALIDNTFS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:785
+writerfilter/source/rtftok/rtfcontrolwords.hxx:782
enum writerfilter::rtftok::RTFKeyword RTF_G
-writerfilter/source/rtftok/rtfcontrolwords.hxx:786
+writerfilter/source/rtftok/rtfcontrolwords.hxx:783
enum writerfilter::rtftok::RTFKeyword RTF_GCW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:787
+writerfilter/source/rtftok/rtfcontrolwords.hxx:784
enum writerfilter::rtftok::RTFKeyword RTF_GENERATOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:789
+writerfilter/source/rtftok/rtfcontrolwords.hxx:786
enum writerfilter::rtftok::RTFKeyword RTF_GRFDOCEVENTS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:790
+writerfilter/source/rtftok/rtfcontrolwords.hxx:787
enum writerfilter::rtftok::RTFKeyword RTF_GRIDTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:791
+writerfilter/source/rtftok/rtfcontrolwords.hxx:788
enum writerfilter::rtftok::RTFKeyword RTF_GUTTER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:792
+writerfilter/source/rtftok/rtfcontrolwords.hxx:789
enum writerfilter::rtftok::RTFKeyword RTF_GUTTERPRL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:793
+writerfilter/source/rtftok/rtfcontrolwords.hxx:790
enum writerfilter::rtftok::RTFKeyword RTF_GUTTERSXN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:801
+writerfilter/source/rtftok/rtfcontrolwords.hxx:798
enum writerfilter::rtftok::RTFKeyword RTF_HL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:802
+writerfilter/source/rtftok/rtfcontrolwords.hxx:799
enum writerfilter::rtftok::RTFKeyword RTF_HLFR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:803
+writerfilter/source/rtftok/rtfcontrolwords.hxx:800
enum writerfilter::rtftok::RTFKeyword RTF_HLINKBASE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:804
+writerfilter/source/rtftok/rtfcontrolwords.hxx:801
enum writerfilter::rtftok::RTFKeyword RTF_HLLOC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:805
+writerfilter/source/rtftok/rtfcontrolwords.hxx:802
enum writerfilter::rtftok::RTFKeyword RTF_HLSRC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:806
+writerfilter/source/rtftok/rtfcontrolwords.hxx:803
enum writerfilter::rtftok::RTFKeyword RTF_HORZDOC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:807
+writerfilter/source/rtftok/rtfcontrolwords.hxx:804
enum writerfilter::rtftok::RTFKeyword RTF_HORZSECT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:810
+writerfilter/source/rtftok/rtfcontrolwords.hxx:807
enum writerfilter::rtftok::RTFKeyword RTF_HRES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:811
+writerfilter/source/rtftok/rtfcontrolwords.hxx:808
enum writerfilter::rtftok::RTFKeyword RTF_HRULE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:812
+writerfilter/source/rtftok/rtfcontrolwords.hxx:809
enum writerfilter::rtftok::RTFKeyword RTF_HSV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:814
+writerfilter/source/rtftok/rtfcontrolwords.hxx:811
enum writerfilter::rtftok::RTFKeyword RTF_HTMLBASE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:815
+writerfilter/source/rtftok/rtfcontrolwords.hxx:812
enum writerfilter::rtftok::RTFKeyword RTF_HTMLRTF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:816
+writerfilter/source/rtftok/rtfcontrolwords.hxx:813
enum writerfilter::rtftok::RTFKeyword RTF_HTMLTAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:817
+writerfilter/source/rtftok/rtfcontrolwords.hxx:814
enum writerfilter::rtftok::RTFKeyword RTF_HWELEV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:819
+writerfilter/source/rtftok/rtfcontrolwords.hxx:816
enum writerfilter::rtftok::RTFKeyword RTF_HYPHCAPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:820
+writerfilter/source/rtftok/rtfcontrolwords.hxx:817
enum writerfilter::rtftok::RTFKeyword RTF_HYPHCONSEC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:821
+writerfilter/source/rtftok/rtfcontrolwords.hxx:818
enum writerfilter::rtftok::RTFKeyword RTF_HYPHHOTZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:824
+writerfilter/source/rtftok/rtfcontrolwords.hxx:821
enum writerfilter::rtftok::RTFKeyword RTF_ID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:825
+writerfilter/source/rtftok/rtfcontrolwords.hxx:822
enum writerfilter::rtftok::RTFKeyword RTF_IGNOREMIXEDCONTENT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:826
+writerfilter/source/rtftok/rtfcontrolwords.hxx:823
enum writerfilter::rtftok::RTFKeyword RTF_ILFOMACATCLNUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:829
+writerfilter/source/rtftok/rtfcontrolwords.hxx:826
enum writerfilter::rtftok::RTFKeyword RTF_INDMIRROR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:830
+writerfilter/source/rtftok/rtfcontrolwords.hxx:827
enum writerfilter::rtftok::RTFKeyword RTF_INDRLSWELEVEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:832
+writerfilter/source/rtftok/rtfcontrolwords.hxx:829
enum writerfilter::rtftok::RTFKeyword RTF_INSRSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:834
+writerfilter/source/rtftok/rtfcontrolwords.hxx:831
enum writerfilter::rtftok::RTFKeyword RTF_IPGP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:835
+writerfilter/source/rtftok/rtfcontrolwords.hxx:832
enum writerfilter::rtftok::RTFKeyword RTF_IROWBAND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:836
+writerfilter/source/rtftok/rtfcontrolwords.hxx:833
enum writerfilter::rtftok::RTFKeyword RTF_IROW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:838
+writerfilter/source/rtftok/rtfcontrolwords.hxx:835
enum writerfilter::rtftok::RTFKeyword RTF_IXE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:839
+writerfilter/source/rtftok/rtfcontrolwords.hxx:836
enum writerfilter::rtftok::RTFKeyword RTF_JCOMPRESS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:840
+writerfilter/source/rtftok/rtfcontrolwords.hxx:837
enum writerfilter::rtftok::RTFKeyword RTF_JEXPAND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:841
+writerfilter/source/rtftok/rtfcontrolwords.hxx:838
enum writerfilter::rtftok::RTFKeyword RTF_JIS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:843
+writerfilter/source/rtftok/rtfcontrolwords.hxx:840
enum writerfilter::rtftok::RTFKeyword RTF_JSKSU
-writerfilter/source/rtftok/rtfcontrolwords.hxx:847
+writerfilter/source/rtftok/rtfcontrolwords.hxx:844
enum writerfilter::rtftok::RTFKeyword RTF_KEYCODE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:849
+writerfilter/source/rtftok/rtfcontrolwords.hxx:846
enum writerfilter::rtftok::RTFKeyword RTF_KRNPRSNET
-writerfilter/source/rtftok/rtfcontrolwords.hxx:850
+writerfilter/source/rtftok/rtfcontrolwords.hxx:847
enum writerfilter::rtftok::RTFKeyword RTF_KSULANG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:851
+writerfilter/source/rtftok/rtfcontrolwords.hxx:848
enum writerfilter::rtftok::RTFKeyword RTF_JCLISTTAB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:855
+writerfilter/source/rtftok/rtfcontrolwords.hxx:852
enum writerfilter::rtftok::RTFKeyword RTF_LANGFENP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:856
+writerfilter/source/rtftok/rtfcontrolwords.hxx:853
enum writerfilter::rtftok::RTFKeyword RTF_LANGNP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:857
+writerfilter/source/rtftok/rtfcontrolwords.hxx:854
enum writerfilter::rtftok::RTFKeyword RTF_LASTROW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:858
+writerfilter/source/rtftok/rtfcontrolwords.hxx:855
enum writerfilter::rtftok::RTFKeyword RTF_LATENTSTYLES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:859
+writerfilter/source/rtftok/rtfcontrolwords.hxx:856
enum writerfilter::rtftok::RTFKeyword RTF_LBR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:860
+writerfilter/source/rtftok/rtfcontrolwords.hxx:857
enum writerfilter::rtftok::RTFKeyword RTF_LCHARS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:862
+writerfilter/source/rtftok/rtfcontrolwords.hxx:859
enum writerfilter::rtftok::RTFKeyword RTF_LEVEL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:864
+writerfilter/source/rtftok/rtfcontrolwords.hxx:861
enum writerfilter::rtftok::RTFKeyword RTF_LEVELINDENT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:866
+writerfilter/source/rtftok/rtfcontrolwords.hxx:863
enum writerfilter::rtftok::RTFKeyword RTF_LEVELJCN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:867
+writerfilter/source/rtftok/rtfcontrolwords.hxx:864
enum writerfilter::rtftok::RTFKeyword RTF_LEVELLEGAL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:869
+writerfilter/source/rtftok/rtfcontrolwords.hxx:866
enum writerfilter::rtftok::RTFKeyword RTF_LEVELNFCN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:870
+writerfilter/source/rtftok/rtfcontrolwords.hxx:867
enum writerfilter::rtftok::RTFKeyword RTF_LEVELNORESTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:872
+writerfilter/source/rtftok/rtfcontrolwords.hxx:869
enum writerfilter::rtftok::RTFKeyword RTF_LEVELOLD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:874
+writerfilter/source/rtftok/rtfcontrolwords.hxx:871
enum writerfilter::rtftok::RTFKeyword RTF_LEVELPICTURENOSIZE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:875
+writerfilter/source/rtftok/rtfcontrolwords.hxx:872
enum writerfilter::rtftok::RTFKeyword RTF_LEVELPREV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:876
+writerfilter/source/rtftok/rtfcontrolwords.hxx:873
enum writerfilter::rtftok::RTFKeyword RTF_LEVELPREVSPACE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:877
+writerfilter/source/rtftok/rtfcontrolwords.hxx:874
enum writerfilter::rtftok::RTFKeyword RTF_LEVELSPACE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:879
+writerfilter/source/rtftok/rtfcontrolwords.hxx:876
enum writerfilter::rtftok::RTFKeyword RTF_LEVELTEMPLATEID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:888
+writerfilter/source/rtftok/rtfcontrolwords.hxx:885
enum writerfilter::rtftok::RTFKeyword RTF_LINERESTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:889
+writerfilter/source/rtftok/rtfcontrolwords.hxx:886
enum writerfilter::rtftok::RTFKeyword RTF_LINESTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:892
+writerfilter/source/rtftok/rtfcontrolwords.hxx:889
enum writerfilter::rtftok::RTFKeyword RTF_LINKSELF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:894
+writerfilter/source/rtftok/rtfcontrolwords.hxx:891
enum writerfilter::rtftok::RTFKeyword RTF_LINKVAL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:896
+writerfilter/source/rtftok/rtfcontrolwords.hxx:893
enum writerfilter::rtftok::RTFKeyword RTF_LISA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:897
+writerfilter/source/rtftok/rtfcontrolwords.hxx:894
enum writerfilter::rtftok::RTFKeyword RTF_LISB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:899
+writerfilter/source/rtftok/rtfcontrolwords.hxx:896
enum writerfilter::rtftok::RTFKeyword RTF_LISTHYBRID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:905
+writerfilter/source/rtftok/rtfcontrolwords.hxx:902
enum writerfilter::rtftok::RTFKeyword RTF_LISTOVERRIDEFORMAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:906
+writerfilter/source/rtftok/rtfcontrolwords.hxx:903
enum writerfilter::rtftok::RTFKeyword RTF_LISTOVERRIDESTARTAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:909
+writerfilter/source/rtftok/rtfcontrolwords.hxx:906
enum writerfilter::rtftok::RTFKeyword RTF_LISTRESTARTHDN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:910
+writerfilter/source/rtftok/rtfcontrolwords.hxx:907
enum writerfilter::rtftok::RTFKeyword RTF_LISTSIMPLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:911
+writerfilter/source/rtftok/rtfcontrolwords.hxx:908
enum writerfilter::rtftok::RTFKeyword RTF_LISTSTYLEID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:912
+writerfilter/source/rtftok/rtfcontrolwords.hxx:909
enum writerfilter::rtftok::RTFKeyword RTF_LISTSTYLENAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:916
+writerfilter/source/rtftok/rtfcontrolwords.hxx:913
enum writerfilter::rtftok::RTFKeyword RTF_LNBRKRULE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:918
+writerfilter/source/rtftok/rtfcontrolwords.hxx:915
enum writerfilter::rtftok::RTFKeyword RTF_LNONGRID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:922
+writerfilter/source/rtftok/rtfcontrolwords.hxx:919
enum writerfilter::rtftok::RTFKeyword RTF_LSDLOCKED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:923
+writerfilter/source/rtftok/rtfcontrolwords.hxx:920
enum writerfilter::rtftok::RTFKeyword RTF_LSDLOCKEDDEF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:924
+writerfilter/source/rtftok/rtfcontrolwords.hxx:921
enum writerfilter::rtftok::RTFKeyword RTF_LSDLOCKEDEXCEPT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:925
+writerfilter/source/rtftok/rtfcontrolwords.hxx:922
enum writerfilter::rtftok::RTFKeyword RTF_LSDPRIORITY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:926
+writerfilter/source/rtftok/rtfcontrolwords.hxx:923
enum writerfilter::rtftok::RTFKeyword RTF_LSDPRIORITYDEF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:927
+writerfilter/source/rtftok/rtfcontrolwords.hxx:924
enum writerfilter::rtftok::RTFKeyword RTF_LSDQFORMAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:928
+writerfilter/source/rtftok/rtfcontrolwords.hxx:925
enum writerfilter::rtftok::RTFKeyword RTF_LSDQFORMATDEF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:929
+writerfilter/source/rtftok/rtfcontrolwords.hxx:926
enum writerfilter::rtftok::RTFKeyword RTF_LSDSEMIHIDDEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:930
+writerfilter/source/rtftok/rtfcontrolwords.hxx:927
enum writerfilter::rtftok::RTFKeyword RTF_LSDSEMIHIDDENDEF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:931
+writerfilter/source/rtftok/rtfcontrolwords.hxx:928
enum writerfilter::rtftok::RTFKeyword RTF_LSDSTIMAX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:932
+writerfilter/source/rtftok/rtfcontrolwords.hxx:929
enum writerfilter::rtftok::RTFKeyword RTF_LSDUNHIDEUSED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:933
+writerfilter/source/rtftok/rtfcontrolwords.hxx:930
enum writerfilter::rtftok::RTFKeyword RTF_LSDUNHIDEUSEDDEF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:935
+writerfilter/source/rtftok/rtfcontrolwords.hxx:932
enum writerfilter::rtftok::RTFKeyword RTF_LTRDOC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:936
+writerfilter/source/rtftok/rtfcontrolwords.hxx:933
enum writerfilter::rtftok::RTFKeyword RTF_LTRMARK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:940
+writerfilter/source/rtftok/rtfcontrolwords.hxx:937
enum writerfilter::rtftok::RTFKeyword RTF_LVLTENTATIVE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:941
+writerfilter/source/rtftok/rtfcontrolwords.hxx:938
enum writerfilter::rtftok::RTFKeyword RTF_LYTCALCTBLWD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:942
+writerfilter/source/rtftok/rtfcontrolwords.hxx:939
enum writerfilter::rtftok::RTFKeyword RTF_LYTEXCTTP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:943
+writerfilter/source/rtftok/rtfcontrolwords.hxx:940
enum writerfilter::rtftok::RTFKeyword RTF_LYTPRTMET
-writerfilter/source/rtftok/rtfcontrolwords.hxx:944
+writerfilter/source/rtftok/rtfcontrolwords.hxx:941
enum writerfilter::rtftok::RTFKeyword RTF_LYTTBLRTGR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:946
+writerfilter/source/rtftok/rtfcontrolwords.hxx:943
enum writerfilter::rtftok::RTFKeyword RTF_MACC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:947
+writerfilter/source/rtftok/rtfcontrolwords.hxx:944
enum writerfilter::rtftok::RTFKeyword RTF_MACCPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:948
+writerfilter/source/rtftok/rtfcontrolwords.hxx:945
enum writerfilter::rtftok::RTFKeyword RTF_MACPICT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:949
+writerfilter/source/rtftok/rtfcontrolwords.hxx:946
enum writerfilter::rtftok::RTFKeyword RTF_MAILMERGE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:950
+writerfilter/source/rtftok/rtfcontrolwords.hxx:947
enum writerfilter::rtftok::RTFKeyword RTF_MAKEBACKUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:951
+writerfilter/source/rtftok/rtfcontrolwords.hxx:948
enum writerfilter::rtftok::RTFKeyword RTF_MALN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:952
+writerfilter/source/rtftok/rtfcontrolwords.hxx:949
enum writerfilter::rtftok::RTFKeyword RTF_MALNSCR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:953
+writerfilter/source/rtftok/rtfcontrolwords.hxx:950
enum writerfilter::rtftok::RTFKeyword RTF_MANAGER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:959
+writerfilter/source/rtftok/rtfcontrolwords.hxx:956
enum writerfilter::rtftok::RTFKeyword RTF_MARGMIRSXN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:960
+writerfilter/source/rtftok/rtfcontrolwords.hxx:957
enum writerfilter::rtftok::RTFKeyword RTF_MARGPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:963
+writerfilter/source/rtftok/rtfcontrolwords.hxx:960
enum writerfilter::rtftok::RTFKeyword RTF_MARGSZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:966
+writerfilter/source/rtftok/rtfcontrolwords.hxx:963
enum writerfilter::rtftok::RTFKeyword RTF_MBAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:967
+writerfilter/source/rtftok/rtfcontrolwords.hxx:964
enum writerfilter::rtftok::RTFKeyword RTF_MBARPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:968
+writerfilter/source/rtftok/rtfcontrolwords.hxx:965
enum writerfilter::rtftok::RTFKeyword RTF_MBASEJC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:970
+writerfilter/source/rtftok/rtfcontrolwords.hxx:967
enum writerfilter::rtftok::RTFKeyword RTF_MBORDERBOX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:971
+writerfilter/source/rtftok/rtfcontrolwords.hxx:968
enum writerfilter::rtftok::RTFKeyword RTF_MBORDERBOXPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:972
+writerfilter/source/rtftok/rtfcontrolwords.hxx:969
enum writerfilter::rtftok::RTFKeyword RTF_MBOX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:973
+writerfilter/source/rtftok/rtfcontrolwords.hxx:970
enum writerfilter::rtftok::RTFKeyword RTF_MBOXPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:974
+writerfilter/source/rtftok/rtfcontrolwords.hxx:971
enum writerfilter::rtftok::RTFKeyword RTF_MBRK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:975
+writerfilter/source/rtftok/rtfcontrolwords.hxx:972
enum writerfilter::rtftok::RTFKeyword RTF_MBRKBIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:976
+writerfilter/source/rtftok/rtfcontrolwords.hxx:973
enum writerfilter::rtftok::RTFKeyword RTF_MBRKBINSUB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:977
+writerfilter/source/rtftok/rtfcontrolwords.hxx:974
enum writerfilter::rtftok::RTFKeyword RTF_MCGP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:978
+writerfilter/source/rtftok/rtfcontrolwords.hxx:975
enum writerfilter::rtftok::RTFKeyword RTF_MCGPRULE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:980
+writerfilter/source/rtftok/rtfcontrolwords.hxx:977
enum writerfilter::rtftok::RTFKeyword RTF_MCOUNT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:981
+writerfilter/source/rtftok/rtfcontrolwords.hxx:978
enum writerfilter::rtftok::RTFKeyword RTF_MCSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:982
+writerfilter/source/rtftok/rtfcontrolwords.hxx:979
enum writerfilter::rtftok::RTFKeyword RTF_MCTRLPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:983
+writerfilter/source/rtftok/rtfcontrolwords.hxx:980
enum writerfilter::rtftok::RTFKeyword RTF_MD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:984
+writerfilter/source/rtftok/rtfcontrolwords.hxx:981
enum writerfilter::rtftok::RTFKeyword RTF_MDEFJC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:985
+writerfilter/source/rtftok/rtfcontrolwords.hxx:982
enum writerfilter::rtftok::RTFKeyword RTF_MDEG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:987
+writerfilter/source/rtftok/rtfcontrolwords.hxx:984
enum writerfilter::rtftok::RTFKeyword RTF_MDEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:988
+writerfilter/source/rtftok/rtfcontrolwords.hxx:985
enum writerfilter::rtftok::RTFKeyword RTF_MDIFF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:989
+writerfilter/source/rtftok/rtfcontrolwords.hxx:986
enum writerfilter::rtftok::RTFKeyword RTF_MDIFFSTY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:990
+writerfilter/source/rtftok/rtfcontrolwords.hxx:987
enum writerfilter::rtftok::RTFKeyword RTF_MDISPDEF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:991
+writerfilter/source/rtftok/rtfcontrolwords.hxx:988
enum writerfilter::rtftok::RTFKeyword RTF_MDPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:992
+writerfilter/source/rtftok/rtfcontrolwords.hxx:989
enum writerfilter::rtftok::RTFKeyword RTF_ME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:994
+writerfilter/source/rtftok/rtfcontrolwords.hxx:991
enum writerfilter::rtftok::RTFKeyword RTF_MEQARR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:995
+writerfilter/source/rtftok/rtfcontrolwords.hxx:992
enum writerfilter::rtftok::RTFKeyword RTF_MEQARRPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:996
+writerfilter/source/rtftok/rtfcontrolwords.hxx:993
enum writerfilter::rtftok::RTFKeyword RTF_MF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:997
+writerfilter/source/rtftok/rtfcontrolwords.hxx:994
enum writerfilter::rtftok::RTFKeyword RTF_MFNAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:998
+writerfilter/source/rtftok/rtfcontrolwords.hxx:995
enum writerfilter::rtftok::RTFKeyword RTF_MFPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:999
+writerfilter/source/rtftok/rtfcontrolwords.hxx:996
enum writerfilter::rtftok::RTFKeyword RTF_MFUNC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1000
+writerfilter/source/rtftok/rtfcontrolwords.hxx:997
enum writerfilter::rtftok::RTFKeyword RTF_MFUNCPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1001
+writerfilter/source/rtftok/rtfcontrolwords.hxx:998
enum writerfilter::rtftok::RTFKeyword RTF_MGROUPCHR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1002
+writerfilter/source/rtftok/rtfcontrolwords.hxx:999
enum writerfilter::rtftok::RTFKeyword RTF_MGROUPCHRPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1008
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1005
enum writerfilter::rtftok::RTFKeyword RTF_MHTMLTAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1010
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1007
enum writerfilter::rtftok::RTFKeyword RTF_MINTERSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1011
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1008
enum writerfilter::rtftok::RTFKeyword RTF_MINTLIM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1012
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1009
enum writerfilter::rtftok::RTFKeyword RTF_MINTRASP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1013
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1010
enum writerfilter::rtftok::RTFKeyword RTF_MJC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1014
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1011
enum writerfilter::rtftok::RTFKeyword RTF_MLIM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1015
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1012
enum writerfilter::rtftok::RTFKeyword RTF_MLIMLOC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1016
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1013
enum writerfilter::rtftok::RTFKeyword RTF_MLIMLOW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1017
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1014
enum writerfilter::rtftok::RTFKeyword RTF_MLIMLOWPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1018
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1015
enum writerfilter::rtftok::RTFKeyword RTF_MLIMUPP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1019
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1016
enum writerfilter::rtftok::RTFKeyword RTF_MLIMUPPPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1020
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1017
enum writerfilter::rtftok::RTFKeyword RTF_MLIT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1021
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1018
enum writerfilter::rtftok::RTFKeyword RTF_MLMARGIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1022
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1019
enum writerfilter::rtftok::RTFKeyword RTF_MM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1023
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1020
enum writerfilter::rtftok::RTFKeyword RTF_MMADDFIELDNAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1025
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1022
enum writerfilter::rtftok::RTFKeyword RTF_MMATHFONT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1027
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1024
enum writerfilter::rtftok::RTFKeyword RTF_MMATHPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1028
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1025
enum writerfilter::rtftok::RTFKeyword RTF_MMATTACH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1029
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1026
enum writerfilter::rtftok::RTFKeyword RTF_MMAXDIST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1030
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1027
enum writerfilter::rtftok::RTFKeyword RTF_MMBLANKLINES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1031
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1028
enum writerfilter::rtftok::RTFKeyword RTF_MMC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1032
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1029
enum writerfilter::rtftok::RTFKeyword RTF_MMCJC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1033
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1030
enum writerfilter::rtftok::RTFKeyword RTF_MMCONNECTSTR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1034
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1031
enum writerfilter::rtftok::RTFKeyword RTF_MMCONNECTSTRDATA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1035
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1032
enum writerfilter::rtftok::RTFKeyword RTF_MMCPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1036
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1033
enum writerfilter::rtftok::RTFKeyword RTF_MMCS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1037
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1034
enum writerfilter::rtftok::RTFKeyword RTF_MMDATASOURCE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1038
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1035
enum writerfilter::rtftok::RTFKeyword RTF_MMDATATYPEACCESS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1039
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1036
enum writerfilter::rtftok::RTFKeyword RTF_MMDATATYPEEXCEL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1040
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1037
enum writerfilter::rtftok::RTFKeyword RTF_MMDATATYPEFILE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1041
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1038
enum writerfilter::rtftok::RTFKeyword RTF_MMDATATYPEODBC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1042
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1039
enum writerfilter::rtftok::RTFKeyword RTF_MMDATATYPEODSO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1043
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1040
enum writerfilter::rtftok::RTFKeyword RTF_MMDATATYPEQT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1044
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1041
enum writerfilter::rtftok::RTFKeyword RTF_MMDEFAULTSQL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1045
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1042
enum writerfilter::rtftok::RTFKeyword RTF_MMDESTEMAIL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1046
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1043
enum writerfilter::rtftok::RTFKeyword RTF_MMDESTFAX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1047
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1044
enum writerfilter::rtftok::RTFKeyword RTF_MMDESTNEWDOC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1048
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1045
enum writerfilter::rtftok::RTFKeyword RTF_MMDESTPRINTER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1049
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1046
enum writerfilter::rtftok::RTFKeyword RTF_MMERRORS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1050
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1047
enum writerfilter::rtftok::RTFKeyword RTF_MMFTTYPEADDRESS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1051
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1048
enum writerfilter::rtftok::RTFKeyword RTF_MMFTTYPEBARCODE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1052
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1049
enum writerfilter::rtftok::RTFKeyword RTF_MMFTTYPEDBCOLUMN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1053
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1050
enum writerfilter::rtftok::RTFKeyword RTF_MMFTTYPEMAPPED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1054
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1051
enum writerfilter::rtftok::RTFKeyword RTF_MMFTTYPENULL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1055
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1052
enum writerfilter::rtftok::RTFKeyword RTF_MMFTTYPESALUTATION
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1056
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1053
enum writerfilter::rtftok::RTFKeyword RTF_MMHEADERSOURCE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1057
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1054
enum writerfilter::rtftok::RTFKeyword RTF_MMJDSOTYPE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1058
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1055
enum writerfilter::rtftok::RTFKeyword RTF_MMLINKTOQUERY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1059
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1056
enum writerfilter::rtftok::RTFKeyword RTF_MMMAILSUBJECT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1060
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1057
enum writerfilter::rtftok::RTFKeyword RTF_MMMAINTYPECATALOG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1061
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1058
enum writerfilter::rtftok::RTFKeyword RTF_MMMAINTYPEEMAIL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1062
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1059
enum writerfilter::rtftok::RTFKeyword RTF_MMMAINTYPEENVELOPES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1063
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1060
enum writerfilter::rtftok::RTFKeyword RTF_MMMAINTYPEFAX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1064
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1061
enum writerfilter::rtftok::RTFKeyword RTF_MMMAINTYPELABELS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1065
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1062
enum writerfilter::rtftok::RTFKeyword RTF_MMMAINTYPELETTERS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1066
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1063
enum writerfilter::rtftok::RTFKeyword RTF_MMODSO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1067
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1064
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOACTIVE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1068
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1065
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOCOLDELIM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1069
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1066
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOCOLUMN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1070
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1067
enum writerfilter::rtftok::RTFKeyword RTF_MMODSODYNADDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1071
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1068
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOFHDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1072
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1069
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOFILTER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1073
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1070
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOFLDMPDATA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1074
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1071
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOFMCOLUMN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1075
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1072
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOHASH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1076
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1073
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOLID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1077
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1074
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOMAPPEDNAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1078
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1075
enum writerfilter::rtftok::RTFKeyword RTF_MMODSONAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1079
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1076
enum writerfilter::rtftok::RTFKeyword RTF_MMODSORECIPDATA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1080
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1077
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOSORT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1081
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1078
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOSRC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1082
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1079
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOTABLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1083
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1080
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOUDL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1084
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1081
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOUDLDATA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1085
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1082
enum writerfilter::rtftok::RTFKeyword RTF_MMODSOUNIQUETAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1086
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1083
enum writerfilter::rtftok::RTFKeyword RTF_MMPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1087
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1084
enum writerfilter::rtftok::RTFKeyword RTF_MMQUERY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1088
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1085
enum writerfilter::rtftok::RTFKeyword RTF_MMR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1089
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1086
enum writerfilter::rtftok::RTFKeyword RTF_MMRECCUR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1090
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1087
enum writerfilter::rtftok::RTFKeyword RTF_MMSHOWDATA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1091
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1088
enum writerfilter::rtftok::RTFKeyword RTF_MNARY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1092
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1089
enum writerfilter::rtftok::RTFKeyword RTF_MNARYLIM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1093
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1090
enum writerfilter::rtftok::RTFKeyword RTF_MNARYPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1094
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1091
enum writerfilter::rtftok::RTFKeyword RTF_MNOBREAK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1096
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1093
enum writerfilter::rtftok::RTFKeyword RTF_MNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1098
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1095
enum writerfilter::rtftok::RTFKeyword RTF_MOBJDIST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1099
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1096
enum writerfilter::rtftok::RTFKeyword RTF_MOMATH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1101
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1098
enum writerfilter::rtftok::RTFKeyword RTF_MOMATHPARAPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1102
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1099
enum writerfilter::rtftok::RTFKeyword RTF_MOPEMU
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1103
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1100
enum writerfilter::rtftok::RTFKeyword RTF_MPHANT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1104
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1101
enum writerfilter::rtftok::RTFKeyword RTF_MPHANTPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1105
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1102
enum writerfilter::rtftok::RTFKeyword RTF_MPLCHIDE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1107
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1104
enum writerfilter::rtftok::RTFKeyword RTF_MPOSTSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1108
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1105
enum writerfilter::rtftok::RTFKeyword RTF_MPRESP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1110
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1107
enum writerfilter::rtftok::RTFKeyword RTF_MRAD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1111
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1108
enum writerfilter::rtftok::RTFKeyword RTF_MRADPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1112
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1109
enum writerfilter::rtftok::RTFKeyword RTF_MRMARGIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1113
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1110
enum writerfilter::rtftok::RTFKeyword RTF_MRPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1114
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1111
enum writerfilter::rtftok::RTFKeyword RTF_MRSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1115
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1112
enum writerfilter::rtftok::RTFKeyword RTF_MRSPRULE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1116
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1113
enum writerfilter::rtftok::RTFKeyword RTF_MSCR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1118
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1115
enum writerfilter::rtftok::RTFKeyword RTF_MSHOW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1119
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1116
enum writerfilter::rtftok::RTFKeyword RTF_MSHP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1120
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1117
enum writerfilter::rtftok::RTFKeyword RTF_MSMALLFRAC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1121
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1118
enum writerfilter::rtftok::RTFKeyword RTF_MSMCAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1122
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1119
enum writerfilter::rtftok::RTFKeyword RTF_MSPRE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1123
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1120
enum writerfilter::rtftok::RTFKeyword RTF_MSPREPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1124
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1121
enum writerfilter::rtftok::RTFKeyword RTF_MSSUB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1125
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1122
enum writerfilter::rtftok::RTFKeyword RTF_MSSUBPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1126
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1123
enum writerfilter::rtftok::RTFKeyword RTF_MSSUBSUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1127
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1124
enum writerfilter::rtftok::RTFKeyword RTF_MSSUBSUPPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1128
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1125
enum writerfilter::rtftok::RTFKeyword RTF_MSSUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1129
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1126
enum writerfilter::rtftok::RTFKeyword RTF_MSSUPPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1130
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1127
enum writerfilter::rtftok::RTFKeyword RTF_MSTRIKEBLTR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1132
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1129
enum writerfilter::rtftok::RTFKeyword RTF_MSTRIKETLBR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1133
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1130
enum writerfilter::rtftok::RTFKeyword RTF_MSTRIKEV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1134
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1131
enum writerfilter::rtftok::RTFKeyword RTF_MSTY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1135
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1132
enum writerfilter::rtftok::RTFKeyword RTF_MSUB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1137
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1134
enum writerfilter::rtftok::RTFKeyword RTF_MSUP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1139
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1136
enum writerfilter::rtftok::RTFKeyword RTF_MTRANSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1141
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1138
enum writerfilter::rtftok::RTFKeyword RTF_MUSER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1142
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1139
enum writerfilter::rtftok::RTFKeyword RTF_MVAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1143
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1140
enum writerfilter::rtftok::RTFKeyword RTF_MVDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1145
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1142
enum writerfilter::rtftok::RTFKeyword RTF_MVF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1146
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1143
enum writerfilter::rtftok::RTFKeyword RTF_MVFMF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1147
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1144
enum writerfilter::rtftok::RTFKeyword RTF_MVFML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1148
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1145
enum writerfilter::rtftok::RTFKeyword RTF_MVT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1149
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1146
enum writerfilter::rtftok::RTFKeyword RTF_MVTOF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1150
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1147
enum writerfilter::rtftok::RTFKeyword RTF_MVTOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1151
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1148
enum writerfilter::rtftok::RTFKeyword RTF_MWRAPINDENT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1152
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1149
enum writerfilter::rtftok::RTFKeyword RTF_MWRAPRIGHT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1153
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1150
enum writerfilter::rtftok::RTFKeyword RTF_MZEROASC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1154
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1151
enum writerfilter::rtftok::RTFKeyword RTF_MZERODESC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1155
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1152
enum writerfilter::rtftok::RTFKeyword RTF_MZEROWID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1159
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1156
enum writerfilter::rtftok::RTFKeyword RTF_NEWTBLSTYRULS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1160
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1157
enum writerfilter::rtftok::RTFKeyword RTF_NEXTFILE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1161
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1158
enum writerfilter::rtftok::RTFKeyword RTF_NOAFCNSTTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1162
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1159
enum writerfilter::rtftok::RTFKeyword RTF_NOBRKWRPTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1164
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1161
enum writerfilter::rtftok::RTFKeyword RTF_NOCOMPATOPTIONS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1165
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1162
enum writerfilter::rtftok::RTFKeyword RTF_NOCWRAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1166
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1163
enum writerfilter::rtftok::RTFKeyword RTF_NOCXSPTABLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1167
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1164
enum writerfilter::rtftok::RTFKeyword RTF_NOEXTRASPRL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1170
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1167
enum writerfilter::rtftok::RTFKeyword RTF_NOFEATURETHROTTLE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1173
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1170
enum writerfilter::rtftok::RTFKeyword RTF_NOGROWAUTOFIT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1174
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1171
enum writerfilter::rtftok::RTFKeyword RTF_NOINDNMBRTS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1175
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1172
enum writerfilter::rtftok::RTFKeyword RTF_NOJKERNPUNCT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1176
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1173
enum writerfilter::rtftok::RTFKeyword RTF_NOLEAD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1178
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1175
enum writerfilter::rtftok::RTFKeyword RTF_NOLNHTADJTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1181
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1178
enum writerfilter::rtftok::RTFKeyword RTF_NOOVERFLOW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1182
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1179
enum writerfilter::rtftok::RTFKeyword RTF_NOPROOF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1183
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1180
enum writerfilter::rtftok::RTFKeyword RTF_NOQFPROMOTE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1184
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1181
enum writerfilter::rtftok::RTFKeyword RTF_NOSECTEXPAND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1185
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1182
enum writerfilter::rtftok::RTFKeyword RTF_NOSNAPLINEGRID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1186
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1183
enum writerfilter::rtftok::RTFKeyword RTF_NOSPACEFORUL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1188
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1185
enum writerfilter::rtftok::RTFKeyword RTF_NOTABIND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1189
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1186
enum writerfilter::rtftok::RTFKeyword RTF_NOTBRKCNSTFRCTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1190
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1187
enum writerfilter::rtftok::RTFKeyword RTF_NOTCVASP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1191
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1188
enum writerfilter::rtftok::RTFKeyword RTF_NOTVATXBX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1192
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1189
enum writerfilter::rtftok::RTFKeyword RTF_NOUICOMPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1193
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1190
enum writerfilter::rtftok::RTFKeyword RTF_NOULTRLSPC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1196
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1193
enum writerfilter::rtftok::RTFKeyword RTF_NOWWRAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1197
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1194
enum writerfilter::rtftok::RTFKeyword RTF_NOXLATTOYEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1198
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1195
enum writerfilter::rtftok::RTFKeyword RTF_OBJALIAS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1199
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1196
enum writerfilter::rtftok::RTFKeyword RTF_OBJALIGN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1200
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1197
enum writerfilter::rtftok::RTFKeyword RTF_OBJATTPH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1201
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1198
enum writerfilter::rtftok::RTFKeyword RTF_OBJAUTLINK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1203
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1200
enum writerfilter::rtftok::RTFKeyword RTF_OBJCROPB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1204
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1201
enum writerfilter::rtftok::RTFKeyword RTF_OBJCROPL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1205
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1202
enum writerfilter::rtftok::RTFKeyword RTF_OBJCROPR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1206
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1203
enum writerfilter::rtftok::RTFKeyword RTF_OBJCROPT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1209
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1206
enum writerfilter::rtftok::RTFKeyword RTF_OBJEMB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1210
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1207
enum writerfilter::rtftok::RTFKeyword RTF_OBJH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1211
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1208
enum writerfilter::rtftok::RTFKeyword RTF_OBJHTML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1212
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1209
enum writerfilter::rtftok::RTFKeyword RTF_OBJICEMB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1213
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1210
enum writerfilter::rtftok::RTFKeyword RTF_OBJLINK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1214
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1211
enum writerfilter::rtftok::RTFKeyword RTF_OBJLOCK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1215
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1212
enum writerfilter::rtftok::RTFKeyword RTF_OBJNAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1216
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1213
enum writerfilter::rtftok::RTFKeyword RTF_OBJOCX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1217
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1214
enum writerfilter::rtftok::RTFKeyword RTF_OBJPUB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1218
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1215
enum writerfilter::rtftok::RTFKeyword RTF_OBJSCALEX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1219
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1216
enum writerfilter::rtftok::RTFKeyword RTF_OBJSCALEY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1220
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1217
enum writerfilter::rtftok::RTFKeyword RTF_OBJSECT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1221
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1218
enum writerfilter::rtftok::RTFKeyword RTF_OBJSETSIZE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1222
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1219
enum writerfilter::rtftok::RTFKeyword RTF_OBJSUB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1223
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1220
enum writerfilter::rtftok::RTFKeyword RTF_OBJTIME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1224
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1221
enum writerfilter::rtftok::RTFKeyword RTF_OBJTRANSY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1225
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1222
enum writerfilter::rtftok::RTFKeyword RTF_OBJUPDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1226
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1223
enum writerfilter::rtftok::RTFKeyword RTF_OBJW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1227
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1224
enum writerfilter::rtftok::RTFKeyword RTF_OGUTTER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1228
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1225
enum writerfilter::rtftok::RTFKeyword RTF_OLDAS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1229
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1226
enum writerfilter::rtftok::RTFKeyword RTF_OLDCPROPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1230
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1227
enum writerfilter::rtftok::RTFKeyword RTF_OLDLINEWRAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1231
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1228
enum writerfilter::rtftok::RTFKeyword RTF_OLDPPROPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1232
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1229
enum writerfilter::rtftok::RTFKeyword RTF_OLDSPROPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1233
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1230
enum writerfilter::rtftok::RTFKeyword RTF_OLDTPROPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1234
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1231
enum writerfilter::rtftok::RTFKeyword RTF_OLECLSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1236
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1233
enum writerfilter::rtftok::RTFKeyword RTF_OTBLRUL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1239
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1236
enum writerfilter::rtftok::RTFKeyword RTF_OVERLAY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1242
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1239
enum writerfilter::rtftok::RTFKeyword RTF_PANOSE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1246
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1243
enum writerfilter::rtftok::RTFKeyword RTF_PARARSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1248
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1245
enum writerfilter::rtftok::RTFKeyword RTF_PASSWORD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1249
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1246
enum writerfilter::rtftok::RTFKeyword RTF_PASSWORDHASH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1253
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1250
enum writerfilter::rtftok::RTFKeyword RTF_PGBRDRFOOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1254
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1251
enum writerfilter::rtftok::RTFKeyword RTF_PGBRDRHEAD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1256
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1253
enum writerfilter::rtftok::RTFKeyword RTF_PGBRDROPT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1258
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1255
enum writerfilter::rtftok::RTFKeyword RTF_PGBRDRSNAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1263
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1260
enum writerfilter::rtftok::RTFKeyword RTF_PGNCHOSUNG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1264
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1261
enum writerfilter::rtftok::RTFKeyword RTF_PGNCNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1265
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1262
enum writerfilter::rtftok::RTFKeyword RTF_PGNCONT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1266
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1263
enum writerfilter::rtftok::RTFKeyword RTF_PGNDBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1267
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1264
enum writerfilter::rtftok::RTFKeyword RTF_PGNDBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1268
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1265
enum writerfilter::rtftok::RTFKeyword RTF_PGNDBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1269
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1266
enum writerfilter::rtftok::RTFKeyword RTF_PGNDBNUMT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1271
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1268
enum writerfilter::rtftok::RTFKeyword RTF_PGNDECD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1272
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1269
enum writerfilter::rtftok::RTFKeyword RTF_PGNGANADA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1273
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1270
enum writerfilter::rtftok::RTFKeyword RTF_PGNGBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1274
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1271
enum writerfilter::rtftok::RTFKeyword RTF_PGNGBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1275
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1272
enum writerfilter::rtftok::RTFKeyword RTF_PGNGBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1276
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1273
enum writerfilter::rtftok::RTFKeyword RTF_PGNGBNUML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1277
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1274
enum writerfilter::rtftok::RTFKeyword RTF_PGNHINDIA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1278
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1275
enum writerfilter::rtftok::RTFKeyword RTF_PGNHINDIB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1279
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1276
enum writerfilter::rtftok::RTFKeyword RTF_PGNHINDIC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1280
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1277
enum writerfilter::rtftok::RTFKeyword RTF_PGNHINDID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1281
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1278
enum writerfilter::rtftok::RTFKeyword RTF_PGNHN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1282
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1279
enum writerfilter::rtftok::RTFKeyword RTF_PGNHNSC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1283
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1280
enum writerfilter::rtftok::RTFKeyword RTF_PGNHNSH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1284
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1281
enum writerfilter::rtftok::RTFKeyword RTF_PGNHNSM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1285
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1282
enum writerfilter::rtftok::RTFKeyword RTF_PGNHNSN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1286
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1283
enum writerfilter::rtftok::RTFKeyword RTF_PGNHNSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1287
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1284
enum writerfilter::rtftok::RTFKeyword RTF_PGNID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1291
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1288
enum writerfilter::rtftok::RTFKeyword RTF_PGNSTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1292
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1289
enum writerfilter::rtftok::RTFKeyword RTF_PGNSTARTS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1293
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1290
enum writerfilter::rtftok::RTFKeyword RTF_PGNTHAIA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1294
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1291
enum writerfilter::rtftok::RTFKeyword RTF_PGNTHAIB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1295
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1292
enum writerfilter::rtftok::RTFKeyword RTF_PGNTHAIC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1298
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1295
enum writerfilter::rtftok::RTFKeyword RTF_PGNVIETA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1299
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1296
enum writerfilter::rtftok::RTFKeyword RTF_PGNX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1300
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1297
enum writerfilter::rtftok::RTFKeyword RTF_PGNY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1301
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1298
enum writerfilter::rtftok::RTFKeyword RTF_PGNZODIAC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1302
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1299
enum writerfilter::rtftok::RTFKeyword RTF_PGNZODIACD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1303
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1300
enum writerfilter::rtftok::RTFKeyword RTF_PGNZODIACL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1304
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1301
enum writerfilter::rtftok::RTFKeyword RTF_PGP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1305
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1302
enum writerfilter::rtftok::RTFKeyword RTF_PGPTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1310
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1307
enum writerfilter::rtftok::RTFKeyword RTF_PICBMP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1311
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1308
enum writerfilter::rtftok::RTFKeyword RTF_PICBPP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1319
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1316
enum writerfilter::rtftok::RTFKeyword RTF_PICSCALED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1325
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1322
enum writerfilter::rtftok::RTFKeyword RTF_PINDTABQC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1326
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1323
enum writerfilter::rtftok::RTFKeyword RTF_PINDTABQL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1327
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1324
enum writerfilter::rtftok::RTFKeyword RTF_PINDTABQR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1329
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1326
enum writerfilter::rtftok::RTFKeyword RTF_PMARTABQC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1330
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1327
enum writerfilter::rtftok::RTFKeyword RTF_PMARTABQL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1331
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1328
enum writerfilter::rtftok::RTFKeyword RTF_PMARTABQR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1332
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1329
enum writerfilter::rtftok::RTFKeyword RTF_PMMETAFILE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1334
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1331
enum writerfilter::rtftok::RTFKeyword RTF_PNACROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1335
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1332
enum writerfilter::rtftok::RTFKeyword RTF_PNAIU
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1336
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1333
enum writerfilter::rtftok::RTFKeyword RTF_PNAIUD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1337
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1334
enum writerfilter::rtftok::RTFKeyword RTF_PNAIUEO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1338
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1335
enum writerfilter::rtftok::RTFKeyword RTF_PNAIUEOD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1339
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1336
enum writerfilter::rtftok::RTFKeyword RTF_PNB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1340
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1337
enum writerfilter::rtftok::RTFKeyword RTF_PNBIDIA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1341
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1338
enum writerfilter::rtftok::RTFKeyword RTF_PNBIDIB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1342
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1339
enum writerfilter::rtftok::RTFKeyword RTF_PNCAPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1343
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1340
enum writerfilter::rtftok::RTFKeyword RTF_PNCARD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1344
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1341
enum writerfilter::rtftok::RTFKeyword RTF_PNCF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1345
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1342
enum writerfilter::rtftok::RTFKeyword RTF_PNCHOSUNG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1346
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1343
enum writerfilter::rtftok::RTFKeyword RTF_PNCNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1347
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1344
enum writerfilter::rtftok::RTFKeyword RTF_PNDBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1348
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1345
enum writerfilter::rtftok::RTFKeyword RTF_PNDBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1349
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1346
enum writerfilter::rtftok::RTFKeyword RTF_PNDBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1350
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1347
enum writerfilter::rtftok::RTFKeyword RTF_PNDBNUML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1351
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1348
enum writerfilter::rtftok::RTFKeyword RTF_PNDBNUMT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1353
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1350
enum writerfilter::rtftok::RTFKeyword RTF_PNDECD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1355
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1352
enum writerfilter::rtftok::RTFKeyword RTF_PNFS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1356
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1353
enum writerfilter::rtftok::RTFKeyword RTF_PNGANADA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1358
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1355
enum writerfilter::rtftok::RTFKeyword RTF_PNGBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1359
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1356
enum writerfilter::rtftok::RTFKeyword RTF_PNGBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1360
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1357
enum writerfilter::rtftok::RTFKeyword RTF_PNGBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1361
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1358
enum writerfilter::rtftok::RTFKeyword RTF_PNGBNUML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1362
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1359
enum writerfilter::rtftok::RTFKeyword RTF_PNHANG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1363
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1360
enum writerfilter::rtftok::RTFKeyword RTF_PNI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1364
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1361
enum writerfilter::rtftok::RTFKeyword RTF_PNINDENT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1365
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1362
enum writerfilter::rtftok::RTFKeyword RTF_PNIROHA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1366
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1363
enum writerfilter::rtftok::RTFKeyword RTF_PNIROHAD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1367
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1364
enum writerfilter::rtftok::RTFKeyword RTF_PNLCLTR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1368
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1365
enum writerfilter::rtftok::RTFKeyword RTF_PNLCRM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1369
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1366
enum writerfilter::rtftok::RTFKeyword RTF_PNLVL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1372
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1369
enum writerfilter::rtftok::RTFKeyword RTF_PNLVLCONT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1373
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1370
enum writerfilter::rtftok::RTFKeyword RTF_PNNUMONCE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1374
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1371
enum writerfilter::rtftok::RTFKeyword RTF_PNORD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1375
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1372
enum writerfilter::rtftok::RTFKeyword RTF_PNORDT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1376
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1373
enum writerfilter::rtftok::RTFKeyword RTF_PNPREV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1377
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1374
enum writerfilter::rtftok::RTFKeyword RTF_PNQC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1378
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1375
enum writerfilter::rtftok::RTFKeyword RTF_PNQL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1379
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1376
enum writerfilter::rtftok::RTFKeyword RTF_PNQR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1380
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1377
enum writerfilter::rtftok::RTFKeyword RTF_PNRAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1381
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1378
enum writerfilter::rtftok::RTFKeyword RTF_PNRDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1382
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1379
enum writerfilter::rtftok::RTFKeyword RTF_PNRESTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1383
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1380
enum writerfilter::rtftok::RTFKeyword RTF_PNRNFC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1384
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1381
enum writerfilter::rtftok::RTFKeyword RTF_PNRNOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1385
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1382
enum writerfilter::rtftok::RTFKeyword RTF_PNRPNBR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1386
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1383
enum writerfilter::rtftok::RTFKeyword RTF_PNRRGB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1387
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1384
enum writerfilter::rtftok::RTFKeyword RTF_PNRSTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1388
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1385
enum writerfilter::rtftok::RTFKeyword RTF_PNRSTOP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1389
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1386
enum writerfilter::rtftok::RTFKeyword RTF_PNRXST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1390
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1387
enum writerfilter::rtftok::RTFKeyword RTF_PNSCAPS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1391
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1388
enum writerfilter::rtftok::RTFKeyword RTF_PNSECLVL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1392
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1389
enum writerfilter::rtftok::RTFKeyword RTF_PNSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1394
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1391
enum writerfilter::rtftok::RTFKeyword RTF_PNSTRIKE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1398
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1395
enum writerfilter::rtftok::RTFKeyword RTF_PNUCLTR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1399
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1396
enum writerfilter::rtftok::RTFKeyword RTF_PNUCRM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1400
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1397
enum writerfilter::rtftok::RTFKeyword RTF_PNUL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1401
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1398
enum writerfilter::rtftok::RTFKeyword RTF_PNULD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1402
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1399
enum writerfilter::rtftok::RTFKeyword RTF_PNULDASH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1403
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1400
enum writerfilter::rtftok::RTFKeyword RTF_PNULDASHD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1404
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1401
enum writerfilter::rtftok::RTFKeyword RTF_PNULDASHDD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1405
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1402
enum writerfilter::rtftok::RTFKeyword RTF_PNULDB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1406
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1403
enum writerfilter::rtftok::RTFKeyword RTF_PNULHAIR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1408
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1405
enum writerfilter::rtftok::RTFKeyword RTF_PNULTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1409
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1406
enum writerfilter::rtftok::RTFKeyword RTF_PNULW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1410
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1407
enum writerfilter::rtftok::RTFKeyword RTF_PNULWAVE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1411
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1408
enum writerfilter::rtftok::RTFKeyword RTF_PNZODIAC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1412
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1409
enum writerfilter::rtftok::RTFKeyword RTF_PNZODIACD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1413
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1410
enum writerfilter::rtftok::RTFKeyword RTF_PNZODIACL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1414
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1411
enum writerfilter::rtftok::RTFKeyword RTF_POSNEGX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1415
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1412
enum writerfilter::rtftok::RTFKeyword RTF_POSNEGY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1429
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1426
enum writerfilter::rtftok::RTFKeyword RTF_PRAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1430
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1427
enum writerfilter::rtftok::RTFKeyword RTF_PRCOLBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1431
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1428
enum writerfilter::rtftok::RTFKeyword RTF_PRDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1432
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1429
enum writerfilter::rtftok::RTFKeyword RTF_PRINTDATA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1434
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1431
enum writerfilter::rtftok::RTFKeyword RTF_PRIVATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1437
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1434
enum writerfilter::rtftok::RTFKeyword RTF_PROTECT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1438
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1435
enum writerfilter::rtftok::RTFKeyword RTF_PROTEND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1439
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1436
enum writerfilter::rtftok::RTFKeyword RTF_PROTLEVEL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1440
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1437
enum writerfilter::rtftok::RTFKeyword RTF_PROTSTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1441
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1438
enum writerfilter::rtftok::RTFKeyword RTF_PROTUSERTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1442
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1439
enum writerfilter::rtftok::RTFKeyword RTF_PSOVER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1443
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1440
enum writerfilter::rtftok::RTFKeyword RTF_PSZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1444
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1441
enum writerfilter::rtftok::RTFKeyword RTF_PTABLDOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1445
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1442
enum writerfilter::rtftok::RTFKeyword RTF_PTABLMDOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1446
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1443
enum writerfilter::rtftok::RTFKeyword RTF_PTABLMINUS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1448
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1445
enum writerfilter::rtftok::RTFKeyword RTF_PTABLUSCORE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1449
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1446
enum writerfilter::rtftok::RTFKeyword RTF_PUBAUTO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1453
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1450
enum writerfilter::rtftok::RTFKeyword RTF_PWD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1454
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1451
enum writerfilter::rtftok::RTFKeyword RTF_PXE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1458
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1455
enum writerfilter::rtftok::RTFKeyword RTF_QK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1460
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1457
enum writerfilter::rtftok::RTFKeyword RTF_QMSPACE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1462
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1459
enum writerfilter::rtftok::RTFKeyword RTF_QT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1463
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1460
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGDKBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1464
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1461
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1465
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1462
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1466
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1463
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1467
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1464
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGDKCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1468
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1465
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGDKDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1469
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1466
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGDKFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1470
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1467
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGDKHOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1471
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1468
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGDKVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1472
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1469
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1473
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1470
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGHORIZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1474
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1471
enum writerfilter::rtftok::RTFKeyword RTF_RAWCLBGVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1476
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1473
enum writerfilter::rtftok::RTFKeyword RTF_READONLYRECOMMENDED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1477
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1474
enum writerfilter::rtftok::RTFKeyword RTF_READPROT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1479
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1476
enum writerfilter::rtftok::RTFKeyword RTF_RELYONVML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1480
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1477
enum writerfilter::rtftok::RTFKeyword RTF_REMDTTM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1481
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1478
enum writerfilter::rtftok::RTFKeyword RTF_REMPERSONALINFO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1485
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1482
enum writerfilter::rtftok::RTFKeyword RTF_REVBAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1490
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1487
enum writerfilter::rtftok::RTFKeyword RTF_REVPROP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1491
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1488
enum writerfilter::rtftok::RTFKeyword RTF_REVPROT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1498
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1495
enum writerfilter::rtftok::RTFKeyword RTF_RSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1499
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1496
enum writerfilter::rtftok::RTFKeyword RTF_RSIDROOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1500
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1497
enum writerfilter::rtftok::RTFKeyword RTF_RSIDTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1501
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1498
enum writerfilter::rtftok::RTFKeyword RTF_RSLTBMP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1502
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1499
enum writerfilter::rtftok::RTFKeyword RTF_RSLTHTML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1503
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1500
enum writerfilter::rtftok::RTFKeyword RTF_RSLTMERGE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1504
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1501
enum writerfilter::rtftok::RTFKeyword RTF_RSLTPICT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1505
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1502
enum writerfilter::rtftok::RTFKeyword RTF_RSLTRTF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1506
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1503
enum writerfilter::rtftok::RTFKeyword RTF_RSLTTXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1509
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1506
enum writerfilter::rtftok::RTFKeyword RTF_RTLDOC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1510
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1507
enum writerfilter::rtftok::RTFKeyword RTF_RTLGUTTER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1511
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1508
enum writerfilter::rtftok::RTFKeyword RTF_RTLMARK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1515
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1512
enum writerfilter::rtftok::RTFKeyword RTF_RXE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1519
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1516
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNALC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1520
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1517
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1521
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1518
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNAUC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1522
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1519
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNCHI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1523
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1520
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNCHOSUNG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1524
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1521
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNCNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1525
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1522
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNDBAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1526
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1523
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNDBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1527
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1524
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNDBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1528
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1525
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNDBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1529
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1526
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNDBNUMT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1530
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1527
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNGANADA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1531
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1528
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNGBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1532
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1529
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNGBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1533
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1530
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNGBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1534
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1531
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNGBNUML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1535
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1532
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNRLC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1536
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1533
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNRUC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1537
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1534
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNZODIAC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1538
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1535
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNZODIACD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1539
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1536
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNNZODIACL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1540
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1537
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNRESTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1541
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1538
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNRSTCONT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1542
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1539
enum writerfilter::rtftok::RTFKeyword RTF_SAFTNSTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1544
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1541
enum writerfilter::rtftok::RTFKeyword RTF_SAVEINVALIDXML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1545
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1542
enum writerfilter::rtftok::RTFKeyword RTF_SAVEPREVPICT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1554
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1551
enum writerfilter::rtftok::RTFKeyword RTF_SBYS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1556
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1553
enum writerfilter::rtftok::RTFKeyword RTF_SCOMPOSE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1557
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1554
enum writerfilter::rtftok::RTFKeyword RTF_SEC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1560
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1557
enum writerfilter::rtftok::RTFKeyword RTF_SECTDEFAULTCL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1561
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1558
enum writerfilter::rtftok::RTFKeyword RTF_SECTEXPAND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1562
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1559
enum writerfilter::rtftok::RTFKeyword RTF_SECTLINEGRID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1563
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1560
enum writerfilter::rtftok::RTFKeyword RTF_SECTNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1564
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1561
enum writerfilter::rtftok::RTFKeyword RTF_SECTRSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1565
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1562
enum writerfilter::rtftok::RTFKeyword RTF_SECTSPECIFYCL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1566
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1563
enum writerfilter::rtftok::RTFKeyword RTF_SECTSPECIFYGENN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1567
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1564
enum writerfilter::rtftok::RTFKeyword RTF_SECTSPECIFYL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1569
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1566
enum writerfilter::rtftok::RTFKeyword RTF_SFTNBJ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1570
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1567
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNALC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1571
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1568
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1572
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1569
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNAUC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1573
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1570
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNCHI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1574
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1571
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNCHOSUNG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1575
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1572
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNCNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1576
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1573
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNDBAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1577
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1574
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNDBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1578
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1575
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNDBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1579
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1576
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNDBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1580
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1577
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNDBNUMT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1581
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1578
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNGANADA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1582
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1579
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNGBNUM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1583
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1580
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNGBNUMD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1584
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1581
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNGBNUMK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1585
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1582
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNGBNUML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1586
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1583
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNRLC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1587
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1584
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNRUC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1588
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1585
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNZODIAC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1589
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1586
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNZODIACD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1590
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1587
enum writerfilter::rtftok::RTFKeyword RTF_SFTNNZODIACL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1591
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1588
enum writerfilter::rtftok::RTFKeyword RTF_SFTNRESTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1592
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1589
enum writerfilter::rtftok::RTFKeyword RTF_SFTNRSTCONT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1593
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1590
enum writerfilter::rtftok::RTFKeyword RTF_SFTNRSTPG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1594
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1591
enum writerfilter::rtftok::RTFKeyword RTF_SFTNSTART
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1595
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1592
enum writerfilter::rtftok::RTFKeyword RTF_SFTNTJ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1597
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1594
enum writerfilter::rtftok::RTFKeyword RTF_SHADING
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1598
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1595
enum writerfilter::rtftok::RTFKeyword RTF_SHIDDEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1599
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1596
enum writerfilter::rtftok::RTFKeyword RTF_SHIFT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1600
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1597
enum writerfilter::rtftok::RTFKeyword RTF_SHOWPLACEHOLDTEXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1601
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1598
enum writerfilter::rtftok::RTFKeyword RTF_SHOWXMLERRORS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1604
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1601
enum writerfilter::rtftok::RTFKeyword RTF_SHPBXCOLUMN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1605
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1602
enum writerfilter::rtftok::RTFKeyword RTF_SHPBXIGNORE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1606
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1603
enum writerfilter::rtftok::RTFKeyword RTF_SHPBXMARGIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1608
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1605
enum writerfilter::rtftok::RTFKeyword RTF_SHPBYIGNORE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1609
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1606
enum writerfilter::rtftok::RTFKeyword RTF_SHPBYMARGIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1611
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1608
enum writerfilter::rtftok::RTFKeyword RTF_SHPBYPARA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1613
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1610
enum writerfilter::rtftok::RTFKeyword RTF_SHPFHDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1617
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1614
enum writerfilter::rtftok::RTFKeyword RTF_SHPLID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1618
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1615
enum writerfilter::rtftok::RTFKeyword RTF_SHPLOCKANCHOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1621
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1618
enum writerfilter::rtftok::RTFKeyword RTF_SHPRSLT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1628
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1625
enum writerfilter::rtftok::RTFKeyword RTF_SLINK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1630
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1627
enum writerfilter::rtftok::RTFKeyword RTF_SLOCKED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1632
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1629
enum writerfilter::rtftok::RTFKeyword RTF_SNAPTOGRIDINCELL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1633
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1630
enum writerfilter::rtftok::RTFKeyword RTF_SNEXT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1634
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1631
enum writerfilter::rtftok::RTFKeyword RTF_SOFTCOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1635
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1632
enum writerfilter::rtftok::RTFKeyword RTF_SOFTLHEIGHT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1636
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1633
enum writerfilter::rtftok::RTFKeyword RTF_SOFTLINE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1637
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1634
enum writerfilter::rtftok::RTFKeyword RTF_SOFTPAGE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1639
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1636
enum writerfilter::rtftok::RTFKeyword RTF_SPERSONAL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1640
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1637
enum writerfilter::rtftok::RTFKeyword RTF_SPLTPGPAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1641
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1638
enum writerfilter::rtftok::RTFKeyword RTF_SPLYTWNINE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1642
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1639
enum writerfilter::rtftok::RTFKeyword RTF_SPRIORITY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1643
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1640
enum writerfilter::rtftok::RTFKeyword RTF_SPRSBSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1644
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1641
enum writerfilter::rtftok::RTFKeyword RTF_SPRSLNSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1645
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1642
enum writerfilter::rtftok::RTFKeyword RTF_SPRSSPBF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1646
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1643
enum writerfilter::rtftok::RTFKeyword RTF_SPRSTSM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1647
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1644
enum writerfilter::rtftok::RTFKeyword RTF_SPRSTSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1648
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1645
enum writerfilter::rtftok::RTFKeyword RTF_SPV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1649
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1646
enum writerfilter::rtftok::RTFKeyword RTF_SQFORMAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1650
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1647
enum writerfilter::rtftok::RTFKeyword RTF_SRAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1651
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1648
enum writerfilter::rtftok::RTFKeyword RTF_SRDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1652
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1649
enum writerfilter::rtftok::RTFKeyword RTF_SREPLY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1653
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1650
enum writerfilter::rtftok::RTFKeyword RTF_SSEMIHIDDEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1655
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1652
enum writerfilter::rtftok::RTFKeyword RTF_STEXTFLOW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1658
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1655
enum writerfilter::rtftok::RTFKeyword RTF_STSHFBI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1659
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1656
enum writerfilter::rtftok::RTFKeyword RTF_STSHFDBCH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1660
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1657
enum writerfilter::rtftok::RTFKeyword RTF_STSHFHICH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1661
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1658
enum writerfilter::rtftok::RTFKeyword RTF_STSHFLOCH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1662
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1659
enum writerfilter::rtftok::RTFKeyword RTF_STYLELOCK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1663
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1660
enum writerfilter::rtftok::RTFKeyword RTF_STYLELOCKBACKCOMP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1664
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1661
enum writerfilter::rtftok::RTFKeyword RTF_STYLELOCKENFORCED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1665
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1662
enum writerfilter::rtftok::RTFKeyword RTF_STYLELOCKQFSET
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1666
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1663
enum writerfilter::rtftok::RTFKeyword RTF_STYLELOCKTHEME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1668
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1665
enum writerfilter::rtftok::RTFKeyword RTF_STYLESORTMETHOD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1669
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1666
enum writerfilter::rtftok::RTFKeyword RTF_STYRSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1671
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1668
enum writerfilter::rtftok::RTFKeyword RTF_SUBDOCUMENT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1672
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1669
enum writerfilter::rtftok::RTFKeyword RTF_SUBFONTBYSIZE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1674
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1671
enum writerfilter::rtftok::RTFKeyword RTF_SUNHIDEUSED
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1677
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1674
enum writerfilter::rtftok::RTFKeyword RTF_SVB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1678
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1675
enum writerfilter::rtftok::RTFKeyword RTF_SWPBDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1680
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1677
enum writerfilter::rtftok::RTFKeyword RTF_TABSNOOVRLP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1681
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1678
enum writerfilter::rtftok::RTFKeyword RTF_TAPRTL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1682
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1679
enum writerfilter::rtftok::RTFKeyword RTF_TB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1683
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1680
enum writerfilter::rtftok::RTFKeyword RTF_TBLIND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1684
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1681
enum writerfilter::rtftok::RTFKeyword RTF_TBLINDTYPE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1685
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1682
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKBESTFIT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1686
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1683
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKBORDER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1687
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1684
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKCOLOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1688
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1685
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKFONT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1689
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1686
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKHDRCOLS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1690
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1687
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKHDRROWS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1691
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1688
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKLASTCOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1692
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1689
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKLASTROW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1693
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1690
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKNOCOLBAND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1694
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1691
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKNOROWBAND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1695
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1692
enum writerfilter::rtftok::RTFKeyword RTF_TBLLKSHADING
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1696
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1693
enum writerfilter::rtftok::RTFKeyword RTF_TBLRSID
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1698
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1695
enum writerfilter::rtftok::RTFKeyword RTF_TCELLD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1699
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1696
enum writerfilter::rtftok::RTFKeyword RTF_TCF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1700
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1697
enum writerfilter::rtftok::RTFKeyword RTF_TCL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1702
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1699
enum writerfilter::rtftok::RTFKeyword RTF_TDFRMTXTBOTTOM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1703
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1700
enum writerfilter::rtftok::RTFKeyword RTF_TDFRMTXTLEFT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1704
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1701
enum writerfilter::rtftok::RTFKeyword RTF_TDFRMTXTRIGHT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1705
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1702
enum writerfilter::rtftok::RTFKeyword RTF_TDFRMTXTTOP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1706
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1703
enum writerfilter::rtftok::RTFKeyword RTF_TEMPLATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1707
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1704
enum writerfilter::rtftok::RTFKeyword RTF_THEMEDATA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1708
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1705
enum writerfilter::rtftok::RTFKeyword RTF_THEMELANG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1709
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1706
enum writerfilter::rtftok::RTFKeyword RTF_THEMELANGCS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1710
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1707
enum writerfilter::rtftok::RTFKeyword RTF_THEMELANGFE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1711
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1708
enum writerfilter::rtftok::RTFKeyword RTF_TIME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1720
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1717
enum writerfilter::rtftok::RTFKeyword RTF_TOPLINEPUNCT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1721
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1718
enum writerfilter::rtftok::RTFKeyword RTF_TPHCOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1722
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1719
enum writerfilter::rtftok::RTFKeyword RTF_TPHMRG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1723
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1720
enum writerfilter::rtftok::RTFKeyword RTF_TPHPG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1724
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1721
enum writerfilter::rtftok::RTFKeyword RTF_TPOSNEGX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1725
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1722
enum writerfilter::rtftok::RTFKeyword RTF_TPOSNEGY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1726
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1723
enum writerfilter::rtftok::RTFKeyword RTF_TPOSXC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1727
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1724
enum writerfilter::rtftok::RTFKeyword RTF_TPOSXI
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1728
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1725
enum writerfilter::rtftok::RTFKeyword RTF_TPOSXL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1729
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1726
enum writerfilter::rtftok::RTFKeyword RTF_TPOSX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1730
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1727
enum writerfilter::rtftok::RTFKeyword RTF_TPOSXO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1731
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1728
enum writerfilter::rtftok::RTFKeyword RTF_TPOSXR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1732
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1729
enum writerfilter::rtftok::RTFKeyword RTF_TPOSY
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1733
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1730
enum writerfilter::rtftok::RTFKeyword RTF_TPOSYB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1734
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1731
enum writerfilter::rtftok::RTFKeyword RTF_TPOSYC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1735
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1732
enum writerfilter::rtftok::RTFKeyword RTF_TPOSYIL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1736
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1733
enum writerfilter::rtftok::RTFKeyword RTF_TPOSYIN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1737
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1734
enum writerfilter::rtftok::RTFKeyword RTF_TPOSYOUT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1738
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1735
enum writerfilter::rtftok::RTFKeyword RTF_TPOSYT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1739
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1736
enum writerfilter::rtftok::RTFKeyword RTF_TPVMRG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1740
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1737
enum writerfilter::rtftok::RTFKeyword RTF_TPVPARA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1741
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1738
enum writerfilter::rtftok::RTFKeyword RTF_TPVPG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1745
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1742
enum writerfilter::rtftok::RTFKeyword RTF_TRACKFORMATTING
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1746
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1743
enum writerfilter::rtftok::RTFKeyword RTF_TRACKMOVES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1747
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1744
enum writerfilter::rtftok::RTFKeyword RTF_TRANSMF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1748
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1745
enum writerfilter::rtftok::RTFKeyword RTF_TRAUTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1749
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1746
enum writerfilter::rtftok::RTFKeyword RTF_TRAUTOFIT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1750
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1747
enum writerfilter::rtftok::RTFKeyword RTF_TRBGBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1751
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1748
enum writerfilter::rtftok::RTFKeyword RTF_TRBGCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1752
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1749
enum writerfilter::rtftok::RTFKeyword RTF_TRBGDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1753
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1750
enum writerfilter::rtftok::RTFKeyword RTF_TRBGDKBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1754
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1751
enum writerfilter::rtftok::RTFKeyword RTF_TRBGDKCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1755
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1752
enum writerfilter::rtftok::RTFKeyword RTF_TRBGDKDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1756
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1753
enum writerfilter::rtftok::RTFKeyword RTF_TRBGDKFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1757
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1754
enum writerfilter::rtftok::RTFKeyword RTF_TRBGDKHOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1758
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1755
enum writerfilter::rtftok::RTFKeyword RTF_TRBGDKVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1759
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1756
enum writerfilter::rtftok::RTFKeyword RTF_TRBGFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1760
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1757
enum writerfilter::rtftok::RTFKeyword RTF_TRBGHORIZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1761
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1758
enum writerfilter::rtftok::RTFKeyword RTF_TRBGVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1762
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1759
enum writerfilter::rtftok::RTFKeyword RTF_TRBRDRB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1763
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1760
enum writerfilter::rtftok::RTFKeyword RTF_TRBRDRH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1764
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1761
enum writerfilter::rtftok::RTFKeyword RTF_TRBRDRL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1765
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1762
enum writerfilter::rtftok::RTFKeyword RTF_TRBRDRR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1766
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1763
enum writerfilter::rtftok::RTFKeyword RTF_TRBRDRT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1767
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1764
enum writerfilter::rtftok::RTFKeyword RTF_TRBRDRV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1768
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1765
enum writerfilter::rtftok::RTFKeyword RTF_TRCBPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1769
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1766
enum writerfilter::rtftok::RTFKeyword RTF_TRCFPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1770
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1767
enum writerfilter::rtftok::RTFKeyword RTF_TRDATE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1771
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1768
enum writerfilter::rtftok::RTFKeyword RTF_TRFTSWIDTHA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1772
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1769
enum writerfilter::rtftok::RTFKeyword RTF_TRFTSWIDTHB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1775
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1772
enum writerfilter::rtftok::RTFKeyword RTF_TRHDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1777
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1774
enum writerfilter::rtftok::RTFKeyword RTF_TRKEEPFOLLOW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1788
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1785
enum writerfilter::rtftok::RTFKeyword RTF_TRPADOB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1789
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1786
enum writerfilter::rtftok::RTFKeyword RTF_TRPADOFB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1790
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1787
enum writerfilter::rtftok::RTFKeyword RTF_TRPADOFL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1791
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1788
enum writerfilter::rtftok::RTFKeyword RTF_TRPADOFR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1792
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1789
enum writerfilter::rtftok::RTFKeyword RTF_TRPADOFT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1793
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1790
enum writerfilter::rtftok::RTFKeyword RTF_TRPADOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1794
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1791
enum writerfilter::rtftok::RTFKeyword RTF_TRPADOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1795
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1792
enum writerfilter::rtftok::RTFKeyword RTF_TRPADOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1796
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1793
enum writerfilter::rtftok::RTFKeyword RTF_TRPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1801
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1798
enum writerfilter::rtftok::RTFKeyword RTF_TRSHDNG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1802
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1799
enum writerfilter::rtftok::RTFKeyword RTF_TRSPDB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1803
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1800
enum writerfilter::rtftok::RTFKeyword RTF_TRSPDFB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1804
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1801
enum writerfilter::rtftok::RTFKeyword RTF_TRSPDFL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1805
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1802
enum writerfilter::rtftok::RTFKeyword RTF_TRSPDFR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1806
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1803
enum writerfilter::rtftok::RTFKeyword RTF_TRSPDFT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1807
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1804
enum writerfilter::rtftok::RTFKeyword RTF_TRSPDL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1808
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1805
enum writerfilter::rtftok::RTFKeyword RTF_TRSPDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1809
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1806
enum writerfilter::rtftok::RTFKeyword RTF_TRSPDT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1810
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1807
enum writerfilter::rtftok::RTFKeyword RTF_TRSPOB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1811
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1808
enum writerfilter::rtftok::RTFKeyword RTF_TRSPOFB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1812
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1809
enum writerfilter::rtftok::RTFKeyword RTF_TRSPOFL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1813
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1810
enum writerfilter::rtftok::RTFKeyword RTF_TRSPOFR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1814
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1811
enum writerfilter::rtftok::RTFKeyword RTF_TRSPOFT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1815
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1812
enum writerfilter::rtftok::RTFKeyword RTF_TRSPOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1816
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1813
enum writerfilter::rtftok::RTFKeyword RTF_TRSPOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1817
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1814
enum writerfilter::rtftok::RTFKeyword RTF_TRSPOT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1818
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1815
enum writerfilter::rtftok::RTFKeyword RTF_TRUNCATEFONTHEIGHT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1819
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1816
enum writerfilter::rtftok::RTFKeyword RTF_TRUNCEX
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1821
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1818
enum writerfilter::rtftok::RTFKeyword RTF_TRWWIDTHB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1824
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1821
enum writerfilter::rtftok::RTFKeyword RTF_TSBGBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1825
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1822
enum writerfilter::rtftok::RTFKeyword RTF_TSBGCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1826
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1823
enum writerfilter::rtftok::RTFKeyword RTF_TSBGDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1827
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1824
enum writerfilter::rtftok::RTFKeyword RTF_TSBGDKBDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1828
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1825
enum writerfilter::rtftok::RTFKeyword RTF_TSBGDKCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1829
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1826
enum writerfilter::rtftok::RTFKeyword RTF_TSBGDKDCROSS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1830
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1827
enum writerfilter::rtftok::RTFKeyword RTF_TSBGDKFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1831
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1828
enum writerfilter::rtftok::RTFKeyword RTF_TSBGDKHOR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1832
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1829
enum writerfilter::rtftok::RTFKeyword RTF_TSBGDKVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1833
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1830
enum writerfilter::rtftok::RTFKeyword RTF_TSBGFDIAG
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1834
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1831
enum writerfilter::rtftok::RTFKeyword RTF_TSBGHORIZ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1835
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1832
enum writerfilter::rtftok::RTFKeyword RTF_TSBGVERT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1836
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1833
enum writerfilter::rtftok::RTFKeyword RTF_TSBRDRB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1837
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1834
enum writerfilter::rtftok::RTFKeyword RTF_TSBRDRDGL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1838
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1835
enum writerfilter::rtftok::RTFKeyword RTF_TSBRDRDGR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1839
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1836
enum writerfilter::rtftok::RTFKeyword RTF_TSBRDRH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1840
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1837
enum writerfilter::rtftok::RTFKeyword RTF_TSBRDRL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1841
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1838
enum writerfilter::rtftok::RTFKeyword RTF_TSBRDRR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1842
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1839
enum writerfilter::rtftok::RTFKeyword RTF_TSBRDRT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1843
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1840
enum writerfilter::rtftok::RTFKeyword RTF_TSBRDRV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1844
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1841
enum writerfilter::rtftok::RTFKeyword RTF_TSCBANDHORZEVEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1845
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1842
enum writerfilter::rtftok::RTFKeyword RTF_TSCBANDHORZODD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1846
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1843
enum writerfilter::rtftok::RTFKeyword RTF_TSCBANDSH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1847
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1844
enum writerfilter::rtftok::RTFKeyword RTF_TSCBANDSV
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1848
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1845
enum writerfilter::rtftok::RTFKeyword RTF_TSCBANDVERTEVEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1849
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1846
enum writerfilter::rtftok::RTFKeyword RTF_TSCBANDVERTODD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1850
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1847
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLCBPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1851
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1848
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLCFPAT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1852
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1849
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPADDB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1853
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1850
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPADDFB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1854
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1851
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPADDFL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1855
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1852
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPADDFR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1856
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1853
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPADDFT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1857
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1854
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPADDL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1858
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1855
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPADDR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1859
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1856
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPADDT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1860
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1857
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLPCT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1861
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1858
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLWIDTH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1862
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1859
enum writerfilter::rtftok::RTFKeyword RTF_TSCELLWIDTHFTS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1863
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1860
enum writerfilter::rtftok::RTFKeyword RTF_TSCFIRSTCOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1864
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1861
enum writerfilter::rtftok::RTFKeyword RTF_TSCFIRSTROW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1865
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1862
enum writerfilter::rtftok::RTFKeyword RTF_TSCLASTCOL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1866
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1863
enum writerfilter::rtftok::RTFKeyword RTF_TSCLASTROW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1867
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1864
enum writerfilter::rtftok::RTFKeyword RTF_TSCNECELL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1868
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1865
enum writerfilter::rtftok::RTFKeyword RTF_TSCNWCELL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1869
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1866
enum writerfilter::rtftok::RTFKeyword RTF_TSCSECELL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1870
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1867
enum writerfilter::rtftok::RTFKeyword RTF_TSCSWCELL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1871
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1868
enum writerfilter::rtftok::RTFKeyword RTF_TSD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1872
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1869
enum writerfilter::rtftok::RTFKeyword RTF_TSNOWRAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1873
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1870
enum writerfilter::rtftok::RTFKeyword RTF_TSROWD
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1874
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1871
enum writerfilter::rtftok::RTFKeyword RTF_TSVERTALB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1875
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1872
enum writerfilter::rtftok::RTFKeyword RTF_TSVERTALC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1876
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1873
enum writerfilter::rtftok::RTFKeyword RTF_TSVERTALT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1880
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1877
enum writerfilter::rtftok::RTFKeyword RTF_TXBXTWALWAYS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1881
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1878
enum writerfilter::rtftok::RTFKeyword RTF_TXBXTWFIRST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1882
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1879
enum writerfilter::rtftok::RTFKeyword RTF_TXBXTWFIRSTLAST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1883
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1880
enum writerfilter::rtftok::RTFKeyword RTF_TXBXTWLAST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1884
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1881
enum writerfilter::rtftok::RTFKeyword RTF_TXBXTWNO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1885
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1882
enum writerfilter::rtftok::RTFKeyword RTF_TXE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1896
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1893
enum writerfilter::rtftok::RTFKeyword RTF_ULHAIR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1911
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1908
enum writerfilter::rtftok::RTFKeyword RTF_URTF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1912
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1909
enum writerfilter::rtftok::RTFKeyword RTF_USELTBALN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1913
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1910
enum writerfilter::rtftok::RTFKeyword RTF_USENORMSTYFORLIST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1915
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1912
enum writerfilter::rtftok::RTFKeyword RTF_USEXFORM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1916
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1913
enum writerfilter::rtftok::RTFKeyword RTF_UTINL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1918
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1915
enum writerfilter::rtftok::RTFKeyword RTF_VALIDATEXML
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1921
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1918
enum writerfilter::rtftok::RTFKeyword RTF_VERTAL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1922
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1919
enum writerfilter::rtftok::RTFKeyword RTF_VERTALB
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1923
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1920
enum writerfilter::rtftok::RTFKeyword RTF_VERTALC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1924
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1921
enum writerfilter::rtftok::RTFKeyword RTF_VERTALJ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1925
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1922
enum writerfilter::rtftok::RTFKeyword RTF_VERTALT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1926
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1923
enum writerfilter::rtftok::RTFKeyword RTF_VERTDOC
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1927
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1924
enum writerfilter::rtftok::RTFKeyword RTF_VERTSECT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1929
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1926
enum writerfilter::rtftok::RTFKeyword RTF_VIEWKIND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1930
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1927
enum writerfilter::rtftok::RTFKeyword RTF_VIEWNOBOUND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1932
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1929
enum writerfilter::rtftok::RTFKeyword RTF_VIEWZK
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1933
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1930
enum writerfilter::rtftok::RTFKeyword RTF_WBITMAP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1934
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1931
enum writerfilter::rtftok::RTFKeyword RTF_WBMBITSPIXEL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1935
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1932
enum writerfilter::rtftok::RTFKeyword RTF_WBMPLANES
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1936
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1933
enum writerfilter::rtftok::RTFKeyword RTF_WBMWIDTHBYTE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1937
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1934
enum writerfilter::rtftok::RTFKeyword RTF_WEBHIDDEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1938
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1935
enum writerfilter::rtftok::RTFKeyword RTF_WGRFFMTFILTER
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1941
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1938
enum writerfilter::rtftok::RTFKeyword RTF_WINDOWCAPTION
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1943
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1940
enum writerfilter::rtftok::RTFKeyword RTF_WPEQN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1944
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1941
enum writerfilter::rtftok::RTFKeyword RTF_WPJST
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1945
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1942
enum writerfilter::rtftok::RTFKeyword RTF_WPSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1946
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1943
enum writerfilter::rtftok::RTFKeyword RTF_WRAPAROUND
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1947
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1944
enum writerfilter::rtftok::RTFKeyword RTF_WRAPDEFAULT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1948
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1945
enum writerfilter::rtftok::RTFKeyword RTF_WRAPTHROUGH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1949
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1946
enum writerfilter::rtftok::RTFKeyword RTF_WRAPTIGHT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1950
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1947
enum writerfilter::rtftok::RTFKeyword RTF_WRAPTRSP
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1951
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1948
enum writerfilter::rtftok::RTFKeyword RTF_WRITERESERVATION
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1952
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1949
enum writerfilter::rtftok::RTFKeyword RTF_WRITERESERVHASH
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1953
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1950
enum writerfilter::rtftok::RTFKeyword RTF_WRPPUNCT
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1955
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1952
enum writerfilter::rtftok::RTFKeyword RTF_XEF
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1956
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1953
enum writerfilter::rtftok::RTFKeyword RTF_XFORM
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1957
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1954
enum writerfilter::rtftok::RTFKeyword RTF_XMLATTR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1958
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1955
enum writerfilter::rtftok::RTFKeyword RTF_XMLATTRNAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1959
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1956
enum writerfilter::rtftok::RTFKeyword RTF_XMLATTRNS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1960
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1957
enum writerfilter::rtftok::RTFKeyword RTF_XMLATTRVALUE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1961
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1958
enum writerfilter::rtftok::RTFKeyword RTF_XMLCLOSE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1962
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1959
enum writerfilter::rtftok::RTFKeyword RTF_XMLNAME
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1963
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1960
enum writerfilter::rtftok::RTFKeyword RTF_XMLNS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1964
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1961
enum writerfilter::rtftok::RTFKeyword RTF_XMLNSTBL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1965
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1962
enum writerfilter::rtftok::RTFKeyword RTF_XMLOPEN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1966
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1963
enum writerfilter::rtftok::RTFKeyword RTF_XMLSDTTCELL
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1967
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1964
enum writerfilter::rtftok::RTFKeyword RTF_XMLSDTTPARA
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1968
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1965
enum writerfilter::rtftok::RTFKeyword RTF_XMLSDTTREGULAR
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1969
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1966
enum writerfilter::rtftok::RTFKeyword RTF_XMLSDTTROW
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1970
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1967
enum writerfilter::rtftok::RTFKeyword RTF_XMLSDTTUNKNOWN
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1972
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1969
enum writerfilter::rtftok::RTFKeyword RTF_YTS
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1973
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1970
enum writerfilter::rtftok::RTFKeyword RTF_YXE
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1974
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1971
enum writerfilter::rtftok::RTFKeyword RTF_ZWBO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1975
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1972
enum writerfilter::rtftok::RTFKeyword RTF_ZWJ
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1976
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1973
enum writerfilter::rtftok::RTFKeyword RTF_ZWNBO
-writerfilter/source/rtftok/rtfcontrolwords.hxx:1977
+writerfilter/source/rtftok/rtfcontrolwords.hxx:1974
enum writerfilter::rtftok::RTFKeyword RTF_ZWNJ
-writerfilter/source/rtftok/rtfdocumentimpl.hxx:78
+writerfilter/source/rtftok/rtfdocumentimpl.hxx:100
enum writerfilter::rtftok::RTFFormFieldType TEXT
-writerfilter/source/rtftok/rtfdocumentimpl.hxx:86
+writerfilter/source/rtftok/rtfdocumentimpl.hxx:108
enum writerfilter::rtftok::RTFBmpStyle PNG
-writerfilter/source/rtftok/rtfdocumentimpl.hxx:87
+writerfilter/source/rtftok/rtfdocumentimpl.hxx:109
enum writerfilter::rtftok::RTFBmpStyle JPEG
-writerfilter/source/rtftok/rtfdocumentimpl.hxx:95
+writerfilter/source/rtftok/rtfdocumentimpl.hxx:117
enum writerfilter::rtftok::RTFFieldStatus RESULT
-xmlhelp/source/cxxhelp/inc/tvread.hxx:46
- enum treeview::ConfigData::(anonymous at xmlhelp/source/cxxhelp/inc/tvread.hxx:45:9) PRODUCTNAME
-xmlhelp/source/cxxhelp/inc/tvread.hxx:46
- enum treeview::ConfigData::(anonymous at xmlhelp/source/cxxhelp/inc/tvread.hxx:45:9) PRODUCTVERSION
-xmlhelp/source/cxxhelp/inc/tvread.hxx:46
- enum treeview::ConfigData::(anonymous at xmlhelp/source/cxxhelp/inc/tvread.hxx:45:9) VENDORNAME
-xmlhelp/source/cxxhelp/inc/tvread.hxx:46
- enum treeview::ConfigData::(anonymous at xmlhelp/source/cxxhelp/inc/tvread.hxx:45:9) VENDORVERSION
+writerperfect/source/writer/exp/xmlimp.hxx:67
+ enum writerperfect::exp::PopupState Consumed
+xmlhelp/source/cxxhelp/inc/tvread.hxx:47
+ enum treeview::ConfigData::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/inc/tvread.hxx:46:9) VENDORNAME
+xmlhelp/source/cxxhelp/inc/tvread.hxx:47
+ enum treeview::ConfigData::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/inc/tvread.hxx:46:9) PRODUCTVERSION
+xmlhelp/source/cxxhelp/inc/tvread.hxx:47
+ enum treeview::ConfigData::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/inc/tvread.hxx:46:9) PRODUCTNAME
xmlhelp/source/cxxhelp/inc/tvread.hxx:47
- enum treeview::ConfigData::(anonymous at xmlhelp/source/cxxhelp/inc/tvread.hxx:45:9) VENDORSHORT
+ enum treeview::ConfigData::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/inc/tvread.hxx:46:9) VENDORVERSION
+xmlhelp/source/cxxhelp/inc/tvread.hxx:48
+ enum treeview::ConfigData::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/inc/tvread.hxx:46:9) VENDORSHORT
+xmlhelp/source/cxxhelp/provider/databases.hxx:242
+ enum chelp::Databases::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/provider/databases.hxx:241:9) PRODUCTNAME
+xmlhelp/source/cxxhelp/provider/databases.hxx:243
+ enum chelp::Databases::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/provider/databases.hxx:241:9) PRODUCTVERSION
+xmlhelp/source/cxxhelp/provider/databases.hxx:244
+ enum chelp::Databases::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/provider/databases.hxx:241:9) VENDORNAME
+xmlhelp/source/cxxhelp/provider/databases.hxx:245
+ enum chelp::Databases::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/provider/databases.hxx:241:9) VENDORVERSION
+xmlhelp/source/cxxhelp/provider/databases.hxx:246
+ enum chelp::Databases::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/provider/databases.hxx:241:9) VENDORSHORT
+xmlhelp/source/cxxhelp/provider/databases.hxx:247
+ enum chelp::Databases::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/provider/databases.hxx:241:9) NEWPRODUCTNAME
xmlhelp/source/cxxhelp/provider/databases.hxx:248
- enum chelp::Databases::(anonymous at xmlhelp/source/cxxhelp/provider/databases.hxx:247:9) PRODUCTNAME
-xmlhelp/source/cxxhelp/provider/databases.hxx:249
- enum chelp::Databases::(anonymous at xmlhelp/source/cxxhelp/provider/databases.hxx:247:9) PRODUCTVERSION
-xmlhelp/source/cxxhelp/provider/databases.hxx:250
- enum chelp::Databases::(anonymous at xmlhelp/source/cxxhelp/provider/databases.hxx:247:9) VENDORNAME
-xmlhelp/source/cxxhelp/provider/databases.hxx:251
- enum chelp::Databases::(anonymous at xmlhelp/source/cxxhelp/provider/databases.hxx:247:9) VENDORVERSION
-xmlhelp/source/cxxhelp/provider/databases.hxx:252
- enum chelp::Databases::(anonymous at xmlhelp/source/cxxhelp/provider/databases.hxx:247:9) VENDORSHORT
-xmlhelp/source/cxxhelp/provider/databases.hxx:253
- enum chelp::Databases::(anonymous at xmlhelp/source/cxxhelp/provider/databases.hxx:247:9) NEWPRODUCTNAME
-xmlhelp/source/cxxhelp/provider/databases.hxx:254
- enum chelp::Databases::(anonymous at xmlhelp/source/cxxhelp/provider/databases.hxx:247:9) NEWPRODUCTVERSION
-xmlhelp/source/treeview/tvread.cxx:85
+ enum chelp::Databases::(anonymous at /media/noel/disk2/libo6/xmlhelp/source/cxxhelp/provider/databases.hxx:241:9) NEWPRODUCTVERSION
+xmlhelp/source/treeview/tvread.cxx:80
enum treeview::TVDom::Kind tree_node
-xmlhelp/source/treeview/tvread.cxx:87
+xmlhelp/source/treeview/tvread.cxx:82
enum treeview::TVDom::Kind other
xmloff/inc/EnhancedCustomShapeToken.hxx:89
enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_CustomShapeEngine
xmloff/inc/EnhancedCustomShapeToken.hxx:90
enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_CustomShapeData
-xmloff/inc/EnhancedCustomShapeToken.hxx:101
+xmloff/inc/EnhancedCustomShapeToken.hxx:102
enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_Equation
-xmloff/inc/EnhancedCustomShapeToken.hxx:105
+xmloff/inc/EnhancedCustomShapeToken.hxx:106
enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_Handle
-xmloff/inc/EnhancedCustomShapeToken.hxx:142
+xmloff/inc/EnhancedCustomShapeToken.hxx:143
enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_GluePointLeavingDirections
-xmloff/inc/EnhancedCustomShapeToken.hxx:152
+xmloff/inc/EnhancedCustomShapeToken.hxx:153
enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_NotFound
xmloff/inc/forms/property_ids.hxx:38
enum xmloff::PropertyId PID_INVALID
@@ -16934,7 +13996,7 @@ xmloff/inc/txtfldi.hxx:77
enum XMLTextFieldAttrTokens XML_TOK_TEXTFIELD_CURRENCY
xmloff/inc/txtfldi.hxx:87
enum XMLTextFieldAttrTokens XML_TOK_TEXTFIELD_REVISION
-xmloff/inc/txtfldi.hxx:98
+xmloff/inc/txtfldi.hxx:99
enum XMLTextFieldAttrTokens XML_TOK_TEXTFIELD_ANNOTATION
xmloff/source/chart/SchXMLPlotAreaContext.hxx:179
enum SchXMLWallFloorContext::ContextType CONTEXT_TYPE_FLOOR
@@ -16942,6 +14004,8 @@ xmloff/source/chart/SchXMLTools.hxx:56
enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_LINE
xmloff/source/chart/SchXMLTools.hxx:57
enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_AREA
+xmloff/source/chart/SchXMLTools.hxx:58
+ enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_CIRCLE
xmloff/source/chart/SchXMLTools.hxx:59
enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_RING
xmloff/source/chart/SchXMLTools.hxx:60
@@ -16954,7 +14018,7 @@ xmloff/source/chart/SchXMLTools.hxx:63
enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_BAR
xmloff/source/chart/SchXMLTools.hxx:65
enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_BUBBLE
-xmloff/source/chart/SchXMLTools.hxx:67
+xmloff/source/chart/SchXMLTools.hxx:66
enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_ADDIN
xmloff/source/chart/transporttypes.hxx:30
enum SchXMLCellType SCH_CELL_TYPE_UNKNOWN
@@ -16988,38 +14052,10 @@ xmloff/source/core/xmlenums.hxx:43
enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_WEIGHT
xmloff/source/core/xmlenums.hxx:44
enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_ITALIC
-xmloff/source/draw/sdxmlimp_impl.hxx:57
+xmloff/source/draw/sdxmlimp_impl.hxx:56
enum SdXMLStylesElemTokenMap XML_TOK_STYLES_STYLE
-xmloff/source/draw/shapeexport.cxx:1524
- enum Found CLICKACTION
-xmloff/source/draw/shapeexport.cxx:1525
- enum Found BOOKMARK
-xmloff/source/draw/shapeexport.cxx:1526
- enum Found EFFECT
-xmloff/source/draw/shapeexport.cxx:1527
- enum Found PLAYFULL
-xmloff/source/draw/shapeexport.cxx:1528
- enum Found VERB
-xmloff/source/draw/shapeexport.cxx:1529
- enum Found SOUNDURL
-xmloff/source/draw/shapeexport.cxx:1530
- enum Found SPEED
-xmloff/source/draw/shapeexport.cxx:1531
- enum Found CLICKEVENTTYPE
-xmloff/source/draw/shapeexport.cxx:1532
- enum Found MACRO
-xmloff/source/draw/shapeexport.cxx:1533
- enum Found LIBRARY
xmloff/source/forms/controlelement.hxx:53
enum xmloff::OControlElement::ElementType GENERIC_CONTROL
-xmloff/source/forms/formattributes.hxx:42
- enum CCAFlags ControlId
-xmloff/source/forms/formattributes.hxx:89
- enum BAFlags XFormsBind
-xmloff/source/forms/formattributes.hxx:90
- enum BAFlags XFormsListBind
-xmloff/source/forms/formattributes.hxx:91
- enum BAFlags XFormsSubmission
xmloff/source/forms/formattributes.hxx:100
enum EAFlags ControlEvents
xmloff/source/forms/formattributes.hxx:101
@@ -17030,39 +14066,33 @@ xmloff/source/forms/formattributes.hxx:103
enum EAFlags OnDoubleClick
xmloff/source/forms/formattributes.hxx:104
enum EAFlags OnSelect
-xmloff/source/forms/formattributes.hxx:131
- enum SCAFlags ImagePosition
xmloff/source/forms/propertyexport.hxx:35
enum BoolAttrFlags DefaultFalse
-xmloff/source/forms/propertyexport.hxx:38
- enum BoolAttrFlags DefaultMask
-xmloff/source/forms/propertyexport.hxx:39
- enum BoolAttrFlags InverseSemantics
xmloff/source/style/PagePropertySetContext.hxx:27
enum PageContextType Page
-xmloff/source/text/txtparae.cxx:290
+xmloff/source/text/txtparae.cxx:371
enum eParagraphPropertyNamesEnumAuto NUMBERING_RULES_AUTO
-xmloff/source/text/txtparae.cxx:291
+xmloff/source/text/txtparae.cxx:372
enum eParagraphPropertyNamesEnumAuto PARA_CONDITIONAL_STYLE_NAME_AUTO
-xmloff/source/text/txtparae.cxx:292
+xmloff/source/text/txtparae.cxx:373
enum eParagraphPropertyNamesEnumAuto PARA_STYLE_NAME_AUTO
-xmloff/source/text/txtparae.cxx:308
+xmloff/source/text/txtparae.cxx:389
enum eParagraphPropertyNamesEnum NUMBERING_IS_NUMBER
-xmloff/source/text/txtparae.cxx:309
+xmloff/source/text/txtparae.cxx:390
enum eParagraphPropertyNamesEnum PARA_NUMBERING_STYLENAME
-xmloff/source/text/txtparae.cxx:310
+xmloff/source/text/txtparae.cxx:391
enum eParagraphPropertyNamesEnum PARA_OUTLINE_LEVEL
-xmloff/source/text/txtparae.cxx:311
+xmloff/source/text/txtparae.cxx:392
enum eParagraphPropertyNamesEnum PARA_CONDITIONAL_STYLE_NAME
-xmloff/source/text/txtparae.cxx:312
+xmloff/source/text/txtparae.cxx:393
enum eParagraphPropertyNamesEnum PARA_STYLE_NAME
-xmloff/source/text/txtparae.cxx:313
+xmloff/source/text/txtparae.cxx:394
enum eParagraphPropertyNamesEnum TEXT_SECTION
xmloff/source/text/XMLIndexSourceBaseContext.hxx:43
enum IndexSourceParamEnum XML_TOK_INDEXSOURCE_USE_IMAGE
xmloff/source/text/XMLIndexTOCContext.hxx:43
enum IndexTypeEnum TEXT_INDEX_UNKNOWN
-xmloff/source/text/XMLSectionExport.cxx:1055
+xmloff/source/text/XMLSectionExport.cxx:1065
enum TemplateTypeEnum TOK_TTYPE_INVALID
xmloff/source/text/XMLSectionExport.hxx:58
enum SectionTypeEnum TEXT_SECTION_TYPE_UNKNOWN
@@ -17144,5 +14174,5 @@ xmloff/source/transform/PropType.hxx:38
enum XMLPropType XML_PROP_TYPE_CHART
xmlsecurity/inc/documentsignaturehelper.hxx:50
enum DocumentSignatureAlgorithm OOo3_0
-xmlsecurity/inc/xsecctl.hxx:234
+xmlsecurity/inc/xsecctl.hxx:199
enum XSecController::InitializationState FAILTOINITIALIZED
diff --git a/solenv/CompilerTest_compilerplugins_clang.mk b/solenv/CompilerTest_compilerplugins_clang.mk
index 5b07568c1f75..091e11393e5b 100644
--- a/solenv/CompilerTest_compilerplugins_clang.mk
+++ b/solenv/CompilerTest_compilerplugins_clang.mk
@@ -65,6 +65,7 @@ $(eval $(call gb_CompilerTest_add_exception_objects,compilerplugins_clang, \
compilerplugins/clang/test/unoany \
compilerplugins/clang/test/unreffun \
compilerplugins/clang/test/unusedindex \
+ compilerplugins/clang/test/unusedenumconstants \
compilerplugins/clang/test/unusedvariablecheck \
compilerplugins/clang/test/unusedvariablemore \
compilerplugins/clang/test/useuniqueptr \