summaryrefslogtreecommitdiff
path: root/fileaccess
diff options
context:
space:
mode:
authorPovilas Kanapickas <povilas.kanapickas@gmail.com>2010-10-18 19:37:48 +0100
committerMichael Meeks <michael.meeks@novell.com>2010-10-18 19:38:00 +0100
commitbc8fcf207ffeee1dd6fb4a361b0ad5c5def21beb (patch)
tree43f54910146344613e641bd0b54cee3069292624 /fileaccess
parent34f1c06830ae530bea4f11aca91e2836a53fd764 (diff)
remove non-compiled code
Diffstat (limited to 'fileaccess')
-rw-r--r--fileaccess/source/FileAccess.cxx37
1 files changed, 1 insertions, 36 deletions
diff --git a/fileaccess/source/FileAccess.cxx b/fileaccess/source/FileAccess.cxx
index a7f229e2af33..e33ab4205b1e 100644
--- a/fileaccess/source/FileAccess.cxx
+++ b/fileaccess/source/FileAccess.cxx
@@ -282,42 +282,7 @@ void OFileAccess::transferImpl( const rtl::OUString& rSource,
// #i29648#
//
-#if 0
- // Note: A hierachical UCB content implements interface XChild, which
- // has a method getParent(). Unfortunately this does not always help
- // here, because it is not guaranteed that a content object for a
- // non-existing resource can be created. Thus, it will happen that an
- // exception is thrown when trying to create a UCB content for the
- // destination URL.
- try
- {
- ucbhelper::Content aFullDest(
- aDestObj.GetMainURL(
- INetURLObject::NO_DECODE ), mxEnvironment );
-
- Reference< XChild > xChild( aFullDest.get(), UNO_QUERY_THROW );
- Reference< com::sun::star::ucb::XContent >
- xParent( xChild->getParent(), UNO_QUERY_THROW );
- ucbhelper::Content aParent( xParent, mxEnvironment );
-
- aDestURL = aParent.getURL();
-
- rtl::OUString aNameTmp;
- aFullDest.getPropertyValue(
- rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Title" ) ) )
- >>= aNameTmp;
- aName = aNameTmp;
- }
- catch ( Exception const & )
- {
- throw RuntimeException(
- rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(
- "OFileAccess::transferrImpl - Unable to "
- "obtain destination folder URL!" ) ),
- static_cast< cppu::OWeakObject * >( this ) );
- }
-#else
if ( aDestObj.GetProtocol() == INET_PROT_VND_SUN_STAR_EXPAND )
{
// Hack: Expand destination URL using Macro Expander and try again
@@ -368,7 +333,7 @@ void OFileAccess::transferImpl( const rtl::OUString& rSource,
"OFileAccess::transferrImpl - Unable to obtain "
"destination folder URL!" ) ),
static_cast< cppu::OWeakObject * >( this ) );
-#endif
+
}
ucbhelper::Content aDestPath( aDestURL, mxEnvironment );