diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-11-03 23:29:30 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-11-04 07:04:01 +0100 |
commit | 3c1bd037802f5fbad9f43566a33500e54a6b9de6 (patch) | |
tree | 7a44eb7a14097cc76531baec00e1f8aa226cd293 /forms/source/component/ImageControl.cxx | |
parent | bac1b748f5b600952b9bf3eaaaf5a4bb8342fe59 (diff) |
Replace some macros in forms part 3
Remove DECL_BOOL_PROP1 + DECL_BOOL_PROP2
Change-Id: I8a07ac7b2b8ab724d5277a11b37cf10a6711fdb5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124664
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'forms/source/component/ImageControl.cxx')
-rw-r--r-- | forms/source/component/ImageControl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/ImageControl.cxx b/forms/source/component/ImageControl.cxx index efd3de934f2d..5077fbf58626 100644 --- a/forms/source/component/ImageControl.cxx +++ b/forms/source/component/ImageControl.cxx @@ -313,7 +313,7 @@ void OImageControlModel::describeFixedProperties( Sequence< Property >& _rProps BEGIN_DESCRIBE_PROPERTIES( 4, OBoundControlModel ) DECL_IFACE_PROP_IMPL(GRAPHIC, XGraphic) css::beans::PropertyAttribute::BOUND | css::beans::PropertyAttribute::TRANSIENT); DECL_PROP1 ( IMAGE_URL, OUString, BOUND ); - DECL_BOOL_PROP1 ( READONLY, BOUND ); + DECL_BOOL_PROP_IMPL(READONLY) css::beans::PropertyAttribute::BOUND); DECL_PROP1 ( TABINDEX, sal_Int16, BOUND ); END_DESCRIBE_PROPERTIES(); } |