summaryrefslogtreecommitdiff
path: root/cppcanvas/source/mtfrenderer/polypolyaction.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppcanvas/source/mtfrenderer/polypolyaction.hxx')
-rw-r--r--cppcanvas/source/mtfrenderer/polypolyaction.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cppcanvas/source/mtfrenderer/polypolyaction.hxx b/cppcanvas/source/mtfrenderer/polypolyaction.hxx
index 394dea277152..9ef7fb2bba38 100644
--- a/cppcanvas/source/mtfrenderer/polypolyaction.hxx
+++ b/cppcanvas/source/mtfrenderer/polypolyaction.hxx
@@ -52,29 +52,29 @@ namespace cppcanvas
namespace PolyPolyActionFactory
{
/// Create polygon, fill/stroke according to state
- ActionSharedPtr createPolyPolyAction( const ::basegfx::B2DPolyPolygon&,
+ std::shared_ptr<Action> createPolyPolyAction( const ::basegfx::B2DPolyPolygon&,
const CanvasSharedPtr&,
const OutDevState& );
/// Create texture-filled polygon
- ActionSharedPtr createPolyPolyAction( const ::basegfx::B2DPolyPolygon&,
+ std::shared_ptr<Action> createPolyPolyAction( const ::basegfx::B2DPolyPolygon&,
const CanvasSharedPtr&,
const OutDevState&,
const css::rendering::Texture& );
/// Create line polygon (always stroked, not filled)
- ActionSharedPtr createLinePolyPolyAction( const ::basegfx::B2DPolyPolygon&,
+ std::shared_ptr<Action> createLinePolyPolyAction( const ::basegfx::B2DPolyPolygon&,
const CanvasSharedPtr&,
const OutDevState& );
/// Create stroked polygon
- ActionSharedPtr createPolyPolyAction( const ::basegfx::B2DPolyPolygon&,
+ std::shared_ptr<Action> createPolyPolyAction( const ::basegfx::B2DPolyPolygon&,
const CanvasSharedPtr&,
const OutDevState&,
const css::rendering::StrokeAttributes& );
/// For transparent painting of the given polygon (normally, we take the colors always opaque)
- ActionSharedPtr createPolyPolyAction( const ::basegfx::B2DPolyPolygon&,
+ std::shared_ptr<Action> createPolyPolyAction( const ::basegfx::B2DPolyPolygon&,
const CanvasSharedPtr&,
const OutDevState&,
int nTransparency );