summaryrefslogtreecommitdiff
path: root/oox/source/ppt/slidetransitioncontext.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-05 17:51:09 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-05 17:51:09 +0000
commit26f51d64b510b23cff0fccc020795c62db239f96 (patch)
treee9c2785c68f97bc5642e78d0fd2b6dabd389e8d5 /oox/source/ppt/slidetransitioncontext.cxx
parent8c411921c2b4bf2b19d572e318953f3f8afb1ace (diff)
INTEGRATION: CWS xmlfilter03_DEV300 (1.2.4); FILE MERGED
2008/02/04 13:32:48 dr 1.2.4.1: rework of fragment handler/context handler base classes
Diffstat (limited to 'oox/source/ppt/slidetransitioncontext.cxx')
-rw-r--r--oox/source/ppt/slidetransitioncontext.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/oox/source/ppt/slidetransitioncontext.cxx b/oox/source/ppt/slidetransitioncontext.cxx
index c26067b9fa69..b7c98280664c 100644
--- a/oox/source/ppt/slidetransitioncontext.cxx
+++ b/oox/source/ppt/slidetransitioncontext.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: slidetransitioncontext.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2008-01-17 08:06:00 $
+ * last change: $Author: kz $ $Date: 2008-03-05 18:50:56 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -62,8 +62,8 @@ using namespace ::com::sun::star::container;
namespace oox { namespace ppt {
-SlideTransitionContext::SlideTransitionContext( const FragmentHandlerRef& xHandler, const Reference< XFastAttributeList >& xAttribs, PropertyMap & aProperties ) throw()
-: Context( xHandler )
+SlideTransitionContext::SlideTransitionContext( ContextHandler& rParent, const Reference< XFastAttributeList >& xAttribs, PropertyMap & aProperties ) throw()
+: ContextHandler( rParent )
, maSlideProperties( aProperties )
, mbHasTransition( sal_False )
{
@@ -181,10 +181,10 @@ Reference< XFastContextHandler > SlideTransitionContext::createFastChildContext(
case NMSP_PPT|XML_sndAc: // CT_TransitionSoundAction
//"Sound"
- xRet.set( new SoundActionContext ( this->getHandler(), maSlideProperties ) );
+ xRet.set( new SoundActionContext ( *this, maSlideProperties ) );
break;
case NMSP_PPT|XML_extLst: // CT_OfficeArtExtensionList
- xRet.set( new SkipContext( getHandler() ) );
+ xRet.set( new SkipContext( *this ) );
break;
default:
break;