summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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& )
{
}
}