diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-01-21 16:13:19 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-01-21 16:13:19 +0000 |
commit | 87ff2475ffd3914175d11538b780bd4f6b328cf0 (patch) | |
tree | 22a91bd15532638c08f921d02d210de5917af48b | |
parent | 4368d94470f71be663ba1fed12cc5b3a127bd4c6 (diff) |
INTEGRATION: CWS impress23 (1.6.40); FILE MERGED
2004/12/29 14:39:37 dbo 1.6.40.1: #i38957# removed extract_throw<>(), using Any::get<>() now
-rw-r--r-- | desktop/source/deployment/registry/dp_registry.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/desktop/source/deployment/registry/dp_registry.cxx b/desktop/source/deployment/registry/dp_registry.cxx index 185c673ce809..c40317616398 100644 --- a/desktop/source/deployment/registry/dp_registry.cxx +++ b/desktop/source/deployment/registry/dp_registry.cxx @@ -2,9 +2,9 @@ * * $RCSfile: dp_registry.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: hr $ $Date: 2004-11-09 14:10:54 $ + * last change: $Author: kz $ $Date: 2005-01-21 17:13:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -480,9 +480,8 @@ Reference<deployment::XPackage> PackageRegistryImpl::bindPackage( if (create_ucb_content( &ucbContent, url, xCmdEnv, false /* no throw */ )) { - OUString title( extract_throw<OUString>( - ucbContent.getPropertyValue( - StrTitle::get() ) ) ); + OUString title( ucbContent.getPropertyValue( + StrTitle::get() ).get<OUString>() ); for (;;) { const t_string2string::const_iterator iFind( |