summaryrefslogtreecommitdiff
path: root/cppcanvas/source/inc
diff options
context:
space:
mode:
Diffstat (limited to 'cppcanvas/source/inc')
-rw-r--r--cppcanvas/source/inc/action.hxx3
-rw-r--r--cppcanvas/source/inc/implrenderer.hxx4
2 files changed, 2 insertions, 5 deletions
diff --git a/cppcanvas/source/inc/action.hxx b/cppcanvas/source/inc/action.hxx
index aa63ffce01bd..ff1ccc8b6949 100644
--- a/cppcanvas/source/inc/action.hxx
+++ b/cppcanvas/source/inc/action.hxx
@@ -144,9 +144,6 @@ namespace cppcanvas
*/
virtual sal_Int32 getActionCount() const = 0;
};
-
- typedef std::shared_ptr< Action > ActionSharedPtr;
-
}
}
diff --git a/cppcanvas/source/inc/implrenderer.hxx b/cppcanvas/source/inc/implrenderer.hxx
index d8752f544139..de215e0132ca 100644
--- a/cppcanvas/source/inc/implrenderer.hxx
+++ b/cppcanvas/source/inc/implrenderer.hxx
@@ -199,14 +199,14 @@ static float GetSwapFloat( SvStream& rSt )
// public, since some functors need it, too.
struct MtfAction
{
- MtfAction( const ActionSharedPtr& rAction,
+ MtfAction( const std::shared_ptr<Action>& rAction,
sal_Int32 nOrigIndex ) :
mpAction( rAction ),
mnOrigIndex( nOrigIndex )
{
}
- ActionSharedPtr mpAction;
+ std::shared_ptr<Action> mpAction;
sal_Int32 mnOrigIndex;
};