unodevtools/source/skeletonmaker/javacompskeleton.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit b683bbb14e74489988e12667d3193c8a32794b88 Author: Andrea Gelmini <[email protected]> AuthorDate: Sat Aug 22 18:55:50 2020 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Sun Aug 23 15:37:13 2020 +0200 Fix typo in code Change-Id: I186af7793c235cdd42c815049ee74543b705ffe1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101206 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx index f255989a79ac..b4d26e0e0a18 100644 --- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx @@ -197,7 +197,7 @@ static bool checkAttribute( /* com::sun::star::beans::PropertyValue::CONSTRAINED */ 4, /* com::sun::star::beans::PropertyValue::TRANSIENT */ 8, /* com::sun::star::beans::PropertyValue::READONLY */ 16, - /* com::sun::star::beans::PropertyValue::MAYBEAMBIGIOUS */ 32, + /* com::sun::star::beans::PropertyValue::MAYBEAMBIGUOUS */ 32, /* com::sun::star::beans::PropertyValue::MAYBEDEFAULT */ 64, /* com::sun::star::beans::PropertyValue::REMOVABLE */ 128, /* com::sun::star::beans::PropertyValue::OPTIONAL */ 256 }; @@ -227,7 +227,7 @@ static bool checkAttribute( attributeValue.append("PropertyAttribute.READONLY"); break; case 32: - attributeValue.append("PropertyAttribute.MAYBEAMBIGIOUS"); + attributeValue.append("PropertyAttribute.MAYBEAMBIGUOUS"); break; case 64: attributeValue.append("PropertyAttribute.MAYBEDEFAULT"); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
