summaryrefslogtreecommitdiff
path: root/framework/source/dispatch
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-01-14 12:42:46 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-01-14 16:31:26 +0100
commita452643b431803b613919871abf1a81de6de3464 (patch)
tree742b35a02a320f584357b80eb956ea0c94a03e7a /framework/source/dispatch
parentcfffb09b3d6d46c500e3be3fe601a4ff6944d40e (diff)
Fix typos
Change-Id: I2b4988e1d81fe60f7699362480cd739d2620c053 Reviewed-on: https://gerrit.libreoffice.org/47856 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'framework/source/dispatch')
-rw-r--r--framework/source/dispatch/loaddispatcher.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/dispatch/loaddispatcher.cxx b/framework/source/dispatch/loaddispatcher.cxx
index 81141c347aae..5d1b7346fade 100644
--- a/framework/source/dispatch/loaddispatcher.cxx
+++ b/framework/source/dispatch/loaddispatcher.cxx
@@ -82,7 +82,7 @@ css::uno::Any LoadDispatcher::impl_dispatch( const css::util::URL& rURL,
// may a dispatch request before is still in progress (?!).
// Then we should wait a little bit and block this new request.
// In case we run into the timeout, we should reject this new request
- // and return "FAILED" as result. Otherwhise we can start this new operation.
+ // and return "FAILED" as result. Otherwise we can start this new operation.
if (!m_aLoader.waitWhileLoading(2000)) // => 2 sec.
{
if (xListener.is())
@@ -98,7 +98,7 @@ css::uno::Any LoadDispatcher::impl_dispatch( const css::util::URL& rURL,
css::frame::DispatchResultEvent(xThis, css::frame::DispatchResultState::FAILURE, css::uno::Any()));
}
- // OK ... now the internal loader seems to be useable for new requests
+ // OK ... now the internal loader seems to be usable for new requests
// and our owner frame seems to be valid for such operations.
// Initialize it with all new but needed properties and start the loading.
css::uno::Reference< css::lang::XComponent > xComponent;