summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-22 18:55:50 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-08-23 15:37:13 +0200
commitb683bbb14e74489988e12667d3193c8a32794b88 (patch)
tree3f5faba75a2041eebb84f8d015cc20774496f5a0 /unodevtools
parentab38ed6e232013dc9df7ae1350319c41211fc726 (diff)
Fix typo in code
Change-Id: I186af7793c235cdd42c815049ee74543b705ffe1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101206 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/javacompskeleton.cxx4
1 files changed, 2 insertions, 2 deletions
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");