summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-10-18 15:02:19 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-10-18 18:26:52 +0300
commit88fcd2c05a037413550ea42f952d330f1b805c78 (patch)
tree82dd0f5fe76f6098873ef76a2b30195de6b692f0 /sc
parentde4d4273f805c43e1c71da4be1b9a0799bab80c4 (diff)
WaE: unreferenced local variable
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/vba/vbarange.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index f4091c8d0ed3..fe8c9df928f1 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -4608,7 +4608,7 @@ ScVbaRange::AutoFilter( const uno::Any& Field, const uno::Any& Criteria1, const
uno::Any aConverted = xConverter->convertTo( Field, getCppuType( (sal_Int32*)0 ) );
bIsValidFieldValue = ( aConverted >>= nField );
}
- catch( const uno::Exception& ex )
+ catch( const uno::Exception& )
{
}
}
@@ -4651,7 +4651,7 @@ ScVbaRange::AutoFilter( const uno::Any& Field, const uno::Any& Criteria1, const
uno::Any aConverted = xConverter->convertTo( Operator, getCppuType( (sal_Int32*)0 ) );
bIsValidOpValue = ( aConverted >>= nOperator );
}
- catch( const uno::Exception& ex )
+ catch( const uno::Exception& )
{
}
}