From d198a8221d4a1a08bb78ad083ff28136e3f65728 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 9 Feb 2017 14:47:28 +0200 Subject: convert InsertOperation to scoped enum and drop unused LINK enumerator Change-Id: I6c42424ae5a7503b3e14e5f04fcf7a49b595b416 --- include/ucbhelper/content.hxx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'include/ucbhelper') diff --git a/include/ucbhelper/content.hxx b/include/ucbhelper/content.hxx index 4943fce10979..90a28229f9dd 100644 --- a/include/ucbhelper/content.hxx +++ b/include/ucbhelper/content.hxx @@ -76,12 +76,11 @@ enum ResultSetInclude * These are the possible values for the parameter eOperation of method * ucbhelper::Content::insertNewContent. */ -enum InsertOperation +enum class InsertOperation { - InsertOperation_COPY, // copy source data - InsertOperation_MOVE, // move source data - InsertOperation_LINK, // create a link to source - InsertOperation_CHECKIN // check-in source data + Copy, // copy source data + Move, // move source data + Checkin // check-in source data }; -- cgit