diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-04-29 09:42:07 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-04-29 10:12:49 +0100 |
commit | 626fe1669f7062e04db60ce7757d1c7d32842b3a (patch) | |
tree | 4e2174055ca2ba67c392010177bf8a401ba730a1 /lotuswordpro/source | |
parent | fc5cd8b5e916dcf97ada18ea7e8458bfd820f0b9 (diff) |
redundant cast
Change-Id: Ib812a7cafabc4820946da67fb3f8896b6aad1461
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r-- | lotuswordpro/source/filter/lwpfilter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpfilter.cxx b/lotuswordpro/source/filter/lwpfilter.cxx index 9e66d7b480e2..8f93df0ce5cd 100644 --- a/lotuswordpro/source/filter/lwpfilter.cxx +++ b/lotuswordpro/source/filter/lwpfilter.cxx @@ -115,7 +115,7 @@ using namespace OpenStormBento; if (ulRet != BenErr_OK) return false; - boost::scoped_ptr<LtcUtBenValueStream> aWordProData((LtcUtBenValueStream *)pBentoContainer->FindValueStreamWithPropertyName("WordProData")); + boost::scoped_ptr<LtcUtBenValueStream> aWordProData(pBentoContainer->FindValueStreamWithPropertyName("WordProData")); if (!aWordProData.get()) return false; |