summaryrefslogtreecommitdiff
path: root/unodevtools
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools')
-rw-r--r--unodevtools/source/skeletonmaker/javacompskeleton.cxx4
-rw-r--r--unodevtools/source/unodevtools/typeblob.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
index 772a55a0c75d..4ddaf595622d 100644
--- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
@@ -194,7 +194,7 @@ bool checkAttribute(OStringBuffer& attributeValue, sal_uInt16 attribute)
/* com::sun::star::beans::PropertyValue::READONLY */ 16,
/* com::sun::star::beans::PropertyValue::MAYBEAMBIGIOUS */ 32,
/* com::sun::star::beans::PropertyValue::MAYBEDEFAULT */ 64,
- /* com::sun::star::beans::PropertyValue::REMOVEABLE */ 128,
+ /* com::sun::star::beans::PropertyValue::REMOVABLE */ 128,
/* com::sun::star::beans::PropertyValue::OPTIONAL */ 256 };
for (sal_uInt16 i = 0; i < 9; i++)
@@ -228,7 +228,7 @@ bool checkAttribute(OStringBuffer& attributeValue, sal_uInt16 attribute)
attributeValue.append("PropertyAttribute.MAYBEDEFAULT");
break;
case 128:
- attributeValue.append("PropertyAttribute.REMOVEABLE");
+ attributeValue.append("PropertyAttribute.REMOVABLE");
break;
case 256:
attributeValue.append("PropertyAttribute.OPTIONAL");
diff --git a/unodevtools/source/unodevtools/typeblob.cxx b/unodevtools/source/unodevtools/typeblob.cxx
index b2d1ab601356..b174ba02a68a 100644
--- a/unodevtools/source/unodevtools/typeblob.cxx
+++ b/unodevtools/source/unodevtools/typeblob.cxx
@@ -264,7 +264,7 @@ RTFieldAccess checkPropertyFlags(short flags) {
propertyFlags |= RT_ACCESS_MAYBEAMBIGUOUS;
case PropertyAttribute::MAYBEDEFAULT:
propertyFlags |= RT_ACCESS_MAYBEDEFAULT;
- case PropertyAttribute::REMOVEABLE:
+ case PropertyAttribute::REMOVABLE:
propertyFlags |= RT_ACCESS_REMOVEABLE;
case PropertyAttribute::OPTIONAL:
propertyFlags |= RT_ACCESS_OPTIONAL;