summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ext/ucpext_datasupplier.cxx
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-03-25 11:50:52 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-03-25 11:50:52 +0100
commit902c2a5a1dffe4db1637ec4eb2c6cbd7efb14ffd (patch)
tree48e6aed93228fe0c9a71a16ea5a8e9dc94c2b53a /ucb/source/ucp/ext/ucpext_datasupplier.cxx
parent22b13738ef17f9850d79a573343cc44d7396235b (diff)
slidecopy: proper en/decoding of extension IDs
Diffstat (limited to 'ucb/source/ucp/ext/ucpext_datasupplier.cxx')
-rw-r--r--ucb/source/ucp/ext/ucpext_datasupplier.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/ext/ucpext_datasupplier.cxx b/ucb/source/ucp/ext/ucpext_datasupplier.cxx
index 3c99c95197ee..dcc1c117befa 100644
--- a/ucb/source/ucp/ext/ucpext_datasupplier.cxx
+++ b/ucb/source/ucp/ext/ucpext_datasupplier.cxx
@@ -167,7 +167,7 @@ namespace ucb { namespace ucp { namespace ext
const ::rtl::OUString& rLocalId = (*pExtInfo)[0];
ResultListEntry aEntry;
- aEntry.sId = lcl_compose( sContentIdentifier, Content::escapeIdentifier( rLocalId ) );
+ aEntry.sId = lcl_compose( sContentIdentifier, Content::encodeIdentifier( rLocalId ) );
m_pImpl->m_aResults.push_back( aEntry );
}
}
@@ -327,7 +327,7 @@ namespace ucb { namespace ucp { namespace ext
case E_ROOT:
{
const ::rtl::OUString& rId( m_pImpl->m_aResults[ i_nIndex ].sId );
- const ::rtl::OUString sTitle = Content::deescapeIdentifier( rId.copy( rId.indexOf( '/' ) + 1 ) );
+ const ::rtl::OUString sTitle = Content::decodeIdentifier( rId.copy( rId.indexOf( '/' ) + 1 ) );
xRow = Content::getArtificialNodePropertyValues( m_pImpl->m_xSMgr, getResultSet()->getProperties(), sTitle );
}
break;