diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2022-06-18 16:18:37 +1000 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-06-21 07:48:58 +0200 |
commit | 903403c1e3d5c0f882189fa87ed2b19c16a9893e (patch) | |
tree | bf89c73ad9acad3ca25176745940c5ed45180f76 /include | |
parent | a98b0037c6116ed7a0f4f426571bbb361cf2e62f (diff) |
vcl: rename mnExtraData to mnRendererId
The name "extra data" doesn't really describe what this field does. What
it actually does it to specify what animation renderer should be used.
Change-Id: I1e705ba89d09ceb41a8649c8947225c7b6816e7a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/76403
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/animate/Animation.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/animate/Animation.hxx b/include/vcl/animate/Animation.hxx index 57f1c9d6227e..2df9f51d0221 100644 --- a/include/vcl/animate/Animation.hxx +++ b/include/vcl/animate/Animation.hxx @@ -43,9 +43,9 @@ public: void Clear(); bool Start(OutputDevice& rOutDev, const Point& rDestPt, const Size& rDestSz, - tools::Long nExtraData, OutputDevice* pFirstFrameOutDev); + tools::Long nRendererId, OutputDevice* pFirstFrameOutDev); - void Stop(const OutputDevice* pOutDev = nullptr, tools::Long nExtraData = 0); + void Stop(const OutputDevice* pOutDev = nullptr, tools::Long nRendererId = 0); void Draw(OutputDevice& rOutDev, const Point& rDestPt) const; void Draw(OutputDevice& rOutDev, const Point& rDestPt, const Size& rDestSz) const; |