To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100522


User hdu changed the following:

                What    |Old value                 |New value
================================================================================
                      CC|'rainerbielefeld'         |'hdu,rainerbielefeld'
--------------------------------------------------------------------------------
             Assigned to|hdu                       |pl
--------------------------------------------------------------------------------




------- Additional comments from h...@openoffice.org Wed Mar 25 14:08:39 +0000 
2009 -------
@pl: the problem has a similar root cause to issue 87686. This problem in this 
issue is in your method PDFWriterImpl::drawHorizontalGlyphs() where multiple 
glyphs get merge to reduce the PDF file size. 
Until this gets properly fixed disabling the buggy merging is a reasonable 
workaround:

--- source/gdi/pdfwriter_impl.cxx       (revision 269829)
+++ source/gdi/pdfwriter_impl.cxx      (HDU's working copy)
@@ -6623,7 +6623,9 @@ PDFWriterImpl::drawHorizontalGlyphs(
     for( size_t i = 1; i < rGlyphs.size(); i++ )
     {
+#if 0
         if( rGlyphs[i].m_nMappedFontId != rGlyphs[i-1].m_nMappedFontId ||
             rGlyphs[i].m_aPos.Y() != rGlyphs[i-1].m_aPos.Y() )
+#endif
         {
             aRunEnds.push_back(i);
         }


---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to