summaryrefslogtreecommitdiff
path: root/vcl/source/animate/Animation.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/animate/Animation.cxx')
-rw-r--r--vcl/source/animate/Animation.cxx6
1 files changed, 3 insertions, 3 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)
{
}