diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2022-06-25 09:31:46 +1000 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-10-12 10:11:25 +0200 |
commit | 5f88c66b835718c5cc5f07d21825a5ac6880e458 (patch) | |
tree | 5f64fb06fbfeb055503f65ba96fe7b6c2db08212 /include/vcl | |
parent | ff7dd118bdc5d017d2dec28a4e37c3e3a6b97660 (diff) |
vcl: extract function CreateAnimationDataItems
Change-Id: Ifc245b570d82d2fcbcd2cbb83cbd43664b228bf2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/76409
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/animate/Animation.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/animate/Animation.hxx b/include/vcl/animate/Animation.hxx index 6c592ba753c1..2f13052d084b 100644 --- a/include/vcl/animate/Animation.hxx +++ b/include/vcl/animate/Animation.hxx @@ -28,6 +28,7 @@ #define ANIMATION_TIMEOUT_ON_CLICK 2147483647L class AnimationRenderer; +struct AnimationData; class VCL_DLLPUBLIC Animation { @@ -109,6 +110,7 @@ private: bool mbIsInAnimation; bool mbLoopTerminated; + SAL_DLLPRIVATE std::vector<std::unique_ptr<AnimationData>> CreateAnimationDataItems(); SAL_DLLPRIVATE void ImplRestartTimer(sal_uLong nTimeout); DECL_DLLPRIVATE_LINK(ImplTimeoutHdl, Timer*, void); }; |