summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xehelper.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-10-30 15:33:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-31 07:36:42 +0100
commit05fbb25379516f529dde9400104d402c51ec2f2c (patch)
treef3ea02826a8856fac2de66c08414ecd9d7a6924a /sc/source/filter/inc/xehelper.hxx
parent7fed35ff43d6e8c1e838c6fe582edd308692bab0 (diff)
convert XclStrFlags to scoped enum
Change-Id: I1127e8231820d093cddc87762dc5d3735c3fce7b Reviewed-on: https://gerrit.libreoffice.org/44055 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/filter/inc/xehelper.hxx')
-rw-r--r--sc/source/filter/inc/xehelper.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/filter/inc/xehelper.hxx b/sc/source/filter/inc/xehelper.hxx
index 7bcdd57759ad..22ae75852343 100644
--- a/sc/source/filter/inc/xehelper.hxx
+++ b/sc/source/filter/inc/xehelper.hxx
@@ -229,7 +229,7 @@ public:
static XclExpStringRef CreateString(
const XclExpRoot& rRoot,
const OUString& rString,
- XclStrFlags nFlags = EXC_STR_DEFAULT,
+ XclStrFlags nFlags = XclStrFlags::NONE,
sal_uInt16 nMaxLen = EXC_STR_MAXLEN );
/** Creates a new unformatted string from the passed character.
@@ -242,7 +242,7 @@ public:
static XclExpStringRef CreateString(
const XclExpRoot& rRoot,
sal_Unicode cChar,
- XclStrFlags nFlags = EXC_STR_DEFAULT,
+ XclStrFlags nFlags = XclStrFlags::NONE,
sal_uInt16 nMaxLen = EXC_STR_MAXLEN );
/** Appends an unformatted string to an Excel string object.
@@ -279,7 +279,7 @@ public:
const XclExpRoot& rRoot,
const OUString& rString,
const ScPatternAttr* pCellAttr,
- XclStrFlags nFlags = EXC_STR_DEFAULT,
+ XclStrFlags nFlags = XclStrFlags::NONE,
sal_uInt16 nMaxLen = EXC_STR_MAXLEN );
/** Creates a new formatted string from a Calc edit cell.
@@ -296,7 +296,7 @@ public:
const EditTextObject& rEditText,
const ScPatternAttr* pCellAttr,
XclExpHyperlinkHelper& rLinkHelper,
- XclStrFlags nFlags = EXC_STR_DEFAULT,
+ XclStrFlags nFlags = XclStrFlags::NONE,
sal_uInt16 nMaxLen = EXC_STR_MAXLEN );
/** Creates a new formatted string from a drawing text box.
@@ -308,7 +308,7 @@ public:
static XclExpStringRef CreateString(
const XclExpRoot& rRoot,
const SdrTextObj& rTextObj,
- XclStrFlags nFlags = EXC_STR_DEFAULT );
+ XclStrFlags nFlags = XclStrFlags::NONE );
/** Creates a new formatted string from a edit text string.
@param rEditObj The edittext object.
@@ -317,7 +317,7 @@ public:
static XclExpStringRef CreateString(
const XclExpRoot& rRoot,
const EditTextObject& rEditObj,
- XclStrFlags nFlags = EXC_STR_DEFAULT );
+ XclStrFlags nFlags = XclStrFlags::NONE );
/** Returns the script type first text portion different to WEAK, or the system
default script type, if there is only weak script in the passed string. */