summaryrefslogtreecommitdiff
path: root/reportdesign/java
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-06-16 12:13:52 +0000
committerRüdiger Timm <rt@openoffice.org>2008-06-16 12:13:52 +0000
commitc9725a31bd8f4bb09eb596145b4f741332e14063 (patch)
tree9bb9ddef8ab4ab2dbe07a6a22926dd6efd3d18d7 /reportdesign/java
parent46521ca4117e253a86abc8dd030b56e988df67eb (diff)
INTEGRATION: CWS rptchart02 (1.3.4); FILE MERGED
2008/05/15 06:05:42 oj 1.3.4.3: #i87576# use new date function 2008/04/16 06:23:28 oj 1.3.4.2: RESYNC: (1.3-1.4); FILE MERGED 2008/03/12 09:42:51 oj 1.3.4.1: impl chart handling and some code refactoring
Diffstat (limited to 'reportdesign/java')
-rw-r--r--reportdesign/java/com/sun/star/report/pentaho/output/ImageProducer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/java/com/sun/star/report/pentaho/output/ImageProducer.java b/reportdesign/java/com/sun/star/report/pentaho/output/ImageProducer.java
index 7cdd2f85dacf..8a67a5519635 100644
--- a/reportdesign/java/com/sun/star/report/pentaho/output/ImageProducer.java
+++ b/reportdesign/java/com/sun/star/report/pentaho/output/ImageProducer.java
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ImageProducer.java,v $
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
* This file is part of OpenOffice.org.
*
@@ -394,7 +394,7 @@ public class ImageProducer
final CSSNumericValue widthVal = CSSNumericValue.createValue(CSSNumericType.MM, dims.getWidth() / 100.0);
final CSSNumericValue heightVal = CSSNumericValue.createValue(CSSNumericType.MM, dims.getHeight() / 100.0);
- if (!preserveIRI)
+ if (preserveIRI)
{
final OfficeImage retval = new OfficeImage(url.toString(), widthVal, heightVal);
imageCache.put(url, retval);