Kaydet (Commit) e8db4aac authored tarafından Stephan Bergmann's avatar Stephan Bergmann

FlashExporter::exportBackgrounds return type is sal_uInt16

Change-Id: Ic75d0893f4e0e8893c683661d3c6f3f91653b267
üst c1a4cd6c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment