summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-12-04 20:22:34 +0100
committerJulien Nabet <serval2412@yahoo.fr>2019-12-05 07:53:35 +0100
commit7d97bdba4b5bd8ceda7f18c08ff636ffdb276660 (patch)
tree5bd9e0f4f0ff92cbfaba58fbd6606c52932102d8 /slideshow
parentbb8e276c3a9c808c4ac06df2fd542b4ea3703c8d (diff)
Fix typo
Change-Id: I7d34e0a02c8ee102746a0da853cc665287deef54 Reviewed-on: https://gerrit.libreoffice.org/84490 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/activities/interpolation.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/activities/interpolation.hxx b/slideshow/source/engine/activities/interpolation.hxx
index ab0a0e5a63d1..0744b270d831 100644
--- a/slideshow/source/engine/activities/interpolation.hxx
+++ b/slideshow/source/engine/activities/interpolation.hxx
@@ -146,7 +146,7 @@ namespace slideshow
{
// until one half of the total frames are over, take from value.
// after that, take to value.
- // For nFrames not divisable by 2, we prefer to over from, which
+ // For nFrames not divisible by 2, we prefer to over from, which
// also neatly yields to for 1 frame activities
return nFrame < nTotalFrames/2 ? rFrom : rTo;
}
@@ -160,7 +160,7 @@ namespace slideshow
{
// until one half of the total frames are over, take from value.
// after that, take to value.
- // For nFrames not divisable by 2, we prefer to over from, which
+ // For nFrames not divisible by 2, we prefer to over from, which
// also neatly yields to for 1 frame activities
return nFrame < nTotalFrames/2 ? rFrom : rTo;
}
@@ -174,7 +174,7 @@ namespace slideshow
{
// until one half of the total frames are over, take from value.
// after that, take to value.
- // For nFrames not divisable by 2, we prefer to over from, which
+ // For nFrames not divisible by 2, we prefer to over from, which
// also neatly yields to for 1 frame activities
return nFrame < nTotalFrames/2 ? bFrom : bTo;
}