summaryrefslogtreecommitdiff
path: root/framework/source/services
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-07 23:14:30 +0200
committerJulien Nabet <serval2412@yahoo.fr>2015-07-08 05:48:18 +0000
commit799cc41b53a59c543408fa5370e107c2c57a2904 (patch)
tree790ed9324cea1b9a2f54955a0497cab55c617128 /framework/source/services
parentff669d1c7f692052534d1136d1ff4220433f8542 (diff)
Fix typos
Change-Id: I70b03c152f63e48341dc5629a99b0eeab7b497c0 Reviewed-on: https://gerrit.libreoffice.org/16834 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'framework/source/services')
-rw-r--r--framework/source/services/autorecovery.cxx8
-rw-r--r--framework/source/services/frame.cxx8
2 files changed, 8 insertions, 8 deletions
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<css::util::XCloseListener>::get());