Skip to content

Commit

Permalink
Fix :
Browse files Browse the repository at this point in the history
The word of the HTML Text is output in a mess in Desktop Viewer(T33939)
  • Loading branch information
Gang Liu committed May 11, 2011
1 parent 9634db3 commit c0fd9d1
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,13 @@ protected void close( boolean isLastLine ) throws BirtException
addToExtension( area );
area.context = context;
area.children = children;
// update the pareant of all children
Iterator childIter = area.children.iterator( );
while ( childIter.hasNext( ) )
{
AbstractArea childArea = (AbstractArea) childIter.next( );
childArea.setParent( area );
}
area.setParent( parent );
children = new ArrayList( );
parent.addChild( area );
Expand Down

0 comments on commit c0fd9d1

Please sign in to comment.