diff --git a/src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java b/src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java index 2ceeb4713e..7d66914bdb 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/dev/HWPFLister.java @@ -255,8 +255,21 @@ public final class HWPFLister System.out.println( "\t" + sprm.toString() ); } } + + if ( true ) + { + System.out.println( new Range( chpx.getStart(), chpx.getEnd(), + _doc.getOverallRange() ) + { + public String toString() + { + return "CHPX range (" + super.toString() + ")"; + }; + }.text() ); + } } } + public void dumpTextPieces( boolean withText ) { for ( TextPiece textPiece : _doc.getTextTable().getTextPieces() )