diff options
author | Kenneth Beck <overlordkb.dev@gmail.com> | 2013-03-01 23:33:49 -0600 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-03-06 10:39:30 +0100 |
commit | 21e1e859a7dc883a0347b6537e2518f4b2e9d0ff (patch) | |
tree | 144fb3c0960eecba48c322e0813423747c4ade1c /unodevtools | |
parent | 0ece7f368b499a010e3ecf2ffa193c242f9a78db (diff) |
fdo#60724 change spelling error REMOVEABLE -> REMOVABLE
Only applies to PropertyAttribute::REMOVEABLE, and all instances in comments.
All other instances of the misspelling have remained the same.
Example: AF_REMOVEABLE
Change-Id: I391f4101bbc3e06689318235a37d616065bc1686
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/javacompskeleton.cxx | 4 | ||||
-rw-r--r-- | unodevtools/source/unodevtools/typeblob.cxx | 2 |
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; |