summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-03-08 20:39:35 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-03-08 20:40:00 +0100
commitc361ef86504e79a1e1b56fa3a7eba2f893386e2c (patch)
treef75845924b8f7f94c2b9bf6fb40b60af93d55c9e /xmloff
parent4ba3a64c2023cd57e1fc0a7bb6c5610378cbfd94 (diff)
Compiler-generated code is just fine
...now that member is Sequence instead of pointer to Sequence.
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/transporttypes.hxx15
1 files changed, 1 insertions, 14 deletions
diff --git a/xmloff/source/chart/transporttypes.hxx b/xmloff/source/chart/transporttypes.hxx
index cb03cbc430ae..7ecf0860d1ba 100644
--- a/xmloff/source/chart/transporttypes.hxx
+++ b/xmloff/source/chart/transporttypes.hxx
@@ -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