diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-15 09:19:55 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-15 09:20:24 +0200 |
commit | 301764855ed9f4a4c28b98013361f7174e0f7c7b (patch) | |
tree | e8950d9c7b6e8985d9eea5e882e34cd87050b667 /qadevOOo | |
parent | 366e1238bd41eecf6727784402592fd5c278fe8f (diff) |
com.sun.star.table.BorderLine is already handled further up
Change-Id: I104c778e107259904fa4a830d3685a6506250fbb
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/util/ValueChanger.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/qadevOOo/runner/util/ValueChanger.java b/qadevOOo/runner/util/ValueChanger.java index 5793877eb323..df54d5b06b3c 100644 --- a/qadevOOo/runner/util/ValueChanger.java +++ b/qadevOOo/runner/util/ValueChanger.java @@ -641,13 +641,6 @@ public class ValueChanger { newValue = ST6; if (oldValue.equals(ST6)) newValue = ST1; - } else if (oldValue instanceof com.sun.star.table.BorderLine) { - com.sun.star.table.BorderLine _newValue = (com.sun.star.table.BorderLine) oldValue; - _newValue.Color += 1000; - _newValue.InnerLineWidth += 2; - _newValue.LineDistance += 3; - _newValue.OuterLineWidth += 3; - newValue = _newValue; } else if (oldValue instanceof com.sun.star.sheet.DataPilotFieldOrientation) { com.sun.star.sheet.DataPilotFieldOrientation FO1 = com.sun.star.sheet.DataPilotFieldOrientation.PAGE; com.sun.star.sheet.DataPilotFieldOrientation FO2 = com.sun.star.sheet.DataPilotFieldOrientation.COLUMN; |