summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/transitions/fanwipe.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/transitions/fanwipe.cxx')
-rw-r--r--slideshow/source/engine/transitions/fanwipe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/transitions/fanwipe.cxx b/slideshow/source/engine/transitions/fanwipe.cxx
index 5071dd62aaa1..2ddca66b0647 100644
--- a/slideshow/source/engine/transitions/fanwipe.cxx
+++ b/slideshow/source/engine/transitions/fanwipe.cxx
@@ -37,13 +37,13 @@ namespace internal {
res.append( poly );
// flip on y-axis:
- poly.transform(basegfx::tools::createScaleB2DHomMatrix(-1.0, 1.0));
+ poly.transform(basegfx::utils::createScaleB2DHomMatrix(-1.0, 1.0));
poly.flip();
res.append( poly );
if (m_center)
{
- res.transform(basegfx::tools::createScaleTranslateB2DHomMatrix(0.5, 0.5, 0.5, 0.5));
+ res.transform(basegfx::utils::createScaleTranslateB2DHomMatrix(0.5, 0.5, 0.5, 0.5));
if (! m_single)
res.append( flipOnXAxis(res) );
@@ -51,7 +51,7 @@ namespace internal {
else
{
SAL_WARN_IF( m_fanIn, "slideshow.opengl", "FanWipe: m_fanIn is true ?" );
- res.transform(basegfx::tools::createScaleTranslateB2DHomMatrix(0.5, 1.0, 0.5, 1.0));
+ res.transform(basegfx::utils::createScaleTranslateB2DHomMatrix(0.5, 1.0, 0.5, 1.0));
}
return res;
}