summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--framework/source/services/frame.cxx4
-rw-r--r--include/comphelper/multiinterfacecontainer2.hxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index 9c3aeb2897ef..6603ceaaecc3 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -1698,11 +1698,11 @@ void SAL_CALL XFrameImpl::close( sal_Bool bDeliverOwnership )
m_bSelfClose = true;
}
- throw css::util::CloseVetoException("Frame in use for loading document ...",static_cast< ::cppu::OWeakObject*>(this));
+ throw css::util::CloseVetoException("Frame in use for loading document...",static_cast< ::cppu::OWeakObject*>(this));
}
if ( ! setComponent(nullptr,nullptr) )
- throw css::util::CloseVetoException("Component couldn't be deattached ...",static_cast< ::cppu::OWeakObject*>(this));
+ throw css::util::CloseVetoException("Component couldn't be detached...",static_cast< ::cppu::OWeakObject*>(this));
// If closing is allowed... inform all listeners and dispose this frame!
pContainer = m_aListenerContainer.getContainer( cppu::UnoType<css::util::XCloseListener>::get());
diff --git a/include/comphelper/multiinterfacecontainer2.hxx b/include/comphelper/multiinterfacecontainer2.hxx
index 59d18483baac..e15c26733198 100644
--- a/include/comphelper/multiinterfacecontainer2.hxx
+++ b/include/comphelper/multiinterfacecontainer2.hxx
@@ -41,7 +41,7 @@ namespace comphelper
{
/**
A helper class to store interface references of different types.
- This is a copy of the similiar class at include/cppuhelper/interfacecontainer.h,
+ This is a copy of the similar class at include/cppuhelper/interfacecontainer.h,
but now uses the improved comphelper::InterfaceContainer2.
@see OInterfaceIteratorHelper2