aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop/layoutmgr/table
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2005-08-28 21:20:56 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2005-08-28 21:20:56 +0000
commit486b743c88bad8779c2f2a8298af7e6956096696 (patch)
treed533c69a8f551e71a02f13ba3f943b1188af1df0 /src/java/org/apache/fop/layoutmgr/table
parent6f9112e7c8708b58d8965adb4f123fc1842bafdd (diff)
downloadxmlgraphics-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.java3
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");