From 308f6e8efee214233bc38ce69db2fa305704206b Mon Sep 17 00:00:00 2001 From: Ivo Hinkelmann Date: Mon, 22 Jun 2009 10:07:11 +0000 Subject: #i10000# build fix --- sdext/source/pdfimport/tree/pdfiprocessor.cxx | 31 +-------------------------- 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/sdext/source/pdfimport/tree/pdfiprocessor.cxx b/sdext/source/pdfimport/tree/pdfiprocessor.cxx index ccfc273124e1..2a025430b722 100644 --- a/sdext/source/pdfimport/tree/pdfiprocessor.cxx +++ b/sdext/source/pdfimport/tree/pdfiprocessor.cxx @@ -455,35 +455,7 @@ void PDFIProcessor::drawGlyphLine( const rtl::OUString& rGlyphs, ) { processGlyphLine(); - - CharGlyph aGlyph; - - aGlyph.setGlyph ( rGlyphs ); - aGlyph.setRect ( rRect ); - aGlyph.setFontMatrix ( rFontMatrix ); - aGlyph.setGraphicsContext ( getCurrentContext() ); - getGCId(getCurrentContext()); - aGlyph.setCurElement( m_pCurElement ); - - aGlyph.setYPrevGlyphPosition( fYPrevTextPosition ); - aGlyph.setXPrevGlyphPosition( fXPrevTextPosition ); - aGlyph.setPrevGlyphHeight ( fPrevTextHeight ); - aGlyph.setPrevGlyphWidth ( fPrevTextWidth ); - - m_GlyphsList.push_back( aGlyph ); - - fYPrevTextPosition = rRect.Y1; - fXPrevTextPosition = rRect.X2; - fPrevTextHeight = rRect.Y2-rRect.Y1; - fPrevTextWidth = rRect.X2-rRect.X1; - - if( !m_bIsWhiteSpaceInLine ) - { - rtl::OUString tempWhiteSpaceStr( 32 ); - m_bIsWhiteSpaceInLine=rGlyphs.equals( tempWhiteSpaceStr ); - } - -======= + } CharGlyph aGlyph; @@ -512,7 +484,6 @@ void PDFIProcessor::drawGlyphLine( const rtl::OUString& rGlyphs, static rtl::OUString tempWhiteSpaceNonBreakingStr( 0xa0 ); m_bIsWhiteSpaceInLine=(rGlyphs.equals( tempWhiteSpaceStr ) || rGlyphs.equals( tempWhiteSpaceNonBreakingStr )); } ->>>>>>> .merge-right.r272944 } GraphicsContext& PDFIProcessor::getTransformGlyphContext( CharGlyph& rGlyph ) -- cgit