diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-07-02 22:58:56 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-07-02 23:03:09 +0200 |
commit | 9746dc9ad62e7f3a39961733f2ac204e90289034 (patch) | |
tree | a52c19fd5801291a118b7db0cadf897ff6ac7ca6 /include | |
parent | 0879c444ed5187f813827ae0e486ad9cc7a4c0d4 (diff) |
fix ODF validation errors
Introduced by 7d9bb549d498d6beed2c4050c402d09643febdfa
Change-Id: I09411486b93a031a0c405579d34d9e744b8002a7
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/xmlexppr.hxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/xmloff/xmlexppr.hxx b/include/xmloff/xmlexppr.hxx index 8d98a1b257dd..44fae061d040 100644 --- a/include/xmloff/xmlexppr.hxx +++ b/include/xmloff/xmlexppr.hxx @@ -126,7 +126,8 @@ public: bool Equals( const ::std::vector< XMLPropertyState >& aProperties1, const ::std::vector< XMLPropertyState >& aProperties2 ) const; - /** fills the given attribute list with the items in the given set */ + /** fills the given attribute list with the items in the given set + */ void exportXML( SvXMLAttributeList& rAttrList, const ::std::vector< XMLPropertyState >& rProperties, @@ -149,12 +150,15 @@ public: sal_uInt16 nFlags = 0 ) const; /** like above but only properties whose property map index is within the - specified range are exported */ + * specified range are exported + * + * @param bExtensionNamespace use the extension namespace for graphic-properties + */ void exportXML( SvXMLExport& rExport, const ::std::vector< XMLPropertyState >& rProperties, sal_Int32 nPropMapStartIdx, sal_Int32 nPropMapEndIdx, - sal_uInt16 nFlags = 0 ) const; + sal_uInt16 nFlags = 0, bool bExtensionNamespace = false ) const; /** this method is called for every item that has the MID_FLAG_ELEMENT_EXPORT flag set */ |