diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-19 09:19:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-19 09:21:25 +0100 |
commit | 0c75ccb527dac3c7d221f9cb2eb21ec7cda3ea6a (patch) | |
tree | 26950ea4183044376cafda7891fd77b289046a94 /oox/source/export | |
parent | 7c78bcc6f115ad43a064b0be11d9bcc2aa7bdd00 (diff) |
coverity#1298896 dead code
Change-Id: I27b27b4f6ca4b443ebbfb0898cef7481b47658f9
Diffstat (limited to 'oox/source/export')
-rw-r--r-- | oox/source/export/drawingml.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx index 36c0a9615b1e..832914f7ca9c 100644 --- a/oox/source/export/drawingml.cxx +++ b/oox/source/export/drawingml.cxx @@ -1786,8 +1786,6 @@ sal_Int32 DrawingML::getBulletMarginIndentation (Reference< XPropertySet > rXPro const PropertyValue* pPropValue = aPropertySequence.getArray(); - sal_Int16 nNumberingType = SVX_NUM_NUMBER_NONE; - for ( sal_Int32 i = 0; i < nPropertyCount; i++ ) { const void* pValue = pPropValue[ i ].Value.getValue(); @@ -1800,9 +1798,6 @@ sal_Int32 DrawingML::getBulletMarginIndentation (Reference< XPropertySet > rXPro } } - if (nNumberingType == SVX_NUM_NUMBER_NONE) - return 0; - return 0; } |