diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/xmlstyle.hxx | 2 | ||||
-rw-r--r-- | include/xmloff/xmltoken.hxx | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/xmloff/xmlstyle.hxx b/include/xmloff/xmlstyle.hxx index 184fd19eb379..04a74b841a15 100644 --- a/include/xmloff/xmlstyle.hxx +++ b/include/xmloff/xmlstyle.hxx @@ -44,6 +44,7 @@ class XMLOFF_DLLPUBLIC SvXMLStyleContext : public SvXMLImportContext OUString maAutoName; OUString maParentName;// Will be moved to XMLPropStyle soon!!!! OUString maFollow; // Will be moved to XMLPropStyle soon!!!! + OUString maLinked; bool mbHidden; XmlStyleFamily mnFamily; @@ -79,6 +80,7 @@ public: const OUString& GetAutoName() const { return maAutoName; } const OUString& GetParentName() const { return maParentName; } const OUString& GetFollow() const { return maFollow; } + const OUString& GetLinked() const { return maLinked; } XmlStyleFamily GetFamily() const { return mnFamily; } diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx index e4b2314527f0..c8dedd84b4b2 100644 --- a/include/xmloff/xmltoken.hxx +++ b/include/xmloff/xmltoken.hxx @@ -3437,6 +3437,8 @@ namespace xmloff::token { XML_RTL, XML_SYMMETRIC, + XML_LINKED_STYLE_NAME, + XML_TOKEN_END }; |