diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-01-04 21:39:39 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2018-01-05 11:03:10 +0100 |
commit | dbe0201d3aede56e2bda475dd308a891841b98a4 (patch) | |
tree | a94c25e6f89e23eb18618f9e92d87245b2cd1f14 /framework | |
parent | adf0738d2dbfa742d0e9ef130954fb4638a8e90d (diff) |
Fix typos
Change-Id: I766862d255ac285329ae423629c7445837ddd55f
Reviewed-on: https://gerrit.libreoffice.org/47280
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/accelerators/storageholder.cxx | 2 | ||||
-rw-r--r-- | framework/source/dispatch/dispatchprovider.cxx | 1 | ||||
-rw-r--r-- | framework/source/inc/accelerators/presethandler.hxx | 2 | ||||
-rw-r--r-- | framework/source/services/autorecovery.cxx | 6 |
4 files changed, 5 insertions, 6 deletions
diff --git a/framework/source/accelerators/storageholder.cxx b/framework/source/accelerators/storageholder.cxx index 49e0ca821c87..7ea3d2f76ce2 100644 --- a/framework/source/accelerators/storageholder.cxx +++ b/framework/source/accelerators/storageholder.cxx @@ -129,7 +129,7 @@ css::uno::Reference< css::embed::XStorage > StorageHolder::openPath(const OUStri try { - xChild = StorageHolder::openSubStorageWithFallback(xParent, sChild, nOpenMode, true); // TODO think about delegating fallback decision to our own calli! + xChild = StorageHolder::openSubStorageWithFallback(xParent, sChild, nOpenMode, true); // TODO think about delegating fallback decision to our own caller! } catch(const css::uno::RuntimeException&) { throw; } diff --git a/framework/source/dispatch/dispatchprovider.cxx b/framework/source/dispatch/dispatchprovider.cxx index 0d5d76f09bb8..8a4e3aa48a92 100644 --- a/framework/source/dispatch/dispatchprovider.cxx +++ b/framework/source/dispatch/dispatchprovider.cxx @@ -494,7 +494,6 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_searchProt That's why we implement this method. It return an already existing helper or create a new one otherwise. @attention The parameter sTarget and nSearchFlags are defaulted to "" and 0! - Please use it only, if you can be sure, that the really given by the outside calli! Mostly it depends from the parameter eHelper is they are required or not. @param eHelper diff --git a/framework/source/inc/accelerators/presethandler.hxx b/framework/source/inc/accelerators/presethandler.hxx index f9d3ff25b54b..9faf4be6bf8c 100644 --- a/framework/source/inc/accelerators/presethandler.hxx +++ b/framework/source/inc/accelerators/presethandler.hxx @@ -371,7 +371,7 @@ class PresetHandler @param sPath the configuration path, which should be opened. Its further used as out parameter too, so we can return the localized - path to the calli! + path! @param eMode the open mode (READ/READWRITE) diff --git a/framework/source/services/autorecovery.cxx b/framework/source/services/autorecovery.cxx index 8141af180cc9..ed66677e1b22 100644 --- a/framework/source/services/autorecovery.cxx +++ b/framework/source/services/autorecovery.cxx @@ -1081,11 +1081,11 @@ class CacheLockGuard { private: - // holds the outside calli alive, so it's shared resources + // holds the outside caller alive, so it's shared resources // are valid every time css::uno::Reference< css::uno::XInterface > m_xOwner; - // mutex shared with outside calli ! + // mutex shared with outside caller! osl::Mutex& m_rSharedMutex; // this variable knows the state of the "cache lock" @@ -2852,7 +2852,7 @@ AutoRecovery::ETimerType AutoRecovery::implts_saveDocs( bool bAllow if (xActiveController.is()) xActiveModel = xActiveController->getModel(); - // Set the default timer action for our calli. + // Set the default timer action for our call. // Default = NORMAL_AUTOSAVE // We return a suggestion for an active timer only. // It will be ignored if the timer was disabled by the user ... |