summaryrefslogtreecommitdiff
path: root/comphelper/source
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-06-05 17:38:36 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-06-05 17:38:36 +0000
commit3e8a7f81aac945aea703c90b36d5a07afe332257 (patch)
treed9e0ad1d5c032215d0ea20010a7809f80df3bcf4 /comphelper/source
parentcac43b6ab26eee883f593deff79e4c9b3851188b (diff)
INTEGRATION: CWS bgdlremove (1.14.12); FILE MERGED
2007/05/25 10:34:56 kso 1.14.12.3: #i77419# - adapt to changed namespace of ucbhelper classes. 2007/05/21 12:49:29 kso 1.14.12.2: RESYNC: (1.14-1.15); FILE MERGED 2007/05/18 08:57:33 kso 1.14.12.1: #i77419# - cleanup of ucbhelper namespaces.
Diffstat (limited to 'comphelper/source')
-rw-r--r--comphelper/source/misc/mediadescriptor.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/comphelper/source/misc/mediadescriptor.cxx b/comphelper/source/misc/mediadescriptor.cxx
index 943510cff956..af8357cf2280 100644
--- a/comphelper/source/misc/mediadescriptor.cxx
+++ b/comphelper/source/misc/mediadescriptor.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: mediadescriptor.cxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: kz $ $Date: 2007-05-09 13:25:30 $
+ * last change: $Author: ihi $ $Date: 2007-06-05 18:38:36 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -500,7 +500,7 @@ sal_Bool MediaDescriptor::isStreamReadOnly() const
bReadOnly = sal_True;
else
{
- ::ucb::Content aContent(xContent, css::uno::Reference< css::ucb::XCommandEnvironment >());
+ ::ucbhelper::Content aContent(xContent, css::uno::Reference< css::ucb::XCommandEnvironment >());
aContent.getPropertyValue(CONTENTPROP_ISREADONLY) >>= bReadOnly;
}
}
@@ -583,7 +583,7 @@ sal_Bool MediaDescriptor::impl_openStreamWithPostData( const css::uno::Reference
MediaDescriptor::PROP_INTERACTIONHANDLER(),
css::uno::Reference< css::task::XInteractionHandler >());
css::uno::Reference< css::ucb::XProgressHandler > xProgress;
- ::ucb::CommandEnvironment* pCommandEnv = new ::ucb::CommandEnvironment(xInteraction, xProgress);
+ ::ucbhelper::CommandEnvironment* pCommandEnv = new ::ucbhelper::CommandEnvironment(xInteraction, xProgress);
css::uno::Reference< css::ucb::XCommandEnvironment > xCommandEnv(static_cast< css::ucb::XCommandEnvironment* >(pCommandEnv), css::uno::UNO_QUERY);
// media type
@@ -606,12 +606,12 @@ sal_Bool MediaDescriptor::impl_openStreamWithPostData( const css::uno::Reference
xSeek->seek( 0 );
// a content for the URL
- ::ucb::Content aContent( sURL, xCommandEnv );
+ ::ucbhelper::Content aContent( sURL, xCommandEnv );
// use post command
css::ucb::PostCommandArgument2 aPostArgument;
aPostArgument.Source = _rxPostData;
- css::uno::Reference< css::io::XActiveDataSink > xSink( new ucb::ActiveDataSink );
+ css::uno::Reference< css::io::XActiveDataSink > xSink( new ucbhelper::ActiveDataSink );
aPostArgument.Sink = xSink;
aPostArgument.MediaType = sMediaType;
aPostArgument.Referer = getUnpackedValueOrDefault( PROP_REFERRER(), ::rtl::OUString() );
@@ -757,16 +757,16 @@ sal_Bool MediaDescriptor::impl_openStreamWithURL(const ::rtl::OUString& sURL)
css::uno::Reference< css::task::XInteractionHandler > xInteraction(static_cast< css::task::XInteractionHandler* >(pInteraction), css::uno::UNO_QUERY);
css::uno::Reference< css::ucb::XProgressHandler > xProgress;
- ::ucb::CommandEnvironment* pCommandEnv = new ::ucb::CommandEnvironment(xInteraction, xProgress);
+ ::ucbhelper::CommandEnvironment* pCommandEnv = new ::ucbhelper::CommandEnvironment(xInteraction, xProgress);
css::uno::Reference< css::ucb::XCommandEnvironment > xCommandEnv(static_cast< css::ucb::XCommandEnvironment* >(pCommandEnv), css::uno::UNO_QUERY);
// try to create the content
// no content -> no stream => return immediatly with FALSE
- ::ucb::Content aContent;
+ ::ucbhelper::Content aContent;
css::uno::Reference< css::ucb::XContent > xContent;
try
{
- aContent = ::ucb::Content(sURL, xCommandEnv);
+ aContent = ::ucbhelper::Content(sURL, xCommandEnv);
xContent = aContent.get();
}
catch(const css::uno::RuntimeException&)