summaryrefslogtreecommitdiff
path: root/oox/source/ppt/slidefragmenthandler.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-07-22 13:05:00 +0000
committerOliver Bolte <obo@openoffice.org>2008-07-22 13:05:00 +0000
commitaa81719b5862222dde5492b44de2a31f13fe4953 (patch)
treeadf9d3b94451b6231f09e3cd779debb804a8fd72 /oox/source/ppt/slidefragmenthandler.cxx
parent2e6654d5c3237d66a3f6ab946d3c3a9fd7d4c316 (diff)
INTEGRATION: CWS xmlfilter06 (1.5.6); FILE MERGED
2008/06/20 11:58:17 dr 1.5.6.3: line/fill/character properties rework; first steps of chart text formatting and rotation import; make line arrow import work 2008/06/10 10:51:10 dr 1.5.6.2: chart area formatting, first steps 2008/05/27 10:40:42 dr 1.5.6.1: joined changes from CWS xmlfilter05
Diffstat (limited to 'oox/source/ppt/slidefragmenthandler.cxx')
-rw-r--r--oox/source/ppt/slidefragmenthandler.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/oox/source/ppt/slidefragmenthandler.cxx b/oox/source/ppt/slidefragmenthandler.cxx
index f18683bb80a2..f07a8a265a2d 100644
--- a/oox/source/ppt/slidefragmenthandler.cxx
+++ b/oox/source/ppt/slidefragmenthandler.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: slidefragmenthandler.cxx,v $
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
* This file is part of OpenOffice.org.
*
@@ -37,6 +37,7 @@
#include "tokens.hxx"
#include "oox/helper/propertyset.hxx"
#include "oox/core/namespaces.hxx"
+#include "oox/core/xmlfilterbase.hxx"
#include "oox/ppt/backgroundproperties.hxx"
#include "oox/ppt/slidefragmenthandler.hxx"
#include "oox/ppt/slidetimingcontext.hxx"
@@ -109,8 +110,8 @@ Reference< XFastContextHandler > SlideFragmentHandler::createFastChildContext( s
// BackgroundGroup
case NMSP_PPT|XML_bgPr: // CT_BackgroundProperties
{
- FillPropertiesPtr pFillPropertiesPtr( new FillProperties() );
- xRet.set( new BackgroundPropertiesContext( *this, pFillPropertiesPtr ) );
+ FillPropertiesPtr pFillPropertiesPtr( new FillProperties );
+ xRet.set( new BackgroundPropertiesContext( *this, *pFillPropertiesPtr ) );
mpSlidePersistPtr->setBackgroundProperties( pFillPropertiesPtr );
}
break;