[Libreoffice-commits] core.git: pyuno/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Fri Jul 26 06:37:51 UTC 2019


 pyuno/source/module/unohelper.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ca3ddcf2cb8a7b69131a310621be18d044122a1c
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Tue Jul 23 19:38:58 2019 +0200
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Fri Jul 26 08:36:46 2019 +0200

    Fix typo in code
    
    Not tested with "make check", but for me cleary
    a mistake.
    I have "maybeambiguous" in the rest of the code,
    but no "maybeambigous".
    
    Change-Id: I327143b3e6e188fe661846f5d9b6d2806926d492
    Reviewed-on: https://gerrit.libreoffice.org/76201
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/pyuno/source/module/unohelper.py b/pyuno/source/module/unohelper.py
index a3e2141e7f84..cf6f78d63b32 100644
--- a/pyuno/source/module/unohelper.py
+++ b/pyuno/source/module/unohelper.py
@@ -58,7 +58,7 @@ def _propertymode_to_str( mode ):
     if PROP_ATTR_MAYBEDEFAULT & mode:
         ret = ret + "maybedefault "
     if PROP_ATTR_MAYBEAMBIGUOUS & mode:
-        ret = ret + "maybeambigous "
+        ret = ret + "maybeambiguous "
     if PROP_ATTR_READONLY & mode:
         ret = ret + "readonly "
     if PROP_ATTR_TRANSIENT & mode:


More information about the Libreoffice-commits mailing list