Просмотр исходного кода

Fix missing shorthands.

PR: 26423
Submitted by: Simon Pepping


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197260 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
Finn Bock 20 лет назад
Родитель
Сommit
33da9f62d9

+ 1
- 1
src/java/org/apache/fop/fo/FOPropertyMapping.java Просмотреть файл

@@ -412,9 +412,9 @@ public class FOPropertyMapping implements Constants {
*/
public static Property.Maker[] getGenericMappings() {
FOPropertyMapping gp = new FOPropertyMapping();
gp.createGenerics();
// Create the shorthand first, they are referenced by the real properties.
gp.createShorthandProperties();
gp.createGenerics();
gp.createAccessibilityProperties();
gp.createAbsolutePositionProperties();
gp.createAuralProperties();

+ 1
- 1
src/java/org/apache/fop/fo/Property.java Просмотреть файл

@@ -117,7 +117,7 @@ public class Property {
inherited = generic.inherited;
defaultValue = generic.defaultValue;
percentBase = generic.percentBase;
if (shorthands != null) {
if (generic.shorthands != null) {
shorthands = new Property.Maker[generic.shorthands.length];
System.arraycopy(shorthands, 0, generic.shorthands, 0, shorthands.length);
}

Загрузка…
Отмена
Сохранить