diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-04-30 09:18:31 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-04-30 09:18:31 +0000 |
commit | 42ad3fc9b035178c99cdce1e08c7fbcf5fd35dac (patch) | |
tree | c12d85237778d0f9566eb0297aff7a24bc583fe9 /ucb/source/ucp | |
parent | 1add6c0b3e010744567a1ed02909733c1344a717 (diff) |
#86337# - Fixed URL assembling code in Content::setPropertyValues(...).
Diffstat (limited to 'ucb/source/ucp')
-rw-r--r-- | ucb/source/ucp/package/pkgcontent.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ucb/source/ucp/package/pkgcontent.cxx b/ucb/source/ucp/package/pkgcontent.cxx index cf4b9ab23ffd..7e4150ade845 100644 --- a/ucb/source/ucp/package/pkgcontent.cxx +++ b/ucb/source/ucp/package/pkgcontent.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pkgcontent.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * - * last change: $Author: kso $ $Date: 2001-04-27 15:19:05 $ + * last change: $Author: kso $ $Date: 2001-04-30 10:18:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1183,6 +1183,7 @@ void Content::setPropertyValues( const Sequence< PropertyValue >& rValues ) // Assemble new content identifier... OUString aNewURL = m_aUri.getParentUri(); + aNewURL += OUString::createFromAscii( "/" ); aNewURL += m_aProps.aTitle; Reference< XContentIdentifier > xNewId = new ::ucb::ContentIdentifier( m_xSMgr, aNewURL ); |