summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlatr.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-15 15:40:48 +0200
committerNoel Grandin <noel@peralex.com>2016-08-17 08:45:15 +0200
commitd5ad8f9619d463a643ab53447cf3576a9ff1a716 (patch)
tree47ce09a862b18ecab15d4fec9c74fea34b42e930 /sw/source/filter/html/htmlatr.cxx
parentfd0e67ce0d8cf84470b1414009ed1e0f81410b0f (diff)
convert SvxBreak to scoped enum
Change-Id: If8b79ed617e5662550bd73bd1506d047217f2313
Diffstat (limited to 'sw/source/filter/html/htmlatr.cxx')
-rw-r--r--sw/source/filter/html/htmlatr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/html/htmlatr.cxx b/sw/source/filter/html/htmlatr.cxx
index b895f43fcae4..a842c8f437a8 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -2167,13 +2167,13 @@ Writer& OutHTML_SwTextNode( Writer& rWrt, const SwContentNode& rNode )
{
switch( static_cast<const SvxFormatBreakItem *>(pItem)->GetBreak() )
{
- case SVX_BREAK_PAGE_BEFORE:
+ case SvxBreak::PageBefore:
bPageBreakBefore = true;
break;
- case SVX_BREAK_PAGE_AFTER:
+ case SvxBreak::PageAfter:
bPageBreakBehind = true;
break;
- case SVX_BREAK_PAGE_BOTH:
+ case SvxBreak::PageBoth:
bPageBreakBefore = true;
bPageBreakBehind = true;
break;