summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2023-04-09 20:53:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-04-10 21:51:58 +0200
commit5dba03b200564e2f891fc7e75e948f93ea769c10 (patch)
tree935b75f9687b214d3293ccd5b9e2c214ca3ad951 /toolkit
parent9ff063eeabc38d9c1fd1a4beb0d0e4112559b0c1 (diff)
pack the ImplPropertyInfo struct
Change-Id: I08d163824ca0ed4fdba91d1e0d4d7f076c64a4dd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150190 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/helper/property.cxx6
1 files 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)
{