Kaydet (Commit) f1fe15fd authored tarafından Andre Fischer's avatar Andre Fischer

#i120684# Fixed export of red color-channel.

Patch by: Wang Zhe
Review by: Andre Fischer
üst fd3be009
......@@ -2073,7 +2073,7 @@ sal_Bool AnimationExporter::getColorAny( const Any& rAny, const sal_Int16 nColor
Sequence< double > aHSL( 3 );
if ( rAny >>= nColor ) // RGB color
{
rA = (sal_uInt8)( nColor >> 24 );
rA = (sal_uInt8)( nColor >> 16 );
rB = (sal_uInt8)( nColor >> 8 );
rC = (sal_uInt8)( nColor );
}
......
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