tdf#96099 Remove ActionSharedPtr typedef

Replace ActionSharedPtr by its definition.

Change-Id: Iedd14c85169230d961f0707671885451875529d7
Reviewed-on: https://gerrit.libreoffice.org/40340
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Ivan Safonov
2017-07-24 00:05:40 +03:00
committed by Julien Nabet
parent 1a4dd1fa2a
commit c88d4ddfcd
16 changed files with 80 additions and 83 deletions

View File

@@ -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;
};