summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbacolumns.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbacolumns.cxx')
-rw-r--r--sw/source/ui/vba/vbacolumns.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbacolumns.cxx b/sw/source/ui/vba/vbacolumns.cxx
index 6b9c577ac369..41a87cf6463e 100644
--- a/sw/source/ui/vba/vbacolumns.cxx
+++ b/sw/source/ui/vba/vbacolumns.cxx
@@ -100,7 +100,7 @@ void SAL_CALL SwVbaColumns::Select( )
uno::Any SAL_CALL SwVbaColumns::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() )
{