diff options
author | Mikhail Voitenko <mav@openoffice.org> | 2002-11-05 08:00:53 +0000 |
---|---|---|
committer | Mikhail Voitenko <mav@openoffice.org> | 2002-11-05 08:00:53 +0000 |
commit | 9f9d3cebb96a82076d53bc7f6fa3472c5c46aee8 (patch) | |
tree | fc6c0f00735a8b198dd518a880f00a731cfd452a /unotools | |
parent | 245bf54aed8a865d152d24f46547507b474eadb1 (diff) |
#85375# use encoded urls
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/ucbhelper/ucbhelper.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/ucbhelper/ucbhelper.cxx b/unotools/source/ucbhelper/ucbhelper.cxx index 3641190456b4..76bee5189a11 100644 --- a/unotools/source/ucbhelper/ucbhelper.cxx +++ b/unotools/source/ucbhelper/ucbhelper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ucbhelper.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: vg $ $Date: 2001-12-13 18:16:09 $ + * last change: $Author: mav $ $Date: 2002-11-05 09:00:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -596,7 +596,7 @@ sal_Bool UCBContentHelper::MakeFolder( const String& rFolder ) Reference< XMultiServiceFactory > xFactory = ::comphelper::getProcessServiceFactory(); Reference< XInteractionHandler > xInteractionHandler = Reference< XInteractionHandler > ( xFactory->createInstance( OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.uui.InteractionHandler") ) ), UNO_QUERY ); - if ( Content::create( aURL.GetMainURL(), new CommandEnvironment( xInteractionHandler, Reference< XProgressHandler >() ), aCnt ) ) + if ( Content::create( aURL.GetMainURL( INetURLObject::NO_DECODE ), new CommandEnvironment( xInteractionHandler, Reference< XProgressHandler >() ), aCnt ) ) return MakeFolder( aCnt, aTitle, aNew ); else return sal_False; |