diff options
author | Ariel Constenla-Haile <arielch@apache.org> | 2012-12-23 18:20:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-06-27 16:58:09 +0100 |
commit | 949f97ba480f96c7892602f3208467ac925fab15 (patch) | |
tree | 61fd513dea511cb92c6395717ca65a7317744108 /offapi | |
parent | 62aec37627c30c56b4ec7c04bc194cabff6a3e14 (diff) |
Resolves: #i121162# ImageScaleMode constants should be in UPPERCASE
(cherry picked from commit 734b532fb77d2d5be7eb7becb6720dbd7b3d8978)
Conflicts:
offapi/com/sun/star/awt/ImageScaleMode.idl
oox/source/ole/axcontrol.cxx
reportdesign/source/filter/xml/xmlHelper.cxx
wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java
Change-Id: Ib5fa7b82edddb809129a4e5619a20ca7a7b2e38a
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/awt/ImageScaleMode.idl | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/offapi/com/sun/star/awt/ImageScaleMode.idl b/offapi/com/sun/star/awt/ImageScaleMode.idl index c0f69d3cefdc..cb05a16a7859 100644 --- a/offapi/com/sun/star/awt/ImageScaleMode.idl +++ b/offapi/com/sun/star/awt/ImageScaleMode.idl @@ -20,34 +20,30 @@ #ifndef __com_sun_star_awt_ImageScaleMode_idl__ #define __com_sun_star_awt_ImageScaleMode_idl__ - module com { module sun { module star { module awt { - /** defines modes how an image displayed in a given area should be scaled to fit this area */ constants ImageScaleMode { /** specifies that no scaling should happen at all */ - const short None = 0; + const short NONE = 0; /** specifies that the image should be scaled up or down to the size of the surrounding area isotropically, i.e. by keeping its aspect ratio. */ - const short Isotropic = 1; + const short ISOTROPIC = 1; /** specifies that the image should be scaled up or down to the size of the surrounding area anisotropically. <p>The image will finally cover all of the surrounding area, but its dimensions might be distorted.</p> */ - const short Anisotropic = 2; + const short ANISOTROPIC = 2; }; - }; }; }; }; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |