sd/source/ui/animations/CustomAnimationDialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a2135cbf8cb7cdf43b83992aba10d95dd0cad76c Author: Julien Nabet <[email protected]> AuthorDate: Thu Dec 14 15:13:29 2023 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Thu Dec 14 17:54:07 2023 +0100 Regression typo closewise->clockwise in sd/CustomAnimationDialog Regression from a756bd31dd2da1ef134d80b2dc276cb0be228aba https://cgit.freedesktop.org/libreoffice/core/commit/?id=a756bd31dd2da1ef134d80b2dc276cb0be228aba Change-Id: Ia5fc84250eb64016f028f3ffe8b3dc581733904d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160790 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx index f546fcd951d0..7ed2f4590452 100644 --- a/sd/source/ui/animations/CustomAnimationDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationDialog.cxx @@ -528,7 +528,7 @@ void SdRotationPropertyBox::updateMenu() mxControl->set_item_active("360", nValue == 360); mxControl->set_item_active("720", nValue == 720); - mxControl->set_item_active("closewise", bDirection); + mxControl->set_item_active("clockwise", bDirection); mxControl->set_item_active("counterclock", !bDirection); }
