qadevOOo/tests/java/mod/_forms/GenericModelTest.java |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit cfefaafc1c988e964e06d15f9cdeada6cfbea32d
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Sat Aug 22 18:43:02 2020 +0200
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Sun Aug 23 12:46:15 2020 +0200

    Fix typo in code
    
    Change-Id: I9a81d265a99aee896a71c14e3a3ee6ba863b4d5d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101199
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java 
b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java
index b24a951c30b3..c5ffe1ee55f8 100644
--- a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java
+++ b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java
@@ -133,7 +133,7 @@ public class GenericModelTest extends TestCase {
     private static final String m_TestDB = "TestDB";
     private DBTools m_dbTools = null;
 
-    private boolean m_ConnectionColsed = false;
+    private boolean m_ConnectionClosed = false;
 
     /**
      * describes the kind of the shape which should be created.
@@ -217,7 +217,7 @@ public class GenericModelTest extends TestCase {
     protected void initialize(TestParameters tParam, PrintWriter log) throws 
Exception {
         log.println("creating a textdocument");
         m_xTextDoc = WriterTools.createTextDoc(tParam.getMSF());
-        m_ConnectionColsed = false;
+        m_ConnectionClosed = false;
         debug = tParam.getBool(util.PropertyName.DEBUG_IS_ACTIVE);
         m_propertiesToSet.clear();
     }
@@ -237,7 +237,7 @@ public class GenericModelTest extends TestCase {
         // some interface tests call cleanup to reset the environment. If such
         // a test is the last one cleanup was called twice. The second call
         // causes then nasty exceptions...
-        if (m_ConnectionColsed) return;
+        if (m_ConnectionClosed) return;
 
         try {
             XIndexAccess forms = UnoRuntime.queryInterface( XIndexAccess.class,
@@ -329,7 +329,7 @@ public class GenericModelTest extends TestCase {
             log.println("ERROR: Error while object test cleaning up: " + 
e.toString());
         }
 
-        m_ConnectionColsed = true;
+        m_ConnectionClosed = true;
     }
 
     /**
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to