nicer HTML in Word-to-HTML converter for one-section document

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149033 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-21 04:06:12 +00:00
parent 356990061c
commit 40b9e5d383
1 changed files with 6 additions and 0 deletions

View File

@ -308,6 +308,12 @@ public abstract class AbstractWordConverter
protected void processDocumentPart( HWPFDocumentCore wordDocument,
final Range range )
{
if ( range.numSections() == 1 )
{
processSingleSection( wordDocument, range.getSection( 0 ) );
return;
}
for ( int s = 0; s < range.numSections(); s++ )
{
processSection( wordDocument, range.getSection( s ), s );