[Libreoffice-commits] .: xmloff/source

Stephan Bergmann sbergmann at kemper.freedesktop.org
Thu Mar 8 11:42:56 PST 2012


 xmloff/source/chart/transporttypes.hxx |   15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)

New commits:
commit c361ef86504e79a1e1b56fa3a7eba2f893386e2c
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Mar 8 20:39:35 2012 +0100

    Compiler-generated code is just fine
    
    ...now that member is Sequence instead of pointer to Sequence.

diff --git a/xmloff/source/chart/transporttypes.hxx b/xmloff/source/chart/transporttypes.hxx
index cb03cbc..7ecf086 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


More information about the Libreoffice-commits mailing list