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

New commits:
commit 90ef2f1d636cc2f3397b820d0ed61f48d4b4ea36
Author: Tor Lillqvist <[email protected]>
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;
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to