summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-09 15:26:05 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-09 15:42:34 +0100
commit57abbae632071326bf5f949cdbe1c76768509996 (patch)
tree5ef8bfd015adf0eea66c78bb0d1a13db7e8e97f7 /sc/source
parent76f951dd4fef294e62d14a91602e1ab6ca6d5454 (diff)
coverity#708099 unused mTypeClass member
Change-Id: I75a88c9fffb3d2d5c6c12e6df89ba85a8eb92d34
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/vba/vbarange.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index d71551fb2fbd..08d504f6dbf7 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -714,7 +714,6 @@ class CellValueSetter : public ValueSetter
{
protected:
uno::Any maValue;
- uno::TypeClass mTypeClass;
public:
CellValueSetter( const uno::Any& aValue );
virtual bool processValue( const uno::Any& aValue, const uno::Reference< table::XCell >& xCell ) SAL_OVERRIDE;
@@ -722,7 +721,7 @@ public:
};
-CellValueSetter::CellValueSetter( const uno::Any& aValue ): maValue( aValue ), mTypeClass( aValue.getValueTypeClass() ) {}
+CellValueSetter::CellValueSetter( const uno::Any& aValue ): maValue( aValue ) {}
void
CellValueSetter::visitNode( sal_Int32 /*i*/, sal_Int32 /*j*/, const uno::Reference< table::XCell >& xCell )
@@ -810,7 +809,6 @@ class CellValueGetter : public ValueGetter
{
protected:
uno::Any maValue;
- uno::TypeClass mTypeClass;
public:
CellValueGetter() {}
virtual void visitNode( sal_Int32 x, sal_Int32 y, const uno::Reference< table::XCell >& xCell ) SAL_OVERRIDE;