From 4c6a30d53d9039066c368b9e9f6819e8594461cc Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 5 Dec 2014 09:37:24 +0000 Subject: coverity#707985 Uninitialized scalar field Change-Id: I1847b2900b513cc9b7b47767a15fb7e11d0abf26 --- sc/inc/fillinfo.hxx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'sc/inc/fillinfo.hxx') diff --git a/sc/inc/fillinfo.hxx b/sc/inc/fillinfo.hxx index 45b4a643ead6..94bd6b19d23e 100644 --- a/sc/inc/fillinfo.hxx +++ b/sc/inc/fillinfo.hxx @@ -143,7 +143,7 @@ struct RowInfo : boost::noncopyable { CellInfo* pCellInfo; - sal_uInt16 nHeight; + sal_uInt16 nHeight; SCROW nRowNo; SCCOL nRotMaxCol; // SC_ROTMAX_NONE, if nothing @@ -152,12 +152,6 @@ struct RowInfo : boost::noncopyable bool bAutoFilter:1; bool bPivotButton:1; bool bChanged:1; // TRUE, if not tested - - inline explicit RowInfo() : pCellInfo( 0 ) {} - -private: - RowInfo( const RowInfo& ); - RowInfo& operator=( const RowInfo& ); }; struct ScTableInfo : boost::noncopyable @@ -169,10 +163,6 @@ struct ScTableInfo : boost::noncopyable explicit ScTableInfo(); ~ScTableInfo(); - -private: - ScTableInfo( const ScTableInfo& ); - ScTableInfo& operator=( const ScTableInfo& ); }; #endif -- cgit