To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97591
User dtardon changed the following:
What |Old value |New value
================================================================================
CC|'kpalagin,mr_smyle,rail' |'dtardon,kpalagin,mr_smyle
| |,rail'
--------------------------------------------------------------------------------
Issue type|DEFECT |PATCH
--------------------------------------------------------------------------------
Subcomponent|code |save-export
--------------------------------------------------------------------------------
------- Additional comments from [email protected] Fri Sep 4 10:29:47
+0000 2009 -------
The problem is in collecting column positions for styles' export in
SwXMLTableLines_Impl::SwXMLTableLines_Impl()
(sw/source/filter/xml/xmltble.cxx:141), where the position (computed as width of
the column and all columns on the left) is represended by sal_uInt16.
Unfortunately, 16 bits is not sufficient in some cases. For example, when I
change the width of the column in the reproducer four times, widths of the
columns are 24079, 13819, 13819 and 13819, giving a total of 65536, which is 0
on 16 bits. The attached patch changes the representation of column position to
sal_uInt32.
---------------------------------------------------------------------
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: [email protected]
For additional commands, e-mail: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]