[Libreoffice-commits] core.git: Branch 'libreoffice-4-4-0' - filter/source
Matthew Francis
mjay.francis at gmail.com
Thu Jan 22 06:09:46 PST 2015
filter/source/flash/swfwriter1.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6da6af3050393db90b6a6f0c3b1db885f9ddbf14
Author: Matthew Francis <mjay.francis at gmail.com>
Date: Wed Jan 21 23:58:03 2015 +0800
fdo#84336 Fix swf rendering
Commit d83dfeb5e59c8f3de12d673b001a44001f644e7d accidentally inverted
a test, causing at least the presentation linked on the above bug to
render all black
Change-Id: I2267ef43023b735587d6921f17aa7207f70dbd7b
Reviewed-on: https://gerrit.libreoffice.org/14084
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
(cherry picked from commit eb4c29f4d10ae4be0e6be15a4c7c8c5bfb1edcc3)
Reviewed-on: https://gerrit.libreoffice.org/14086
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
Reviewed-by: Michael Stahl <mstahl at redhat.com>
diff --git a/filter/source/flash/swfwriter1.cxx b/filter/source/flash/swfwriter1.cxx
index e2c34c1..ae9d1a0 100644
--- a/filter/source/flash/swfwriter1.cxx
+++ b/filter/source/flash/swfwriter1.cxx
@@ -178,7 +178,7 @@ void Writer::Impl_addShapeRecordChange( BitStream& rBits, sal_Int16 dx, sal_Int1
rBits.writeUB( 0, 1 ); // StateNewStyles
rBits.writeUB( sal_uInt32(!bFilled), 1 ); // StateLineStyle
rBits.writeUB( 0, 1 ); // StateFillStyle0
- rBits.writeUB( bFilled ? 0 : 1, 1 ); // StateFillStyle1
+ rBits.writeUB( bFilled ? 1 : 0, 1 ); // StateFillStyle1
rBits.writeUB( 1, 1 ); // StateMoveTo
sal_uInt16 nMoveBits = max( getMaxBitsSigned( dx ), getMaxBitsSigned( dy ) );
More information about the Libreoffice-commits
mailing list