summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdetc.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-07-18 18:07:36 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-07-19 00:30:37 +0200
commit1e6ff8f7f8b5322bed7a1b4483f2f483b00212ba (patch)
tree13e53997cf5b998859f247cf72b228f1c53cefd9 /svx/source/svdraw/svdetc.cxx
parentab18e62bd7a0a05970323509a2ce22a94c70b7bf (diff)
XFillStyle -> css::drawing::FillStyle
Change-Id: I6b2fabd72fd34f4ac1b3a18f386c90794bc39ce4
Diffstat (limited to 'svx/source/svdraw/svdetc.cxx')
-rw-r--r--svx/source/svdraw/svdetc.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdetc.cxx b/svx/source/svdraw/svdetc.cxx
index b68c76fbdf16..ec9245379231 100644
--- a/svx/source/svdraw/svdetc.cxx
+++ b/svx/source/svdraw/svdetc.cxx
@@ -296,19 +296,19 @@ void SdrLinkList::RemoveLink(const Link& rLink)
bool GetDraftFillColor(const SfxItemSet& rSet, Color& rCol)
{
- XFillStyle eFill=((XFillStyleItem&)rSet.Get(XATTR_FILLSTYLE)).GetValue();
+ drawing::FillStyle eFill=((XFillStyleItem&)rSet.Get(XATTR_FILLSTYLE)).GetValue();
bool bRetval = false;
switch(eFill)
{
- case XFILL_SOLID:
+ case drawing::FillStyle_SOLID:
{
rCol = ((XFillColorItem&)rSet.Get(XATTR_FILLCOLOR)).GetColorValue();
bRetval = true;
break;
}
- case XFILL_HATCH:
+ case drawing::FillStyle_HATCH:
{
Color aCol1(((XFillHatchItem&)rSet.Get(XATTR_FILLHATCH)).GetHatchValue().GetColor());
Color aCol2(COL_WHITE);
@@ -326,7 +326,7 @@ bool GetDraftFillColor(const SfxItemSet& rSet, Color& rCol)
break;
}
- case XFILL_GRADIENT: {
+ case drawing::FillStyle_GRADIENT: {
const XGradient& rGrad=((XFillGradientItem&)rSet.Get(XATTR_FILLGRADIENT)).GetGradientValue();
Color aCol1(rGrad.GetStartColor());
Color aCol2(rGrad.GetEndColor());
@@ -336,7 +336,7 @@ bool GetDraftFillColor(const SfxItemSet& rSet, Color& rCol)
break;
}
- case XFILL_BITMAP:
+ case drawing::FillStyle_BITMAP:
{
Bitmap aBitmap(((XFillBitmapItem&)rSet.Get(XATTR_FILLBITMAP)).GetGraphicObject().GetGraphic().GetBitmapEx().GetBitmap());
const Size aSize(aBitmap.GetSizePixel());