diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-06 11:44:44 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-06 12:02:02 +0300 |
commit | 6db1788c08b82b0a459d4c480133fa8341ef256f (patch) | |
tree | be4fc7a099dcdd8b4783639c9e90b61cf45ec9d2 /canvas | |
parent | 80b81a561ee92a2abed34f98ee25a0e3c4117326 (diff) |
WaE: '=' : truncation of constant value
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/cairo/cairo_canvashelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/canvas/source/cairo/cairo_canvashelper.cxx b/canvas/source/cairo/cairo_canvashelper.cxx index 0d94db354bdb..7150c461903e 100644 --- a/canvas/source/cairo/cairo_canvashelper.cxx +++ b/canvas/source/cairo/cairo_canvashelper.cxx @@ -1870,7 +1870,7 @@ namespace cairocanvas *pColors++ = vcl::unotools::toByteColor(pIn->Blue); *pColors++ = vcl::unotools::toByteColor(pIn->Green); *pColors++ = vcl::unotools::toByteColor(pIn->Red); - *pColors++ = 255; + *pColors++ = -1; ++pIn; } return aRes; |