diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-16 11:56:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-17 08:45:15 +0200 |
commit | 42ab2cfbd92bc30a62a2c126d4ad6d5726846d8b (patch) | |
tree | 07cfc005093e203c93c633da24eb5bdcf00314b6 /forms/source | |
parent | a49eeecd2372c620caa66428acaf27ebc7d70e92 (diff) |
convert SvxLineSpace to scoped enum
and rename to be more explicit
Change-Id: Id06e6b68ef30e1d0d0daf19c37a390060e8bcb01
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/richtext/rtattributehandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/richtext/rtattributehandler.cxx b/forms/source/richtext/rtattributehandler.cxx index cc0f4886335d..fce2049d9ae3 100644 --- a/forms/source/richtext/rtattributehandler.cxx +++ b/forms/source/richtext/rtattributehandler.cxx @@ -226,7 +226,7 @@ namespace frm (void)_pAdditionalArg; SvxLineSpacingItem aLineSpacing( m_nLineSpace, getWhich() ); - aLineSpacing.GetLineSpaceRule() = SVX_LINE_SPACE_AUTO; + aLineSpacing.SetLineSpaceRule( SvxLineSpaceRule::Auto ); if ( 100 == m_nLineSpace ) aLineSpacing.SetInterLineSpaceRule( SvxInterLineSpaceRule::Off ); else |