summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlatr.cxx
diff options
context:
space:
mode:
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;