diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-28 17:02:39 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-28 17:02:39 +0100 |
commit | 41038b2b3d606508258ae4c1a99a5b9379c853d9 (patch) | |
tree | fe8dceb995328a2fda5aa8d657524d125dda5f64 /svx | |
parent | b7840fbb7e5866c06020676cf9ea3ad5a5034c59 (diff) |
warning C4702: unreachable code
Change-Id: Id5cf39a4b8d55b2060a65103e4f02589d03e3ee1
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/accessibility/AccessibleGraphicShape.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/svx/source/accessibility/AccessibleGraphicShape.cxx b/svx/source/accessibility/AccessibleGraphicShape.cxx index 91cded27bd54..fc7cab68b39d 100644 --- a/svx/source/accessibility/AccessibleGraphicShape.cxx +++ b/svx/source/accessibility/AccessibleGraphicShape.cxx @@ -207,12 +207,10 @@ OUString AccessibleGraphicShape::CreateAccessibleDescription (void) sal_Int16 SAL_CALL AccessibleGraphicShape::getAccessibleRole (void) throw (::com::sun::star::uno::RuntimeException) { - sal_Int16 nAccessibleRole = AccessibleRole::SHAPE; if( m_pShape->GetModel()->GetImageMapForObject(m_pShape) != NULL ) return AccessibleRole::IMAGE_MAP; else return AccessibleShape::getAccessibleRole(); - return nAccessibleRole; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |