summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/ucbstorage.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sot/source/sdstor/ucbstorage.cxx')
-rw-r--r--sot/source/sdstor/ucbstorage.cxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx
index e2c84c0ba28a..fa557af651ea 100644
--- a/sot/source/sdstor/ucbstorage.cxx
+++ b/sot/source/sdstor/ucbstorage.cxx
@@ -2946,29 +2946,6 @@ bool UCBStorage::Remove( const OUString& rEleName )
return ( pElement != NULL );
}
-bool UCBStorage::Rename( const OUString& rEleName, const OUString& rNewName )
-{
- if( rEleName.isEmpty()|| rNewName.isEmpty() )
- return false;
-
- UCBStorageElement_Impl *pAlreadyExisting = FindElement_Impl( rNewName );
- if ( pAlreadyExisting )
- {
- SetError( SVSTREAM_ACCESS_DENIED );
- return false; // can't change to a name that is already used
- }
-
- UCBStorageElement_Impl *pElement = FindElement_Impl( rEleName );
- if ( pElement )
- {
- pElement->m_aName = rNewName;
- }
- else
- SetError( SVSTREAM_FILE_NOT_FOUND );
-
- return pElement != NULL;
-}
-
bool UCBStorage::ValidateFAT()
{
// ???