diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-20 21:57:36 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-22 09:39:15 +0100 |
commit | af6752b88e34df05449a4237d9be0fac509c227c (patch) | |
tree | 39eb9c3f30cfa12bba0546db5d643512323c9084 /ucb | |
parent | b2d7ede98716806cc4b3ea8547247175d5f04d18 (diff) |
callcatcher: remove unused methods
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/ContentProperties.cxx | 28 | ||||
-rw-r--r-- | ucb/source/ucp/webdav/ContentProperties.hxx | 6 |
2 files changed, 0 insertions, 34 deletions
diff --git a/ucb/source/ucp/webdav/ContentProperties.cxx b/ucb/source/ucp/webdav/ContentProperties.cxx index 5332f2353366..de6b1ff245e1 100644 --- a/ucb/source/ucp/webdav/ContentProperties.cxx +++ b/ucb/source/ucp/webdav/ContentProperties.cxx @@ -426,34 +426,6 @@ void ContentProperties::addProperties( } //========================================================================= -void ContentProperties::addProperties( const ContentProperties & rProps ) -{ - PropertyValueMap::const_iterator it = rProps.m_xProps->begin(); - const PropertyValueMap::const_iterator end = rProps.m_xProps->end(); - - while ( it != end ) - { - addProperty( - (*it).first, (*it).second.value(), (*it).second.isCaseSensitive() ); - ++it; - } -} - -//========================================================================= -void ContentProperties::addProperties( - const std::vector< DAVPropertyValue > & rProps ) -{ - std::vector< DAVPropertyValue >::const_iterator it = rProps.begin(); - const std::vector< DAVPropertyValue >::const_iterator end = rProps.end(); - - while ( it != end ) - { - addProperty( (*it) ); - ++it; - } -} - -//========================================================================= void ContentProperties::addProperty( const DAVPropertyValue & rProp ) { addProperty( rProp.Name, rProp.Value, rProp.IsCaseSensitive ); diff --git a/ucb/source/ucp/webdav/ContentProperties.hxx b/ucb/source/ucp/webdav/ContentProperties.hxx index bf9af15f6b8f..4f64c016823a 100644 --- a/ucb/source/ucp/webdav/ContentProperties.hxx +++ b/ucb/source/ucp/webdav/ContentProperties.hxx @@ -160,12 +160,6 @@ public: void addProperties( const std::vector< rtl::OUString > & rProps, const ContentProperties & rContentProps ); - // overwrites probably existing entries. - void addProperties( const ContentProperties & rProps ); - - // overwrites probably existing entries. - void addProperties( const std::vector< DAVPropertyValue > & rProps ); - // overwrites probably existing entry. void addProperty( const rtl::OUString & rName, const com::sun::star::uno::Any & rValue, |