summaryrefslogtreecommitdiff
path: root/wizards/com/sun
diff options
context:
space:
mode:
authorAriel Constenla-Haile <arielch@apache.org>2012-12-23 18:20:18 +0000
committerAriel Constenla-Haile <arielch@apache.org>2012-12-23 18:20:18 +0000
commit734b532fb77d2d5be7eb7becb6720dbd7b3d8978 (patch)
tree42250565a0fc12fd16774e2162c506dc1837150b /wizards/com/sun
parenteb64d8f6508041bdeaed6791e0fe90430b994113 (diff)
i121162 - ImageScaleMode constants should be in UPPERCASE
Notes
Diffstat (limited to 'wizards/com/sun')
-rw-r--r--wizards/com/sun/star/wizards/document/DatabaseControl.java2
-rw-r--r--wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/document/DatabaseControl.java b/wizards/com/sun/star/wizards/document/DatabaseControl.java
index 97608570aa26..ca418c4ab736 100644
--- a/wizards/com/sun/star/wizards/document/DatabaseControl.java
+++ b/wizards/com/sun/star/wizards/document/DatabaseControl.java
@@ -250,7 +250,7 @@ public class DatabaseControl extends Control
// }
else if (getControlType() == FormHandler.SOIMAGECONTROL)
{
- xPropertySet.setPropertyValue("ScaleMode", com.sun.star.awt.ImageScaleMode.Isotropic);
+ xPropertySet.setPropertyValue("ScaleMode", com.sun.star.awt.ImageScaleMode.ISOTROPIC);
}
}
catch (Exception e)
diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java b/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java
index 403f4fcad27e..2903dfe43e88 100644
--- a/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java
+++ b/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java
@@ -801,7 +801,7 @@ abstract public class ReportBuilderLayouter implements IReportBuilderLayouter
{
// xImageControl.setScaleImage(true);
- xImageControl.setScaleMode(com.sun.star.awt.ImageScaleMode.Isotropic);
+ xImageControl.setScaleMode(com.sun.star.awt.ImageScaleMode.ISOTROPIC);
}
}
else