summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-03-25 15:05:00 +0200
committerNoel Grandin <noel@peralex.com>2015-03-26 09:41:35 +0200
commit701343b1eea115e27a40ac93e59c0c1f0d2f6422 (patch)
tree61a6d000266018650e97b016288b7a474b89ad73 /sw
parent44101b295071484f4797a9d3140e5ea1a42bc431 (diff)
convert SvxNumRuleType to enum class
Change-Id: I4707b2f0325d2e39c11bb99ef687100eb55639e1
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/doc/number.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/number.cxx b/sw/source/core/doc/number.cxx
index 53a8d9dee472..eefe8972d5f9 100644
--- a/sw/source/core/doc/number.cxx
+++ b/sw/source/core/doc/number.cxx
@@ -860,7 +860,7 @@ SvxNumRule SwNumRule::MakeSvxNumRule() const
SvxNumRule aRule(SvxNumRuleFlags::CONTINUOUS | SvxNumRuleFlags::CHAR_TEXT_DISTANCE | SvxNumRuleFlags::CHAR_STYLE |
SvxNumRuleFlags::ENABLE_LINKED_BMP | SvxNumRuleFlags::ENABLE_EMBEDDED_BMP,
MAXLEVEL, mbContinusNum,
- meRuleType == NUM_RULE ? SVX_RULETYPE_NUMBERING : SVX_RULETYPE_OUTLINE_NUMBERING );
+ meRuleType == NUM_RULE ? SvxNumRuleType::NUMBERING : SvxNumRuleType::OUTLINE_NUMBERING );
for( sal_uInt16 n = 0; n < MAXLEVEL; ++n )
{
SwNumFmt aNumFmt = Get(n);