Compiler-generated code is just fine

...now that member is Sequence instead of pointer to Sequence.
This commit is contained in:
Stephan Bergmann 2012-03-08 20:39:35 +01:00
parent 4ba3a64c20
commit c361ef8650

View File

@ -50,21 +50,8 @@ struct SchXMLCell
SchXMLCellType eType;
rtl::OUString aRangeId;
SchXMLCell() : aComplexString(), fValue( 0.0 ), eType( SCH_CELL_TYPE_UNKNOWN )
SchXMLCell(): fValue( 0.0 ), eType( SCH_CELL_TYPE_UNKNOWN )
{}
SchXMLCell( const SchXMLCell& rOther )
: aString( rOther.aString )
, aComplexString( rOther.aComplexString )
, fValue( rOther.fValue )
, eType( rOther.eType )
, aRangeId( rOther.aRangeId )
{}
~SchXMLCell()
{
}
};
struct SchXMLTable