To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43553
User dr changed the following:
What |Old value |New value
================================================================================
Status|NEW |RESOLVED
--------------------------------------------------------------------------------
Resolution| |FIXED
--------------------------------------------------------------------------------
Target milestone|--- |OOo 2.0
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Sun Feb 27 23:45:33 -0800
2005 -------
Seems to be a well known bug in GCC. To be on the save side, I changed this as
follows:
void XclExpTabViewSettings::WriteWindow2( XclExpStream& rStrm ) const
{
- XclExpWindow2( GetRoot(), maData, mnGridColorId ).Save( rStrm );
+ XclExpWindow2 aWindow2( GetRoot(), maData, mnGridColorId );
+ aWindow2.Save( rStrm );
}
void XclExpTabViewSettings::WritePane( XclExpStream& rStrm ) const
{
if( maData.IsSplit() )
- XclExpPane( GetRoot(), maData ).Save( rStrm );
+ {
+ XclExpPane aPane( GetRoot(), maData );
+ aPane.Save( rStrm );
+ }
}
Fixed in SRC680/dr34 (OOo 2.0).
---------------------------------------------------------------------
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]