From 22ef2a15bb5cae4b877449237bb8d3e41f2d49db Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 5 Sep 2019 23:17:53 +0200 Subject: Fixing "...." Change-Id: Id005a7531d546dd43de13b49bcb3e93081c5ad8d Reviewed-on: https://gerrit.libreoffice.org/78679 Tested-by: Jenkins Reviewed-by: Julien Nabet --- reportdesign/source/core/sdr/UndoActions.cxx | 2 +- reportdesign/source/core/sdr/UndoEnv.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'reportdesign/source') diff --git a/reportdesign/source/core/sdr/UndoActions.cxx b/reportdesign/source/core/sdr/UndoActions.cxx index 2c6ea11629b3..86f617b239a7 100644 --- a/reportdesign/source/core/sdr/UndoActions.cxx +++ b/reportdesign/source/core/sdr/UndoActions.cxx @@ -117,7 +117,7 @@ OUndoContainerAction::OUndoContainerAction(SdrModel& _rMod OUndoContainerAction::~OUndoContainerAction() { - // if we own the object .... + // if we own the object... Reference< XComponent > xComp( m_xOwnElement, UNO_QUERY ); if ( xComp.is() ) { diff --git a/reportdesign/source/core/sdr/UndoEnv.cxx b/reportdesign/source/core/sdr/UndoEnv.cxx index a4abf09b6e58..80aab3c3a428 100644 --- a/reportdesign/source/core/sdr/UndoEnv.cxx +++ b/reportdesign/source/core/sdr/UndoEnv.cxx @@ -235,7 +235,7 @@ void SAL_CALL OXUndoEnvironment::propertyChange( const PropertyChangeEvent& _rEv if (objectPos == m_pImpl->m_aPropertySetCache.end()) { objectPos = m_pImpl->m_aPropertySetCache.emplace( xSet, ObjectInfo() ).first; - DBG_ASSERT(objectPos != m_pImpl->m_aPropertySetCache.end(), "OXUndoEnvironment::propertyChange : just inserted it ... why it's not there ?"); + DBG_ASSERT(objectPos != m_pImpl->m_aPropertySetCache.end(), "OXUndoEnvironment::propertyChange : just inserted it... why it's not there?"); } if ( objectPos == m_pImpl->m_aPropertySetCache.end() ) return; @@ -245,7 +245,7 @@ void SAL_CALL OXUndoEnvironment::propertyChange( const PropertyChangeEvent& _rEv ObjectInfo& rObjectInfo = objectPos->second; PropertiesInfo::const_iterator aPropertyPos = rObjectInfo.aProperties.find( _rEvent.PropertyName ); if ( aPropertyPos == rObjectInfo.aProperties.end() ) - { // nothing 'til now ... have to change this .... + { // nothing 'til now... have to change this... // the attributes Reference< XPropertySetInfo > xPSI( xSet->getPropertySetInfo(), UNO_SET_THROW ); sal_Int32 nPropertyAttributes = 0; -- cgit