summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-11-09 12:50:54 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-11-09 12:50:54 +0000
commitcdec00652af713acdcd790851f9f79885acc95ee (patch)
tree85ef1e9e473b80fedce8bc51a32c3ff9ccfd416b /ucb
parent34347fbf0e9e0a1c7f876b398b0946b93a904352 (diff)
INTEGRATION: CWS jl13 (1.12.2); FILE MERGED
2004/10/21 13:02:17 jl 1.12.2.2: RESYNC: (1.12-1.13); FILE MERGED 2004/09/14 13:00:06 dbo 1.12.2.1: #i34149# fixing title property being decoded
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/package/pkguri.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/package/pkguri.cxx b/ucb/source/ucp/package/pkguri.cxx
index d3d9afe62daf..65b8d0268e11 100644
--- a/ucb/source/ucp/package/pkguri.cxx
+++ b/ucb/source/ucp/package/pkguri.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pkguri.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: rt $ $Date: 2004-09-08 17:05:17 $
+ * last change: $Author: hr $ $Date: 2004-11-09 13:50:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -205,9 +205,9 @@ void PackageUri::init() const
sal_Int32 nLastSlash = m_aPackage.lastIndexOf( '/' );
if ( nLastSlash != -1 )
- m_aName = m_aPackage.copy( nLastSlash + 1 );
+ m_aName = decodeSegment( m_aPackage.copy( nLastSlash + 1 ) );
else
- m_aName = m_aPackage;
+ m_aName = decodeSegment( m_aPackage );
}
else
{