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 /pyuno/source | |
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 'pyuno/source')
-rw-r--r-- | pyuno/source/module/unohelper.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyuno/source/module/unohelper.py b/pyuno/source/module/unohelper.py index 28c9ffdbdbe9..2e200cca5645 100644 --- a/pyuno/source/module/unohelper.py +++ b/pyuno/source/module/unohelper.py @@ -39,7 +39,7 @@ from com.sun.star.beans.PropertyAttribute import \ READONLY as PROP_ATTR_READONLY, \ MAYBEAMBIGUOUS as PROP_ATTR_MAYBEAMBIGUOUS, \ MAYBEDEFAULT as PROP_ATTR_MAYBEDEFAULT, \ - REMOVEABLE as PROP_ATTR_REMOVEABLE + REMOVABLE as PROP_ATTR_REMOVABLE def _mode_to_str( mode ): ret = "[]" @@ -53,8 +53,8 @@ def _mode_to_str( mode ): def _propertymode_to_str( mode ): ret = "" - if PROP_ATTR_REMOVEABLE & mode: - ret = ret + "removeable " + if PROP_ATTR_REMOVABLE & mode: + ret = ret + "removable " if PROP_ATTR_MAYBEDEFAULT & mode: ret = ret + "maybedefault " if PROP_ATTR_MAYBEAMBIGUOUS & mode: |