diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2022-05-21 03:09:27 +1000 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-06-15 15:28:03 +0200 |
commit | 7e81b2292fa881f5c6efecd259fbbb82a1c75759 (patch) | |
tree | bee7722220dbb884f9a9bcf3ec7a744c85bedb2a /include/vcl | |
parent | bae82d9a57e2ed399f43ce1fe785509b8ab853f0 (diff) |
vcl: change maList in Animation to maFrames
Change-Id: I2358434ffa3aff8bda16576bf8849eed52a3edd2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/76401
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/animate/Animation.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/animate/Animation.hxx b/include/vcl/animate/Animation.hxx index 94cefee2e570..809b8eac434d 100644 --- a/include/vcl/animate/Animation.hxx +++ b/include/vcl/animate/Animation.hxx @@ -66,8 +66,8 @@ public: void SetNotifyHdl(const Link<Animation*, void>& rLink) { maNotifyLink = rLink; } const Link<Animation*, void>& GetNotifyHdl() const { return maNotifyLink; } - std::vector<std::unique_ptr<AnimationBitmap>>& GetAnimationFrames() { return maList; } - size_t Count() const { return maList.size(); } + std::vector<std::unique_ptr<AnimationBitmap>>& GetAnimationFrames() { return maFrames; } + size_t Count() const { return maFrames.size(); } bool Insert(const AnimationBitmap& rAnimationBitmap); const AnimationBitmap& Get(sal_uInt16 nAnimation) const; void Replace(const AnimationBitmap& rNewAnimationBmp, sal_uInt16 nAnimation); @@ -96,7 +96,7 @@ public: private: SAL_DLLPRIVATE static sal_uLong mnAnimCount; - std::vector<std::unique_ptr<AnimationBitmap>> maList; + std::vector<std::unique_ptr<AnimationBitmap>> maFrames; std::vector<std::unique_ptr<ImplAnimView>> maViewList; Link<Animation*, void> maNotifyLink; |