diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 21:00:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-03 09:07:56 +0100 |
commit | 9a65df25138750915f9c6e1e1fa09988a2d11434 (patch) | |
tree | 69050dd942f9c7fa261ffdac8547bf03a7a62501 /framework | |
parent | c7ee74cedaaac2951849852546d653ee8c4c4135 (diff) |
coverity#1078526 Logically dead code
Change-Id: I203511fcb1e740d7d371821d49a7c13a72e6fc3b
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/fwe/classes/addonsoptions.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/source/fwe/classes/addonsoptions.cxx b/framework/source/fwe/classes/addonsoptions.cxx index 27891a481501..550112c0af6e 100644 --- a/framework/source/fwe/classes/addonsoptions.cxx +++ b/framework/source/fwe/classes/addonsoptions.cxx @@ -1451,8 +1451,7 @@ AddonsOptions_Impl::ImageEntry* AddonsOptions_Impl::ReadImageData( const OUStrin SubstituteVariables( aImageURL ); - pEntry->addImage(i == OFFSET_IMAGES_SMALL ? IMGSIZE_SMALL : IMGSIZE_BIG, - Image(), aImageURL); + pEntry->addImage(IMGSIZE_BIG, Image(), aImageURL); } } |