summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/ContentProperties.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-20 21:57:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-22 09:39:15 +0100
commitaf6752b88e34df05449a4237d9be0fac509c227c (patch)
tree39eb9c3f30cfa12bba0546db5d643512323c9084 /ucb/source/ucp/webdav/ContentProperties.cxx
parentb2d7ede98716806cc4b3ea8547247175d5f04d18 (diff)
callcatcher: remove unused methods
Diffstat (limited to 'ucb/source/ucp/webdav/ContentProperties.cxx')
-rw-r--r--ucb/source/ucp/webdav/ContentProperties.cxx28
1 files changed, 0 insertions, 28 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 );