From 799cc41b53a59c543408fa5370e107c2c57a2904 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Tue, 7 Jul 2015 23:14:30 +0200 Subject: Fix typos Change-Id: I70b03c152f63e48341dc5629a99b0eeab7b497c0 Reviewed-on: https://gerrit.libreoffice.org/16834 Tested-by: Jenkins Reviewed-by: Julien Nabet --- framework/source/services/autorecovery.cxx | 8 ++++---- framework/source/services/frame.cxx | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'framework/source/services') diff --git a/framework/source/services/autorecovery.cxx b/framework/source/services/autorecovery.cxx index 1d6c55b75464..15f00d4cf489 100644 --- a/framework/source/services/autorecovery.cxx +++ b/framework/source/services/autorecovery.cxx @@ -2504,9 +2504,9 @@ void AutoRecovery::implts_registerDocument(const css::uno::Reference< css::frame // classify the used application module, which is used by this document. implts_specifyAppModuleAndFactory(aNew); - // Hack! Check for "illegal office documents" ... as e.g. the Basic IDE + // Hack! Check for "illegal office documents"... as e.g. the Basic IDE // Its not really a full featured office document. It doesn't provide an URL, any filter, a factory URL etcpp. - // TODO file bug to Basci IDE developers. They must remove the office document API from its service. + // TODO file bug to Basic IDE developers. They must remove the office document API from its service. if ( (aNew.OrgURL.isEmpty()) && (aNew.FactoryURL.isEmpty()) @@ -2598,8 +2598,8 @@ void AutoRecovery::implts_deregisterDocument(const css::uno::Reference< css::fra } /* SAFE */ /* This method is called within disposing() of the document too. But there it's not a good idea to - deregister us as listener. Furter it make no sense - because the broadcaster dies. - So we suppress deregistration in such case ... + deregister us as listener. Further it make no sense - because the broadcaster dies. + So we suppress deregistration in such case... */ if (bStopListening) implts_stopModifyListeningOnDoc(aInfo); diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx index 58a890f68ba7..a3f7bd700584 100644 --- a/framework/source/services/frame.cxx +++ b/framework/source/services/frame.cxx @@ -1738,14 +1738,14 @@ void SAL_CALL Frame::close( sal_Bool bDeliverOwnership ) throw( css::util::Close { TransactionGuard aTransaction( m_aTransactionManager, E_HARDEXCEPTIONS ); - // At the end of this method may we must dispose ourself ... - // and may nobody from outside hold a reference to us ... + // At the end of this method may we must dispose ourself... + // and may nobody from outside hold a reference to us... // then it's a good idea to do that by ourself. css::uno::Reference< css::uno::XInterface > xSelfHold( static_cast< ::cppu::OWeakObject* >(this) ); // Check any close listener before we look for currently running internal processes. - // Because if a listener disagree with this close() request - we hace time to finish this - // internal operations too ... + // Because if a listener disagree with this close() request - we have time to finish this + // internal operations too... // Note: container is threadsafe himself. css::lang::EventObject aSource (static_cast< ::cppu::OWeakObject*>(this)); ::cppu::OInterfaceContainerHelper* pContainer = m_aListenerContainer.getContainer( cppu::UnoType::get()); -- cgit