diff options
author | Robert Antoni Buj i Gelonch <robert.buj@gmail.com> | 2014-10-15 18:34:53 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-10-16 09:36:17 +0000 |
commit | 3a6987beaf85876e1061d553cdc134d40c54597e (patch) | |
tree | 1aa92c920770429acded42a6f180430bd07d1797 /qadevOOo | |
parent | 3be8ff052f8aa67919343730d675493308759ffc (diff) |
runner: if .. else if .. else
Change-Id: If9c07074b60b14d0f4e947754d4bf34e4f2f9676
Reviewed-on: https://gerrit.libreoffice.org/11990
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/convwatch/GraphicalTestArguments.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/runner/convwatch/GraphicalTestArguments.java b/qadevOOo/runner/convwatch/GraphicalTestArguments.java index 5fc4bedbdfde..e4dd7c0b6028 100644 --- a/qadevOOo/runner/convwatch/GraphicalTestArguments.java +++ b/qadevOOo/runner/convwatch/GraphicalTestArguments.java @@ -218,7 +218,7 @@ public class GraphicalTestArguments // m_tWithBorderMove = TriState.UNSET; m_tWithBorderMove = TriState.FALSE; } - if (sWithBorderMove.equalsIgnoreCase("yes") || + else if (sWithBorderMove.equalsIgnoreCase("yes") || sWithBorderMove.equalsIgnoreCase("true")) { m_tWithBorderMove = TriState.TRUE; |