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 /stoc | |
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 'stoc')
-rw-r--r-- | stoc/source/registry_tdprovider/tdservice.cxx | 2 | ||||
-rw-r--r-- | stoc/source/tdmanager/tdmgr_check.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/registry_tdprovider/tdservice.cxx b/stoc/source/registry_tdprovider/tdservice.cxx index 185ae87dcb3a..585a0268eed2 100644 --- a/stoc/source/registry_tdprovider/tdservice.cxx +++ b/stoc/source/registry_tdprovider/tdservice.cxx @@ -282,7 +282,7 @@ ServiceTypeDescriptionImpl::getProperties() if ( nFlags & RT_ACCESS_MAYBEDEFAULT ) nAttribs |= beans::PropertyAttribute::MAYBEDEFAULT; if ( nFlags & RT_ACCESS_REMOVEABLE ) - nAttribs |= beans::PropertyAttribute::REMOVEABLE; + nAttribs |= beans::PropertyAttribute::REMOVABLE; OSL_ENSURE( !(nFlags & RT_ACCESS_PROPERTY), "### RT_ACCESS_PROPERTY is unexpected here!" ); diff --git a/stoc/source/tdmanager/tdmgr_check.cxx b/stoc/source/tdmanager/tdmgr_check.cxx index c9679dd22bdf..ff9e763bea1e 100644 --- a/stoc/source/tdmanager/tdmgr_check.cxx +++ b/stoc/source/tdmanager/tdmgr_check.cxx @@ -88,8 +88,8 @@ OUString getPropertyFlagsAsString( sal_Int16 attributes ) buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("MAYBEAMBIGUOUS, ") ); if ((attributes & beans::PropertyAttribute::MAYBEDEFAULT) != 0) buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("MAYBEDEFAULT, ") ); - if ((attributes & beans::PropertyAttribute::REMOVEABLE) != 0) - buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("REMOVEABLE, ") ); + if ((attributes & beans::PropertyAttribute::REMOVABLE) != 0) + buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("REMOVABLE, ") ); if ((attributes & beans::PropertyAttribute::OPTIONAL) != 0) buf.appendAscii( RTL_CONSTASCII_STRINGPARAM("OPTIONAL") ); else if (buf.getLength() > 0) |