summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xeescher.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/xeescher.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/xeescher.cxx')
-rw-r--r--sc/source/filter/excel/xeescher.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xeescher.cxx b/sc/source/filter/excel/xeescher.cxx
index 8e8506ad9116..0082e1c0e0b3 100644
--- a/sc/source/filter/excel/xeescher.cxx
+++ b/sc/source/filter/excel/xeescher.cxx
@@ -1220,7 +1220,7 @@ XclExpNote::XclExpNote(const XclExpRoot& rRoot, const ScAddress& rScPos,
if( pScNote->GetAuthor().isEmpty() )
maAuthor = XclExpString( " " );
else
- maAuthor = XclExpString( pScNote->GetAuthor(), EXC_STR_DEFAULT, 54 );
+ maAuthor = XclExpString( pScNote->GetAuthor(), XclStrFlags::NONE, 54 );
}
SetRecSize( 9 + maAuthor.GetSize() );