summaryrefslogtreecommitdiffstats
path: root/sw/source/ui/vba/vbarows.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbarows.cxx')
-rw-r--r--sw/source/ui/vba/vbarows.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbarows.cxx b/sw/source/ui/vba/vbarows.cxx
index ac08e16e9726..cfe3b862d3aa 100644
--- a/sw/source/ui/vba/vbarows.cxx
+++ b/sw/source/ui/vba/vbarows.cxx
@@ -317,7 +317,7 @@ void SAL_CALL SwVbaRows::Select( )
uno::Any SAL_CALL SwVbaRows::Item( const uno::Any& Index1, const uno::Any& /*not processed in this base class*/ )
{
sal_Int32 nIndex = 0;
- if( ( Index1 >>= nIndex ) )
+ if( Index1 >>= nIndex )
{
if( nIndex <= 0 || nIndex > getCount() )
{