diff options
author | Radu Ioan <ioan.radu.g@gmail.com> | 2014-11-21 20:48:11 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-11-23 18:15:44 +0100 |
commit | 7528b498b634f0d96a710afc7faf20299cc5792d (patch) | |
tree | ee6c39fbf1d8e91f43738f6e9a9aa388f059f0dc /svx/source/svdraw/svdoashp.cxx | |
parent | 40833b49ebdef2e5ab9ece33fc558fd0929f4e8d (diff) |
fdo#85486 - Clean up unnecessary enumerations from xenum.hxx
Removed XLineStyle
Reviewed on:
https://gerrit.libreoffice.org/13029
Change-Id: I583575a04988ccf932374e411672ba14a3f3cb2f
Diffstat (limited to 'svx/source/svdraw/svdoashp.cxx')
-rw-r--r-- | svx/source/svdraw/svdoashp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdoashp.cxx b/svx/source/svdraw/svdoashp.cxx index 60910e124b97..c92aa0951eaa 100644 --- a/svx/source/svdraw/svdoashp.cxx +++ b/svx/source/svdraw/svdoashp.cxx @@ -235,9 +235,9 @@ SdrObject* ImpCreateShadowObjectClone(const SdrObject& rOriginal, const SfxItemS if(!bLineUsed) { - XLineStyle eLineStyle = static_cast<const XLineStyleItem&>(pObj->GetMergedItem(XATTR_LINESTYLE)).GetValue(); + drawing::LineStyle eLineStyle = static_cast<const XLineStyleItem&>(pObj->GetMergedItem(XATTR_LINESTYLE)).GetValue(); - if(XLINE_NONE != eLineStyle) + if(drawing::LineStyle_NONE != eLineStyle) { bLineUsed = true; } |