summaryrefslogtreecommitdiff
path: root/vcl/source/animate
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/animate')
-rw-r--r--vcl/source/animate/Animation.cxx6
-rw-r--r--vcl/source/animate/AnimationRenderer.cxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/animate/Animation.cxx b/vcl/source/animate/Animation.cxx
index f7d6a4f27a93..0922dec2bf37 100644
--- a/vcl/source/animate/Animation.cxx
+++ b/vcl/source/animate/Animation.cxx
@@ -314,7 +314,7 @@ IMPL_LINK_NOARG(Animation, ImplTimeoutHdl, Timer*, void)
pRenderer = static_cast<AnimationRenderer*>(pDataItem->pRendererData);
}
- pRenderer->pause(pDataItem->bPause);
+ pRenderer->pause(pDataItem->mbIsPaused);
pRenderer->setMarked(true);
}
@@ -326,7 +326,7 @@ IMPL_LINK_NOARG(Animation, ImplTimeoutHdl, Timer*, void)
// check if every remaining view is paused
bGlobalPause = std::all_of(maRenderers.cbegin(), maRenderers.cend(),
- [](const auto& pRenderer) { return pRenderer->isPause(); });
+ [](const auto& pRenderer) { return pRenderer->isPaused(); });
// reset marked state
std::for_each(maRenderers.cbegin(), maRenderers.cend(),
@@ -685,7 +685,7 @@ AnimationData::AnimationData()
: pOutDev(nullptr)
, pRendererData(nullptr)
, nRendererId(0)
- , bPause(false)
+ , mbIsPaused(false)
{
}
diff --git a/vcl/source/animate/AnimationRenderer.cxx b/vcl/source/animate/AnimationRenderer.cxx
index 51aaa590d24b..e4ce509a694d 100644
--- a/vcl/source/animate/AnimationRenderer.cxx
+++ b/vcl/source/animate/AnimationRenderer.cxx
@@ -316,7 +316,7 @@ AnimationData* AnimationRenderer::createAnimationData() const
pDataItem->pOutDev = mpRenderContext;
pDataItem->pRendererData = const_cast<AnimationRenderer *>(this);
pDataItem->nRendererId = mnRendererId;
- pDataItem->bPause = mbIsPaused;
+ pDataItem->mbIsPaused = mbIsPaused;
return pDataItem;
}