diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-25 14:42:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-26 09:41:34 +0200 |
commit | 44101b295071484f4797a9d3140e5ea1a42bc431 (patch) | |
tree | 0cb68ab8840fdeb581fd5cba8b25640088fff731 /sc/source/ui | |
parent | 0fb66458c08b9c0ce59bca85e77d26fad8b59e4b (diff) |
convert NUM_ constants to enum clas
Change-Id: Id41ea91aaf618c7f3f323698c09caa7c8df2290a
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/unoobj/styleuno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/unoobj/styleuno.cxx b/sc/source/ui/unoobj/styleuno.cxx index eeec6c1c513e..1936a69a1d73 100644 --- a/sc/source/ui/unoobj/styleuno.cxx +++ b/sc/source/ui/unoobj/styleuno.cxx @@ -1169,7 +1169,7 @@ void SAL_CALL ScStyleObj::setName( const OUString& aNewName ) uno::Reference<container::XIndexReplace> ScStyleObj::CreateEmptyNumberingRules() { - SvxNumRule aRule( 0, 0, true ); // nothing supported + SvxNumRule aRule( SvxNumRuleFlags::NONE, 0, true ); // nothing supported return SvxCreateNumRule( &aRule ); } |