diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2005-08-28 21:20:56 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2005-08-28 21:20:56 +0000 |
commit | 486b743c88bad8779c2f2a8298af7e6956096696 (patch) | |
tree | d533c69a8f551e71a02f13ba3f943b1188af1df0 /src/java/org/apache/fop/layoutmgr/table | |
parent | 6f9112e7c8708b58d8965adb4f123fc1842bafdd (diff) | |
download | xmlgraphics-fop-486b743c88bad8779c2f2a8298af7e6956096696.tar.gz xmlgraphics-fop-486b743c88bad8779c2f2a8298af7e6956096696.zip |
Added warning for non-standard fallback
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@263924 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/layoutmgr/table')
-rw-r--r-- | src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java b/src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java index 31c684639..ee3a5bdba 100644 --- a/src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java +++ b/src/java/org/apache/fop/layoutmgr/table/TableLayoutManager.java @@ -123,6 +123,9 @@ public class TableLayoutManager extends BlockStackingLayoutManager referenceIPD = context.getRefIPD(); if (fobj.getInlineProgressionDimension().getOptimum().getEnum() != EN_AUTO) { referenceIPD = fobj.getInlineProgressionDimension().getOptimum().getLength().getValue(); + } else if( !fobj.isAutoLayout() ) { + log.info("table-layout=\"fixed\" and width=\"auto\", but auto-layout not supported " + + "=> assuming width=\"100%\""); } if (referenceIPD > context.getRefIPD()) { log.warn("Allocated IPD exceeds available reference IPD"); |