diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-09 14:47:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-10 08:08:45 +0200 |
commit | d198a8221d4a1a08bb78ad083ff28136e3f65728 (patch) | |
tree | 8773aa83dae9b568409221eae6e985fc138074d3 /svl | |
parent | 48d3f2505e0dfbd487a1041747f16f761e9c455e (diff) |
convert InsertOperation to scoped enum
and drop unused LINK enumerator
Change-Id: I6c42424ae5a7503b3e14e5f04fcf7a49b595b416
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/fsstor/fsstorage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/fsstor/fsstorage.cxx b/svl/source/fsstor/fsstorage.cxx index 9bbedd210250..999a5a52e121 100644 --- a/svl/source/fsstor/fsstorage.cxx +++ b/svl/source/fsstor/fsstorage.cxx @@ -729,7 +729,7 @@ void SAL_CALL FSStorage::renameElement( const OUString& aElementName, const OUSt ::ucbhelper::Content aSourceContent( aOldURL.GetMainURL( INetURLObject::DecodeMechanism::NONE ), xDummyEnv, comphelper::getProcessComponentContext() ); if ( !GetContent()->transferContent( aSourceContent, - ::ucbhelper::InsertOperation_MOVE, + ::ucbhelper::InsertOperation::Move, aNewName, ucb::NameClash::ERROR ) ) throw io::IOException(); // TODO: error handling |