summaryrefslogtreecommitdiffstats
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-09 14:47:28 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-10 08:08:45 +0200
commitd198a8221d4a1a08bb78ad083ff28136e3f65728 (patch)
tree8773aa83dae9b568409221eae6e985fc138074d3 /ucb
parentconvert LocationType to scoped enum (diff)
downloadcore-d198a8221d4a1a08bb78ad083ff28136e3f65728.tar.gz
core-d198a8221d4a1a08bb78ad083ff28136e3f65728.zip
convert InsertOperation to scoped enum
and drop unused LINK enumerator Change-Id: I6c42424ae5a7503b3e14e5f04fcf7a49b595b416
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/core/FileAccess.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/core/FileAccess.cxx b/ucb/source/core/FileAccess.cxx
index 450bafcb5e65..5cd51712e073 100644
--- a/ucb/source/core/FileAccess.cxx
+++ b/ucb/source/core/FileAccess.cxx
@@ -263,8 +263,8 @@ void OFileAccess::transferImpl( const OUString& rSource,
{
(void)aDestPath.transferContent(aSrc,
bMoveData
- ? ucbhelper::InsertOperation_MOVE
- : ucbhelper::InsertOperation_COPY,
+ ? ucbhelper::InsertOperation::Move
+ : ucbhelper::InsertOperation::Copy,
aName,
css::ucb::NameClash::OVERWRITE);
}