[Libreoffice-commits] core.git: slideshow/source

Andre Fischer af at apache.org
Thu May 16 08:18:16 PDT 2013


 slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 60169637833bf39f646162ef156347eec4b5da39
Author: Andre Fischer <af at apache.org>
Date:   Thu Aug 30 11:32:06 2012 +0000

    Resolves: #i120764# Reduce grid size for snake wipe transition to 8*8.
    
    Patch by: Wang Zhe
    Review by: Andre Fischer
    (cherry picked from commit 2de9df3bc309f480c68a970b3353b718ca4e9c68)
    
    Change-Id: I33b5d9975d52492d296e77b191ae1a394c8443a0

diff --git a/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx b/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx
index 64c2a0f..ca1d198 100644
--- a/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx
+++ b/slideshow/source/engine/transitions/parametricpolypolygonfactory.cxx
@@ -143,7 +143,7 @@ namespace slideshow
                 return ParametricPolyPolygonSharedPtr(
                     new SnakeWipe(
                         // elements:
-                        64 * 64,
+                        8 * 8,
                         // diagonal:
                         nSubType == TOPLEFTDIAGONAL ||
                         nSubType == TOPRIGHTDIAGONAL ||
@@ -158,7 +158,7 @@ namespace slideshow
                 return ParametricPolyPolygonSharedPtr(
                     new ParallelSnakesWipe(
                         // elements:
-                        64 * 64,
+                        8 * 8,
                         // diagonal:
                         nSubType == DIAGONALBOTTOMLEFTOPPOSITE ||
                         nSubType == DIAGONALTOPLEFTOPPOSITE,
@@ -178,7 +178,7 @@ namespace slideshow
                 return ParametricPolyPolygonSharedPtr(
                     new SpiralWipe(
                         // elements:
-                        64 * 64,
+                        8 * 8,
                         // flipOnYAxis:
                         nSubType == TOPLEFTCOUNTERCLOCKWISE ||
                         nSubType == TOPRIGHTCOUNTERCLOCKWISE ||
@@ -188,7 +188,7 @@ namespace slideshow
                 return ParametricPolyPolygonSharedPtr(
                     new BoxSnakesWipe(
                         // elements:
-                        64 * 64,
+                        8 * 8,
                         // fourBox:
                         nSubType == FOURBOXVERTICAL ||
                         nSubType == FOURBOXHORIZONTAL ) );


More information about the Libreoffice-commits mailing list