diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-17 12:37:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-18 08:49:02 +0200 |
commit | 7d2cf760ec091a7b1ef6e42616a89b28446682f8 (patch) | |
tree | 23e2c197ebc493956b3c053d0789bf1e34a362c3 /svx/source/sdr | |
parent | 6e81c5829702d49b434788be33b687bb3f282b15 (diff) |
convert XFormTextShadow to scoped enum
Change-Id: I1ff9d2f4aec60f050d9dde8e4c0e991169f585cd
Diffstat (limited to 'svx/source/sdr')
-rw-r--r-- | svx/source/sdr/attribute/sdrformtextattribute.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/sdr/attribute/sdrformtextattribute.cxx b/svx/source/sdr/attribute/sdrformtextattribute.cxx index ac34ebc32817..549103cb567e 100644 --- a/svx/source/sdr/attribute/sdrformtextattribute.cxx +++ b/svx/source/sdr/attribute/sdrformtextattribute.cxx @@ -159,7 +159,7 @@ namespace drawinglayer Color maFormTextShdwColor; // shadow color // outline attributes; used when getFormTextOutline() is true and (for - // shadow) when getFormTextShadow() != XFTSHADOW_NONE + // shadow) when getFormTextShadow() != XFormTextShadow::NONE SdrFormTextOutlineAttribute maOutline; SdrFormTextOutlineAttribute maShadowOutline; @@ -195,7 +195,7 @@ namespace drawinglayer aLineAttribute, aStrokeAttribute, nTransparence); } - if(XFTSHADOW_NONE != getFormTextShadow()) + if(XFormTextShadow::NONE != getFormTextShadow()) { // also need to prepare attributes for shadow outlines const LineAttribute aLineAttribute(impGetLineAttribute(true, rSet)); @@ -215,7 +215,7 @@ namespace drawinglayer mnFormTextShdwTransp(0), meFormTextStyle(XFT_NONE), meFormTextAdjust(XFT_CENTER), - meFormTextShadow(XFTSHADOW_NONE), + meFormTextShadow(XFormTextShadow::NONE), maFormTextShdwColor(), maOutline(), maShadowOutline(), |