diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 18:23:20 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 10:21:12 +0200 |
commit | e8db4aacd3208dbc8e9d66cfb56b31fa6417eb87 (patch) | |
tree | 7fd90c88cc0435e4d567ac38d2da8553c8a602a9 | |
parent | c1a4cd6c4e0dc79bcebfc050f17963cc8f642ce3 (diff) |
FlashExporter::exportBackgrounds return type is sal_uInt16
Change-Id: Ic75d0893f4e0e8893c683661d3c6f3f91653b267
-rw-r--r-- | filter/source/flash/swfexporter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/flash/swfexporter.cxx b/filter/source/flash/swfexporter.cxx index 2d0feeb583d8..c443a1e05c46 100644 --- a/filter/source/flash/swfexporter.cxx +++ b/filter/source/flash/swfexporter.cxx @@ -322,7 +322,7 @@ sal_uInt16 FlashExporter::exportBackgrounds( Reference< XDrawPage > xDrawPage, R { Reference< XPropertySet > xPropSet( xDrawPage, UNO_QUERY ); if( !xDrawPage.is() || !xPropSet.is() ) - return sal_False; + return 0; if( NULL == mpWriter ) { @@ -351,7 +351,7 @@ sal_uInt16 FlashExporter::exportBackgrounds( Reference< XDrawPage > xDrawPage, s { Reference< XPropertySet > xPropSet( xDrawPage, UNO_QUERY ); if( !xDrawPage.is() || !xPropSet.is() ) - return sal_False; + return 0; bool bBackgroundVisible = true; bool bBackgroundObjectsVisible = true; |