[FOray-commit] SF.net SVN: foray: [7417] trunk/foray/foray-areatree/src/java/org/foray/area
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-06-06 02:06:37
|
Revision: 7417 Author: victormote Date: 2006-06-05 13:15:49 -0700 (Mon, 05 Jun 2006) ViewCVS: http://svn.sourceforge.net/foray/?rev=7417&view=rev Log Message: ----------- Conform to axsl changes: Remove no-longer-needed parameters. Modified Paths: -------------- trunk/foray/foray-areatree/src/java/org/foray/area/ExternalGraphicArea.java trunk/foray/foray-areatree/src/java/org/foray/area/ForeignObjectArea.java Modified: trunk/foray/foray-areatree/src/java/org/foray/area/ExternalGraphicArea.java =================================================================== --- trunk/foray/foray-areatree/src/java/org/foray/area/ExternalGraphicArea.java 2006-06-05 20:15:42 UTC (rev 7416) +++ trunk/foray/foray-areatree/src/java/org/foray/area/ExternalGraphicArea.java 2006-06-05 20:15:49 UTC (rev 7417) @@ -57,15 +57,13 @@ public int viewportBPD() { ExternalGraphic eg = (ExternalGraphic) this.traitGeneratedBy(); Area parentForDimensions = this.ancestorGeneratedByBlockLevelFO(); - return eg.viewportBPD(parentForDimensions.crIPD(), - parentForDimensions.crBPD()); + return eg.viewportBPD(parentForDimensions.crBPD()); } public int viewportIPD() { ExternalGraphic eg = (ExternalGraphic) this.traitGeneratedBy(); Area parentForDimensions = this.ancestorGeneratedByBlockLevelFO(); - return eg.viewportIPD(parentForDimensions.crIPD(), - parentForDimensions.crBPD()); + return eg.viewportIPD(parentForDimensions.crIPD()); } /** Modified: trunk/foray/foray-areatree/src/java/org/foray/area/ForeignObjectArea.java =================================================================== --- trunk/foray/foray-areatree/src/java/org/foray/area/ForeignObjectArea.java 2006-06-05 20:15:42 UTC (rev 7416) +++ trunk/foray/foray-areatree/src/java/org/foray/area/ForeignObjectArea.java 2006-06-05 20:15:49 UTC (rev 7417) @@ -59,16 +59,14 @@ InstreamForeignObject ifo = (InstreamForeignObject) this.traitGeneratedBy(); Area parentForDimensions = this.ancestorGeneratedByBlockLevelFO(); - return ifo.viewportBPD(parentForDimensions.crIPD(), - parentForDimensions.crBPD()); + return ifo.viewportBPD(parentForDimensions.crBPD()); } public int viewportIPD() { InstreamForeignObject ifo = (InstreamForeignObject) this.traitGeneratedBy(); Area parentForDimensions = this.ancestorGeneratedByBlockLevelFO(); - return ifo.viewportIPD(parentForDimensions.crIPD(), - parentForDimensions.crBPD()); + return ifo.viewportIPD(parentForDimensions.crIPD()); } public org.axsl.areaR.AreaNode getContainedForeignObject() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |