diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2005-09-23 09:41:01 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2005-09-23 09:41:01 +0000 |
commit | 764ec723a1d2ee6ee1daeefd3737356414a9b5e1 (patch) | |
tree | a9f07191426a903d1d764631a45c7a7b259bdd85 /sd/inc/animations.hxx | |
parent | b098483e2d4a81a3fe5aa003ba74a2fa6f19182b (diff) |
INTEGRATION: CWS impress49 (1.2.172); FILE MERGED
2005/06/10 15:51:07 cl 1.2.172.1: #i41546# reworked after effects
Diffstat (limited to 'sd/inc/animations.hxx')
-rw-r--r-- | sd/inc/animations.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/inc/animations.hxx b/sd/inc/animations.hxx index 58025a905f3e..df206ddf0e9e 100644 --- a/sd/inc/animations.hxx +++ b/sd/inc/animations.hxx @@ -11,10 +11,10 @@ struct AfterEffectNode { ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode > mxNode; ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode > mxMaster; - sal_Int32 mnMasterRel; + bool mbOnNextEffect; - AfterEffectNode( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode, const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xMaster, sal_Int32 nMasterRel ) - : mxNode( xNode ), mxMaster( xMaster ), mnMasterRel( nMasterRel ) {} + AfterEffectNode( const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode, const ::com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xMaster, bool bOnNextEffect ) + : mxNode( xNode ), mxMaster( xMaster ), mbOnNextEffect( bOnNextEffect ) {} }; typedef std::list< AfterEffectNode > AfterEffectNodeList; |