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:
committed by
Julien Nabet
parent
1a4dd1fa2a
commit
c88d4ddfcd
@@ -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;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user