diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-04-16 12:06:34 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-04-16 12:06:34 +0000 |
commit | 4f68d35d52e16d62011747b5648ef6c290f16e43 (patch) | |
tree | 670c891985839fe3f4031075c7c840a20072d429 /xmloff | |
parent | ead901085908736e61c62c6f87996afd68c1a4c3 (diff) |
#i10000# merged missing header source
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/inc/xmloff/txtprmap.hxx | 6 | ||||
-rw-r--r-- | xmloff/inc/xmloff/xmlexp.hxx | 7 | ||||
-rw-r--r-- | xmloff/inc/xmloff/xmlexppr.hxx | 15 |
3 files changed, 21 insertions, 7 deletions
diff --git a/xmloff/inc/xmloff/txtprmap.hxx b/xmloff/inc/xmloff/txtprmap.hxx index e5fc187b5aca..90b395d72a04 100644 --- a/xmloff/inc/xmloff/txtprmap.hxx +++ b/xmloff/inc/xmloff/txtprmap.hxx @@ -4,9 +4,9 @@ * * $RCSfile: txtprmap.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2007-04-11 13:30:01 $ + * last change: $Author: ihi $ $Date: 2007-04-16 13:06:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -185,7 +185,7 @@ // <-- #define CTF_PARA_ADJUSTLAST (XML_TEXT_CTF_START + 139) #define CTF_DEFAULT_OUTLINE_LEVEL (XML_TEXT_CTF_START + 140) - +#define CTF_ISNUMBERING (XML_TEXT_CTF_START + 141) #define TEXT_PROP_MAP_TEXT 0 #define TEXT_PROP_MAP_PARA 1 #define TEXT_PROP_MAP_FRAME 2 diff --git a/xmloff/inc/xmloff/xmlexp.hxx b/xmloff/inc/xmloff/xmlexp.hxx index eb15703e72a1..dbf1373641b9 100644 --- a/xmloff/inc/xmloff/xmlexp.hxx +++ b/xmloff/inc/xmloff/xmlexp.hxx @@ -4,9 +4,9 @@ * * $RCSfile: xmlexp.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2007-04-11 13:32:08 $ + * last change: $Author: ihi $ $Date: 2007-04-16 13:06:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -238,6 +238,7 @@ class XMLOFF_DLLPUBLIC SvXMLExport : public ::cppu::WeakImplHelper6< sal_uInt16 mnExportFlags; sal_uInt16 mnErrorFlags; + bool mbEnableExperimentalOdfExport; public: @@ -608,6 +609,8 @@ public: // --> OD 2006-09-27 #i69627# const sal_Bool writeOutlineStyleAsNormalListStyle() const; // <-- + bool isExperimentalOdfExportEnabled() const { return mbEnableExperimentalOdfExport; } + }; inline UniReference< XMLTextParagraphExport > SvXMLExport::GetTextParagraphExport() diff --git a/xmloff/inc/xmloff/xmlexppr.hxx b/xmloff/inc/xmloff/xmlexppr.hxx index ff19777aa6a0..a49031f972e2 100644 --- a/xmloff/inc/xmloff/xmlexppr.hxx +++ b/xmloff/inc/xmloff/xmlexppr.hxx @@ -4,9 +4,9 @@ * * $RCSfile: xmlexppr.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2007-04-11 13:32:22 $ + * last change: $Author: ihi $ $Date: 2007-04-16 13:06:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -215,5 +215,16 @@ public: getPropertySetMapper() const { return maPropMapper; } }; +/** added to make fix issue 36217 not incompatible */ +class SvXMLExportPropertyMapper2 : public SvXMLExportPropertyMapper +{ +public: + SvXMLExportPropertyMapper2( const UniReference< XMLPropertySetMapper >& rMapper ) : SvXMLExportPropertyMapper( rMapper ) {} + + void SetStyleName( const rtl::OUString& rStyleName ) { maStyleName = rStyleName; } + +protected: + rtl::OUString maStyleName; +}; #endif // _XMLOFF_XMLEXPPR_HXX |