summaryrefslogtreecommitdiff
path: root/sw/source/core/edit
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/core/edit
parentfd0e67ce0d8cf84470b1414009ed1e0f81410b0f (diff)
convert SvxBreak to scoped enum
Change-Id: If8b79ed617e5662550bd73bd1506d047217f2313
Diffstat (limited to 'sw/source/core/edit')
-rw-r--r--sw/source/core/edit/autofmt.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/edit/autofmt.cxx b/sw/source/core/edit/autofmt.cxx
index c85e25c204c7..1d129cc4a48e 100644
--- a/sw/source/core/edit/autofmt.cxx
+++ b/sw/source/core/edit/autofmt.cxx
@@ -1052,7 +1052,7 @@ bool SwAutoFormat::HasBreakAttr( const SwTextNode& rTextNd )
const SfxPoolItem* pItem;
if( SfxItemState::SET == pSet->GetItemState( RES_BREAK, false, &pItem )
- && SVX_BREAK_NONE != static_cast<const SvxFormatBreakItem*>(pItem)->GetBreak() )
+ && SvxBreak::NONE != static_cast<const SvxFormatBreakItem*>(pItem)->GetBreak() )
return true;
if( SfxItemState::SET == pSet->GetItemState( RES_PAGEDESC, false, &pItem )