diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-02-27 15:06:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-02-28 11:51:32 +0100 |
commit | 5564a31c3fe1098fd72635238d33a3dbafb8b62e (patch) | |
tree | 434a835c4cc04c671834f069b573c82ff414bbca /framework | |
parent | 9df0ce081eac287154ea496e9eb299b4bc4fa776 (diff) |
use less COLORDATA_RGB
part of removing ColorData
Change-Id: I5518cddeeefe66f70380367e1e3f78af0f3b5fbc
Reviewed-on: https://gerrit.libreoffice.org/50486
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/xml/imagesdocumenthandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/xml/imagesdocumenthandler.cxx b/framework/source/xml/imagesdocumenthandler.cxx index 327e666fde9d..28ec385b2f3e 100644 --- a/framework/source/xml/imagesdocumenthandler.cxx +++ b/framework/source/xml/imagesdocumenthandler.cxx @@ -224,7 +224,7 @@ void SAL_CALL OReadImagesDocumentHandler::startElement( // the color value is given as #rrggbb and used the hexadecimal system!! sal_uInt32 nColor = aColor.copy( 1 ).toUInt32( 16 ); - m_pImages->aMaskColor = Color( COLORDATA_RGB( nColor ) ); + m_pImages->aMaskColor = Color( nColor ); } } break; |