summaryrefslogtreecommitdiff
path: root/filter/source/svg/svgwriter.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-30 14:17:06 +0200
committerNoel Grandin <noel@peralex.com>2015-10-01 12:20:41 +0200
commitbd8a4ae22376cf9e43df3f4924d37daa8a0796c1 (patch)
tree0c60a496c0570a08d953c093e6cc34e0d8d198b5 /filter/source/svg/svgwriter.hxx
parentf1de3e14df9665ce48d676ac6f3439506d2b81f2 (diff)
com::sun::star->css in filter/
Change-Id: I3a5e6a349c903259698118542b0000b0f119859e
Diffstat (limited to 'filter/source/svg/svgwriter.hxx')
-rw-r--r--filter/source/svg/svgwriter.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/filter/source/svg/svgwriter.hxx b/filter/source/svg/svgwriter.hxx
index 6251dda69353..8f46efd7bce8 100644
--- a/filter/source/svg/svgwriter.hxx
+++ b/filter/source/svg/svgwriter.hxx
@@ -98,10 +98,10 @@ private:
SvXMLElementExport* mpElemFont;
SvXMLElementExport* mpElemPaint;
- basegfx::B2DLineJoin maLineJoin;
- com::sun::star::drawing::LineCap maLineCap;
+ basegfx::B2DLineJoin maLineJoin;
+ css::drawing::LineCap maLineCap;
- SVGAttributeWriter();
+ SVGAttributeWriter();
static double ImplRound( double fVal, sal_Int32 nDecs = 3 );
@@ -131,10 +131,10 @@ struct SVGShapeDescriptor
sal_Int32 mnStrokeWidth;
SvtGraphicStroke::DashArray maDashArray;
::std::unique_ptr< Gradient > mapShapeGradient;
- OUString maId;
+ OUString maId;
- basegfx::B2DLineJoin maLineJoin;
- com::sun::star::drawing::LineCap maLineCap;
+ basegfx::B2DLineJoin maLineJoin;
+ css::drawing::LineCap maLineCap;
@@ -143,7 +143,7 @@ struct SVGShapeDescriptor
maShapeLineColor( Color( COL_TRANSPARENT ) ),
mnStrokeWidth( 0 ),
maLineJoin(basegfx::B2DLineJoin::Miter), // miter is Svg 'stroke-linejoin' default
- maLineCap(com::sun::star::drawing::LineCap_BUTT) // butt is Svg 'stroke-linecap' default
+ maLineCap(css::drawing::LineCap_BUTT) // butt is Svg 'stroke-linecap' default
{
}
};
@@ -377,7 +377,7 @@ class SVGWriter : public cppu::WeakImplHelper< XSVGWriter >
{
private:
Reference< XComponentContext > mxContext;
- Sequence< com::sun::star::beans::PropertyValue > maFilterData;
+ Sequence< css::beans::PropertyValue > maFilterData;
SVGWriter();
public: