View | Details | Raw Unified | Return to bug 46610
Collapse All | Expand All

(-)src/scratchpad/src/org/apache/poi/hwpf/model/CHPFormattedDiskPage.java (-2 / +3 lines)
Lines 61-68 Link Here
61
61
62
      for (int x = 0; x < _crun; x++)
62
      for (int x = 0; x < _crun; x++)
63
      {
63
      {
64
    	boolean isUnicode = tpt.isUnicodeAtByteOffset( getStart(x) );
64
    	int startAt = getStart(x) - fcMin;
65
        _chpxList.add(new CHPX(getStart(x) - fcMin, getEnd(x) - fcMin, getGrpprl(x), isUnicode));
65
    	boolean isUnicode = tpt.isUnicodeAtByteOffset( startAt );
66
		_chpxList.add(new CHPX(startAt, getEnd(x) - fcMin, getGrpprl(x), isUnicode));
66
      }
67
      }
67
    }
68
    }
68
69

Return to bug 46610