summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xetable.cxx
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/excel/xetable.cxx
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/excel/xetable.cxx')
-rw-r--r--sc/source/filter/excel/xetable.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/excel/xetable.cxx b/sc/source/filter/excel/xetable.cxx
index ebd7f660c22a..39302bbc637e 100644
--- a/sc/source/filter/excel/xetable.cxx
+++ b/sc/source/filter/excel/xetable.cxx
@@ -691,7 +691,7 @@ XclExpLabelCell::XclExpLabelCell(
{
sal_uInt16 nMaxLen = (rRoot.GetBiff() == EXC_BIFF8) ? EXC_STR_MAXLEN : EXC_LABEL_MAXLEN;
XclExpStringRef xText = XclExpStringHelper::CreateCellString(
- rRoot, rStr, pPattern, EXC_STR_DEFAULT, nMaxLen);
+ rRoot, rStr, pPattern, XclStrFlags::NONE, nMaxLen);
Init( rRoot, pPattern, xText );
}
@@ -706,10 +706,10 @@ XclExpLabelCell::XclExpLabelCell(
XclExpStringRef xText;
if (pEditText)
xText = XclExpStringHelper::CreateCellString(
- rRoot, *pEditText, pPattern, rLinkHelper, EXC_STR_DEFAULT, nMaxLen);
+ rRoot, *pEditText, pPattern, rLinkHelper, XclStrFlags::NONE, nMaxLen);
else
xText = XclExpStringHelper::CreateCellString(
- rRoot, EMPTY_OUSTRING, pPattern, EXC_STR_DEFAULT, nMaxLen);
+ rRoot, EMPTY_OUSTRING, pPattern, XclStrFlags::NONE, nMaxLen);
Init( rRoot, pPattern, xText );
}