summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2002-09-18 15:01:08 +0000
committerKai Sommerfeld <kso@openoffice.org>2002-09-18 15:01:08 +0000
commit006c26d82cb6854de1fa2a79de7cb8f74fd712a7 (patch)
tree66eea3bf1c09b825a9bc6f6779cdb9d1e93744cc /ucb
parent8333545be329908c50a2df80c0f9d4b0cf24206c (diff)
#96458# - Typos (caused compile error on solaris).
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/ContentProperties.hxx6
-rw-r--r--ucb/source/ucp/webdav/webdavcontent.cxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/ucb/source/ucp/webdav/ContentProperties.hxx b/ucb/source/ucp/webdav/ContentProperties.hxx
index 9753ba9624ce..61a6d13b73d1 100644
--- a/ucb/source/ucp/webdav/ContentProperties.hxx
+++ b/ucb/source/ucp/webdav/ContentProperties.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ContentProperties.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: kso $ $Date: 2002-09-16 14:37:10 $
+ * last change: $Author: kso $ $Date: 2002-09-18 16:01:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -187,7 +187,7 @@ public:
const rtl::OUString & getEscapedTitle() const { return m_aEscapedTitle; }
- const std::auto_ptr< PropertyValueMap > getProperties() const
+ const std::auto_ptr< PropertyValueMap > & getProperties() const
{ return m_xProps; }
private:
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx
index df15546d3a0d..25fee73de90f 100644
--- a/ucb/source/ucp/webdav/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav/webdavcontent.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: webdavcontent.cxx,v $
*
- * $Revision: 1.33 $
+ * $Revision: 1.34 $
*
- * last change: $Author: kso $ $Date: 2002-09-16 14:37:13 $
+ * last change: $Author: kso $ $Date: 2002-09-18 16:01:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1229,7 +1229,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues(
{
// Append all standard UCB, DAV and HTTP properties.
- const std::auto_ptr< PropertyValueMap > xProps = rData.getProperties();
+ const std::auto_ptr< PropertyValueMap > & xProps = rData.getProperties();
PropertyValueMap::const_iterator it = xProps->begin();
PropertyValueMap::const_iterator end = xProps->end();