summaryrefslogtreecommitdiff
path: root/chart2/qa
diff options
context:
space:
mode:
authorBjörn Milcke <bm@openoffice.org>2003-10-31 15:30:42 +0000
committerBjörn Milcke <bm@openoffice.org>2003-10-31 15:30:42 +0000
commit0ce0f21c5d49149dcbbdd0ce6c8aae9eb7498471 (patch)
tree15a612b55b12cd2f94b46ddb3b3a953d3b45b235 /chart2/qa
parentc06a88907ace1f07afea06352c917bc12423381d (diff)
change fill-style of area (and color to different one)
Diffstat (limited to 'chart2/qa')
-rw-r--r--chart2/qa/TestCaseOldAPI.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/chart2/qa/TestCaseOldAPI.java b/chart2/qa/TestCaseOldAPI.java
index 763e8d61bf2e..05d3750a204e 100644
--- a/chart2/qa/TestCaseOldAPI.java
+++ b/chart2/qa/TestCaseOldAPI.java
@@ -334,8 +334,9 @@ public class TestCaseOldAPI extends ComplexTestCase {
try
{
- int nColor = 0xffe1ff; // thistle1
+ int nColor = 0xf5fffa; // mint cream
xArea.setPropertyValue( "FillColor", new Integer( nColor ) );
+ xArea.setPropertyValue( "FillStyle", FillStyle.SOLID );
int nNewColor = AnyConverter.toInt( xArea.getPropertyValue( "FillColor" ) );
assure( "Changing FillColor of Area failed", nNewColor == nColor );