summaryrefslogtreecommitdiff
path: root/ucbhelper/source
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source')
-rw-r--r--ucbhelper/source/client/content.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx
index 34d6124eae2a..f25f56d4e1b2 100644
--- a/ucbhelper/source/client/content.cxx
+++ b/ucbhelper/source/client/content.cxx
@@ -956,19 +956,15 @@ bool Content::transferContent( const Content& rSourceContent,
bool bCheckIn = false;
switch ( eOperation )
{
- case InsertOperation_COPY:
+ case InsertOperation::Copy:
eTransOp = TransferCommandOperation_COPY;
break;
- case InsertOperation_MOVE:
+ case InsertOperation::Move:
eTransOp = TransferCommandOperation_MOVE;
break;
- case InsertOperation_LINK:
- eTransOp = TransferCommandOperation_LINK;
- break;
-
- case InsertOperation_CHECKIN:
+ case InsertOperation::Checkin:
eTransOp = TransferCommandOperation_COPY;
sCommand = "checkin";
bCheckIn = true;