summaryrefslogtreecommitdiff
path: root/filter/source/flash
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2002-11-29 08:17:33 +0000
committerChristian Lippka <cl@openoffice.org>2002-11-29 08:17:33 +0000
commite050f3560eb27c42f20b81212a30238da7a0986a (patch)
treec67b94ec9399044fe14e037c925e091e037b25de /filter/source/flash
parenta53d239fa12142504002ca29aa68d74ad8cb82db (diff)
#105361# fixed unix build
Diffstat (limited to 'filter/source/flash')
-rw-r--r--filter/source/flash/swfexporter.cxx10
-rw-r--r--filter/source/flash/swfwriter1.cxx14
2 files changed, 12 insertions, 12 deletions
diff --git a/filter/source/flash/swfexporter.cxx b/filter/source/flash/swfexporter.cxx
index d7ec038afa12..39012dd95927 100644
--- a/filter/source/flash/swfexporter.cxx
+++ b/filter/source/flash/swfexporter.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: swfexporter.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2002-11-28 16:01:37 $
+ * last change: $Author: cl $ $Date: 2002-11-29 09:17:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -233,7 +233,7 @@ sal_Bool FlashExporter::exportAll( Reference< XComponent > xDoc, Reference< XOut
delete mpWriter;
mpWriter = new Writer( nOutputWidth, nOutputHeight, mnDocWidth, mnDocHeight, mnJPEGcompressMode );
}
- catch( exception& )
+ catch( Exception& )
{
OSL_ASSERT( false );
return false; // no writer, no cookies
@@ -333,7 +333,7 @@ sal_Bool FlashExporter::exportSlides( Reference< XDrawPage > xDrawPage, Referenc
return sal_False;
}
}
- catch( exception& )
+ catch( Exception& )
{
OSL_ASSERT( false );
}
@@ -438,7 +438,7 @@ sal_Bool FlashExporter::exportSound( Reference< XOutputStream > &xOutputStream,
delete mpWriter;
mpWriter = new Writer( 0, 0, 0, 0 );
}
- catch( exception& )
+ catch( Exception& )
{
OSL_ASSERT( false );
}
diff --git a/filter/source/flash/swfwriter1.cxx b/filter/source/flash/swfwriter1.cxx
index 69abec901c1f..d4570d825de2 100644
--- a/filter/source/flash/swfwriter1.cxx
+++ b/filter/source/flash/swfwriter1.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: swfwriter1.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: cl $ $Date: 2002-11-22 14:21:34 $
+ * last change: $Author: cl $ $Date: 2002-11-29 09:17:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -82,7 +82,7 @@
#ifndef _FILTER_HXX
-#include <svtools/Filter.hxx>
+#include <svtools/filter.hxx>
#endif
#ifndef _SVTOOLS_GRAPHICTOOLS_HXX_
#include <svtools/graphictools.hxx>
@@ -1143,7 +1143,7 @@ bool Writer::Impl_writeFilling( SvtGraphicFill& rFilling )
switch( rFilling.getFillType() )
{
- case SvtGraphicFill::FillType::fillSolid:
+ case SvtGraphicFill::fillSolid:
{
Color aColor( rFilling.getFillColor() );
@@ -1156,11 +1156,11 @@ bool Writer::Impl_writeFilling( SvtGraphicFill& rFilling )
maShapeIds.push_back( nShapeId );
}
break;
- case SvtGraphicFill::FillType::fillGradient:
+ case SvtGraphicFill::fillGradient:
return false;
- case SvtGraphicFill::FillType::fillHatch:
+ case SvtGraphicFill::fillHatch:
return false;
- case SvtGraphicFill::FillType::fillTexture:
+ case SvtGraphicFill::fillTexture:
{
Graphic aGraphic;
rFilling.getGraphic( aGraphic );