include/toolkit/controls/unocontrol.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit 6726fef6910559000f6fb5dc17647c455b944adc Author: Noel Grandin <[email protected]> AuthorDate: Sat Apr 1 14:59:26 2023 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Sat Apr 1 18:09:50 2023 +0200 pack the UnoControlComponentInfos struct Change-Id: I18ab490074051831dd31b3953308e372ca2b469f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149904 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> diff --git a/include/toolkit/controls/unocontrol.hxx b/include/toolkit/controls/unocontrol.hxx index 350aa39f26e8..999a5ed7852d 100644 --- a/include/toolkit/controls/unocontrol.hxx +++ b/include/toolkit/controls/unocontrol.hxx @@ -42,11 +42,11 @@ struct UnoControlComponentInfos { - bool bVisible; - bool bEnable; - tools::Long nX, nY, nWidth, nHeight; - sal_uInt16 nFlags; + tools::Long nX, nY, nWidth, nHeight; float nZoomX, nZoomY; + sal_uInt16 nFlags; + bool bVisible; + bool bEnable; UnoControlComponentInfos() {
