summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev
diff options
context:
space:
mode:
authorRadu Ioan <ioan.radu.g@gmail.com>2014-11-21 20:48:11 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-11-23 18:15:44 +0100
commit7528b498b634f0d96a710afc7faf20299cc5792d (patch)
treeee6c39fbf1d8e91f43738f6e9a9aa388f059f0dc /svx/source/xoutdev
parent40833b49ebdef2e5ab9ece33fc558fd0929f4e8d (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/xoutdev')
-rw-r--r--svx/source/xoutdev/xattr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/xoutdev/xattr.cxx b/svx/source/xoutdev/xattr.cxx
index 6b307c398747..fcfc46ac0af5 100644
--- a/svx/source/xoutdev/xattr.cxx
+++ b/svx/source/xoutdev/xattr.cxx
@@ -350,7 +350,7 @@ bool XColorItem::PutValue( const ::com::sun::star::uno::Any& rVal, sal_uInt8 /*n
TYPEINIT1_AUTOFACTORY(XLineStyleItem, SfxEnumItem);
-XLineStyleItem::XLineStyleItem(XLineStyle eTheLineStyle) :
+XLineStyleItem::XLineStyleItem(com::sun::star::drawing::LineStyle eTheLineStyle) :
SfxEnumItem(XATTR_LINESTYLE, sal::static_int_cast< sal_uInt16 >(eTheLineStyle))
{
}
@@ -384,10 +384,10 @@ bool XLineStyleItem::GetPresentation
switch( (sal_uInt16)GetValue() )
{
- case XLINE_NONE:
+ case com::sun::star::drawing::LineStyle_NONE:
nId = RID_SVXSTR_INVISIBLE;
break;
- case XLINE_SOLID:
+ case com::sun::star::drawing::LineStyle_SOLID:
nId = RID_SVXSTR_SOLID;
break;
}