diff options
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/forms/eventexport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/forms/eventexport.cxx b/xmloff/source/forms/eventexport.cxx index 667d135dc8e8..8febf2d3e7fe 100644 --- a/xmloff/source/forms/eventexport.cxx +++ b/xmloff/source/forms/eventexport.cxx @@ -90,7 +90,7 @@ namespace xmloff void SAL_CALL OEventDescriptorMapper::replaceByName( const OUString&, const Any& ) throw(IllegalArgumentException, NoSuchElementException, WrappedTargetException, RuntimeException, std::exception) { throw IllegalArgumentException( - OUString("replacing is not implemented for this wrapper class."), static_cast< ::cppu::OWeakObject* >(this), 1); + "replacing is not implemented for this wrapper class.", static_cast< ::cppu::OWeakObject* >(this), 1); } Any SAL_CALL OEventDescriptorMapper::getByName( const OUString& _rName ) throw(NoSuchElementException, WrappedTargetException, RuntimeException, std::exception) @@ -98,7 +98,7 @@ namespace xmloff MapString2PropertyValueSequence::const_iterator aPos = m_aMappedEvents.find(_rName); if (m_aMappedEvents.end() == aPos) throw NoSuchElementException( - OUString("There is no element named ") += _rName, + OUString("There is no element named ") + _rName, static_cast< ::cppu::OWeakObject* >(this)); return makeAny(aPos->second); |