Revision: 7600
Author: victormote
Date: 2006-06-14 14:17:54 -0700 (Wed, 14 Jun 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7600&view=rev
Log Message:
-----------
Fix NPE (using wrong method).
Modified Paths:
--------------
trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/obj/PageSequence.java
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/obj/PageSequence.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/obj/PageSequence.java 2006-06-14 20:52:05 UTC (rev 7599)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/obj/PageSequence.java 2006-06-14 21:17:54 UTC (rev 7600)
@@ -232,7 +232,7 @@
return spm;
}
if (pageSequenceMaster != null) {
- Flow flow = getFlow(context);
+ Flow flow = getFlow();
spm = pageSequenceMaster.getNextSimplePageMaster(
((pageNumberInDocument % 2) == 1), isBlank);
Region region = (Region) spm.getRegionBody();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|