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

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sun Aug 23 13:37:48 UTC 2020


 unodevtools/source/skeletonmaker/javacompskeleton.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b683bbb14e74489988e12667d3193c8a32794b88
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sat Aug 22 18:55:50 2020 +0200
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Sun Aug 23 15:37:13 2020 +0200

    Fix typo in code
    
    Change-Id: I186af7793c235cdd42c815049ee74543b705ffe1
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101206
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
index f255989a79ac..b4d26e0e0a18 100644
--- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx
+++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx
@@ -197,7 +197,7 @@ static bool checkAttribute(
         /* com::sun::star::beans::PropertyValue::CONSTRAINED */ 4,
         /* com::sun::star::beans::PropertyValue::TRANSIENT */ 8,
         /* com::sun::star::beans::PropertyValue::READONLY */ 16,
-        /* com::sun::star::beans::PropertyValue::MAYBEAMBIGIOUS */ 32,
+        /* com::sun::star::beans::PropertyValue::MAYBEAMBIGUOUS */ 32,
         /* com::sun::star::beans::PropertyValue::MAYBEDEFAULT */ 64,
         /* com::sun::star::beans::PropertyValue::REMOVABLE */ 128,
         /* com::sun::star::beans::PropertyValue::OPTIONAL */ 256 };
@@ -227,7 +227,7 @@ static bool checkAttribute(
                 attributeValue.append("PropertyAttribute.READONLY");
                 break;
             case 32:
-                attributeValue.append("PropertyAttribute.MAYBEAMBIGIOUS");
+                attributeValue.append("PropertyAttribute.MAYBEAMBIGUOUS");
                 break;
             case 64:
                 attributeValue.append("PropertyAttribute.MAYBEDEFAULT");


More information about the Libreoffice-commits mailing list