diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-03-30 20:52:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-02 14:53:47 +0100 |
commit | b26df89e6c9405c5818a6f31f2c012ab657c421d (patch) | |
tree | 2ffbd0eb473f70da7f03685528b479640bfbe7b2 /xmloff | |
parent | 54bc03051702ad279dfd17471a3d5c30003c892d (diff) |
callcatcher: remove some unused code
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/inc/xmloff/xmlimppr.hxx | 14 | ||||
-rw-r--r-- | xmloff/source/style/xmlimppr.cxx | 11 |
2 files changed, 3 insertions, 22 deletions
diff --git a/xmloff/inc/xmloff/xmlimppr.hxx b/xmloff/inc/xmloff/xmlimppr.hxx index eb1e245a044a..ea12f8154e25 100644 --- a/xmloff/inc/xmloff/xmlimppr.hxx +++ b/xmloff/inc/xmloff/xmlimppr.hxx @@ -89,17 +89,9 @@ public: void ChainImportMapper( const UniReference< SvXMLImportPropertyMapper>& rMapper ); - /** fills the given itemset with the attributes in the given list */ - void importXML( - ::std::vector< XMLPropertyState >& rProperties, - ::com::sun::star::uno::Reference< - ::com::sun::star::xml::sax::XAttributeList > xAttrList, - const SvXMLUnitConverter& rUnitConverter, - const SvXMLNamespaceMap& rNamespaceMap, - sal_uInt32 nPropType ) const; - - /** like above, except that the mart is only serached within the range - * [nStartIdx, nEndIdx[ + /** fills the given itemset with the attributes in the given list + * the map is only searched within the range + * [nStartIdx, nEndIdx[ */ void importXML( ::std::vector< XMLPropertyState >& rProperties, diff --git a/xmloff/source/style/xmlimppr.cxx b/xmloff/source/style/xmlimppr.cxx index d896429fd9bc..624b46d4928a 100644 --- a/xmloff/source/style/xmlimppr.cxx +++ b/xmloff/source/style/xmlimppr.cxx @@ -112,17 +112,6 @@ void SvXMLImportPropertyMapper::ChainImportMapper( } } -void SvXMLImportPropertyMapper::importXML( - vector< XMLPropertyState >& rProperties, - Reference< XAttributeList > xAttrList, - const SvXMLUnitConverter& rUnitConverter, - const SvXMLNamespaceMap& rNamespaceMap, - sal_uInt32 nPropType ) const -{ - importXML( rProperties, xAttrList, rUnitConverter, rNamespaceMap, - nPropType,-1, -1 ); -} - /** fills the given itemset with the attributes in the given list */ void SvXMLImportPropertyMapper::importXML( vector< XMLPropertyState >& rProperties, |