diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2007-07-05 19:01:14 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2007-07-05 19:01:14 +0000 |
commit | 44599be432e46f8a42060e28bb9e956af2203350 (patch) | |
tree | 30ebed255afb1f9132f0d004a5c381055d885e53 /src/java/org | |
parent | c267a577c06e4f737d53fb7e24a4de656909be5c (diff) | |
download | xmlgraphics-fop-44599be432e46f8a42060e28bb9e956af2203350.tar.gz xmlgraphics-fop-44599be432e46f8a42060e28bb9e956af2203350.zip |
Fix for a tiny but very nasty bug...
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@553612 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r-- | src/java/org/apache/fop/fo/Constants.java | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/java/org/apache/fop/fo/Constants.java b/src/java/org/apache/fop/fo/Constants.java index 92cbe54da..e0477c0a5 100644 --- a/src/java/org/apache/fop/fo/Constants.java +++ b/src/java/org/apache/fop/fo/Constants.java @@ -1054,39 +1054,39 @@ public interface Constants { /** Enumeration constant */ int EN_LIGHTER = 168; /** Enumeration constant */ - int EN_100 = 168; + int EN_100 = 169; /** Enumeration constant */ - int EN_200 = 169; + int EN_200 = 170; /** Enumeration constant */ - int EN_300 = 170; + int EN_300 = 171; /** Enumeration constant */ - int EN_400 = 171; + int EN_400 = 172; /** Enumeration constant */ - int EN_500 = 172; + int EN_500 = 173; /** Enumeration constant */ - int EN_600 = 173; + int EN_600 = 174; /** Enumeration constant */ - int EN_700 = 174; + int EN_700 = 175; /** Enumeration constant */ - int EN_800 = 175; + int EN_800 = 176; /** Enumeration constant */ - int EN_900 = 176; + int EN_900 = 177; /** Enumeration constant -- page-break-shorthand */ - int EN_AVOID = 177; + int EN_AVOID = 178; /** Enumeration constant -- white-space shorthand */ - int EN_PRE = 178; + int EN_PRE = 179; /** Enumeration constant -- font shorthand */ - int EN_CAPTION = 179; + int EN_CAPTION = 180; /** Enumeration constant -- font shorthand */ - int EN_ICON = 180; + int EN_ICON = 181; /** Enumeration constant -- font shorthand */ - int EN_MENU = 181; + int EN_MENU = 182; /** Enumeration constant -- font shorthand */ - int EN_MESSAGE_BOX = 182; + int EN_MESSAGE_BOX = 183; /** Enumeration constant -- font shorthand */ - int EN_SMALL_CAPTION = 183; + int EN_SMALL_CAPTION = 184; /** Enumeration constant -- font shorthand */ - int EN_STATUS_BAR = 184; + int EN_STATUS_BAR = 185; /** Number of enumeration constants defined */ - int ENUM_COUNT = 184; + int ENUM_COUNT = 185; } |