summaryrefslogtreecommitdiff
path: root/filter/source/flash/swfexporter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/flash/swfexporter.cxx')
-rw-r--r--filter/source/flash/swfexporter.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/filter/source/flash/swfexporter.cxx b/filter/source/flash/swfexporter.cxx
index 595bf0df9e71..075bd7fe5618 100644
--- a/filter/source/flash/swfexporter.cxx
+++ b/filter/source/flash/swfexporter.cxx
@@ -60,7 +60,6 @@ using com::sun::star::frame::XModel;
using com::sun::star::lang::XServiceInfo;
-
PageInfo::PageInfo()
: mnBackgroundID( 0 )
, mnObjectsID( 0)
@@ -69,7 +68,6 @@ PageInfo::PageInfo()
}
-
PageInfo::~PageInfo()
{
vector<ShapeInfo*>::iterator aIter( maShapesVector.begin() );
@@ -112,7 +110,6 @@ FlashExporter::FlashExporter(
}
-
FlashExporter::~FlashExporter()
{
Flush();
@@ -127,7 +124,6 @@ void FlashExporter::Flush()
}
-
const sal_uInt16 cBackgroundDepth = 2;
const sal_uInt16 cBackgroundObjectsDepth = 3;
const sal_uInt16 cPageObjectsDepth = 4;
@@ -398,7 +394,6 @@ sal_uInt16 FlashExporter::exportBackgrounds( Reference< XDrawPage > xDrawPage, s
}
-
sal_Int32 nPlaceDepth;
// AS: A Slide can have a private background or use its masterpage's background.
// We use the checksums on the metafiles to tell if backgrounds are the same and
@@ -502,7 +497,6 @@ sal_uInt16 FlashExporter::exportMasterPageObjects(sal_uInt16 nPage, Reference< X
}
-
/** export's the definition of the shapes inside this drawing page and adds the
shape infos to the current PageInfo */
void FlashExporter::exportDrawPageContents( const Reference< XDrawPage >& xPage, bool bStream, bool bMaster )
@@ -512,7 +506,6 @@ void FlashExporter::exportDrawPageContents( const Reference< XDrawPage >& xPage,
}
-
/** export's the definition of the shapes inside this XShapes container and adds the
shape infos to the current PageInfo */
void FlashExporter::exportShapes( const Reference< XShapes >& xShapes, bool bStream, bool bMaster )
@@ -545,7 +538,6 @@ void FlashExporter::exportShapes( const Reference< XShapes >& xShapes, bool bStr
}
-
/** export this shape definition and adds it's info to the current PageInfo */
void FlashExporter::exportShape( const Reference< XShape >& xShape, bool bMaster )
{
@@ -653,7 +645,6 @@ void FlashExporter::exportShape( const Reference< XShape >& xShape, bool bMaster
}
-
bool FlashExporter::getMetaFile( Reference< XComponent >&xComponent, GDIMetaFile& rMtf, bool bOnlyBackground /* = false */, bool bExportAsJPEG /* = false */)
{
if( !mxGraphicExporter.is() )