[Libreoffice-commits] .: slideshow/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Jan 10 21:09:59 PST 2013


 slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 90ef2f1d636cc2f3397b820d0ed61f48d4b4ea36
Author: Tor Lillqvist <tml at iki.fi>
Date:   Fri Jan 11 07:09:00 2013 +0200

    I meant -1 of course, not -127
    
    (As the signed char equivalent of 255.)
    
    Change-Id: Iefb3ebdcf324f0a1925bb3e5d01d7d86e5c62482

diff --git a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx
index 2dd366f..e1260d3 100644
--- a/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx
+++ b/slideshow/source/engine/OGLTrans/generic/OGLTrans_TransitionerImpl.cxx
@@ -1242,7 +1242,7 @@ namespace
                 *pColors++ = vcl::unotools::toByteColor(pIn->Red);
                 *pColors++ = vcl::unotools::toByteColor(pIn->Green);
                 *pColors++ = vcl::unotools::toByteColor(pIn->Blue);
-                *pColors++ = -127;
+                *pColors++ = -1;
                 ++pIn;
             }
             return aRes;


More information about the Libreoffice-commits mailing list