From 5dba03b200564e2f891fc7e75e948f93ea769c10 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 9 Apr 2023 20:53:12 +0200 Subject: pack the ImplPropertyInfo struct Change-Id: I08d163824ca0ed4fdba91d1e0d4d7f076c64a4dd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150190 Tested-by: Jenkins Reviewed-by: Noel Grandin --- toolkit/source/helper/property.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/toolkit/source/helper/property.cxx b/toolkit/source/helper/property.cxx index 1775ea9cdfcb..315f0ef5d897 100644 --- a/toolkit/source/helper/property.cxx +++ b/toolkit/source/helper/property.cxx @@ -52,15 +52,15 @@ namespace { struct ImplPropertyInfo { - sal_uInt16 nPropId; css::uno::Type aType; + sal_uInt16 nPropId; sal_Int16 nAttribs; bool bDependsOnOthers; // eg. VALUE depends on MIN/MAX and must be set after MIN/MAX. ImplPropertyInfo( sal_uInt16 nId, const css::uno::Type& rType, sal_Int16 nAttrs, bool bDepends = false ) - : nPropId(nId) - , aType(rType) + : aType(rType) + , nPropId(nId) , nAttribs(nAttrs) , bDependsOnOthers(bDepends) { -- cgit