summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-02 18:21:49 +0200
committerSamuel Mehrbrodt <s.mehrbrodt@gmail.com>2015-07-03 09:02:48 +0000
commit87dc6c82d5cd174ae2384b66a203a93402b43291 (patch)
tree27d9e9444993c4c858b8b64818c073d389594408 /desktop
parent6e7991dfd8c54a833f4a9795a0d57f4690e92e6b (diff)
Fix typos
Change-Id: Ideb5688a8c9e7cf10038f2e9d00991e8653b1875 Reviewed-on: https://gerrit.libreoffice.org/16706 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/app.cxx2
-rw-r--r--desktop/source/deployment/gui/dp_gui_updatedata.hxx2
-rw-r--r--desktop/source/deployment/manager/dp_extensionmanager.hxx2
-rw-r--r--desktop/source/deployment/manager/dp_manager.cxx2
-rw-r--r--desktop/source/deployment/misc/dp_descriptioninfoset.cxx2
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx2
-rw-r--r--desktop/source/deployment/registry/help/dp_help.cxx2
7 files changed, 7 insertions, 7 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index bba9292b9854..882399de4b16 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1402,7 +1402,7 @@ int Desktop::Main()
xDesktop = css::frame::Desktop::create( xContext );
- // create service for loadin SFX (still needed in startup)
+ // create service for loading SFX (still needed in startup)
pExecGlobals->xGlobalBroadcaster = Reference < css::document::XDocumentEventListener >
( css::frame::theGlobalEventBroadcaster::get(xContext), UNO_SET_THROW );
diff --git a/desktop/source/deployment/gui/dp_gui_updatedata.hxx b/desktop/source/deployment/gui/dp_gui_updatedata.hxx
index ac12cc0eebc1..ce6885da7349 100644
--- a/desktop/source/deployment/gui/dp_gui_updatedata.hxx
+++ b/desktop/source/deployment/gui/dp_gui_updatedata.hxx
@@ -62,7 +62,7 @@ struct UpdateData
//The URL of the locally downloaded extension. It will only be set if there were no errors
//during the download
OUString sLocalURL;
- //The URL of the website wher the download can be obtained.
+ //The URL of the website where the download can be obtained.
OUString sWebsiteURL;
//For local update
diff --git a/desktop/source/deployment/manager/dp_extensionmanager.hxx b/desktop/source/deployment/manager/dp_extensionmanager.hxx
index 1c2cea9147bb..4b78c0fa411d 100644
--- a/desktop/source/deployment/manager/dp_extensionmanager.hxx
+++ b/desktop/source/deployment/manager/dp_extensionmanager.hxx
@@ -219,7 +219,7 @@ private:
//only to be used within addExtension
::osl::Mutex m_addMutex;
/* contains the names of all repositories (except tmp) in order of there
- priority. That is, the first element is "user" follod by "shared" and
+ priority. That is, the first element is "user" followed by "shared" and
then "bundled"
*/
::std::list< OUString > m_repositoryNames;
diff --git a/desktop/source/deployment/manager/dp_manager.cxx b/desktop/source/deployment/manager/dp_manager.cxx
index c7a44295d34b..3392b545faff 100644
--- a/desktop/source/deployment/manager/dp_manager.cxx
+++ b/desktop/source/deployment/manager/dp_manager.cxx
@@ -1379,7 +1379,7 @@ bool PackageManagerImpl::synchronizeAddedExtensions(
<< "> has no explicit version");
//We provide a special command environment that will prevent
- //showing a license if simple-licens/@accept-by = "admin"
+ //showing a license if simple-license/@accept-by = "admin"
//It will also prevent showing the license for bundled extensions
//which is not supported.
OSL_ASSERT(!(m_context == "user"));
diff --git a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
index dab93e30f576..9ff840521a3e 100644
--- a/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
+++ b/desktop/source/deployment/misc/dp_descriptioninfoset.cxx
@@ -111,7 +111,7 @@ class ExtensionDescription
public:
/**throws an exception if the description.xml is not
available, cannot be read, does not contain the expected data,
- or any other error occurred. Therefore it shoult only be used with
+ or any other error occurred. Therefore it should only be used with
new extensions.
Throws com::sun::star::uno::RuntimeException,
diff --git a/desktop/source/deployment/registry/component/dp_component.cxx b/desktop/source/deployment/registry/component/dp_component.cxx
index 670994bae1e8..e17961f0bb9b 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -819,7 +819,7 @@ void BackendImpl::unorc_verify_init(
// ("?" ("BUNDLED_EXTENSIONS" | -- third
// "UNO_SHARED_PACKAGES_CACHE" | "UNO_USER_PACKAGES_CACHE")
// ...)*
- // so can unambiguously be split into its thre parts:
+ // so can unambiguously be split into its three parts:
int state = 1;
for (sal_Int32 i = RTL_CONSTASCII_LENGTH("UNO_SERVICES=");
i >= 0;)
diff --git a/desktop/source/deployment/registry/help/dp_help.cxx b/desktop/source/deployment/registry/help/dp_help.cxx
index d1c9094c82d7..67ca90f68a46 100644
--- a/desktop/source/deployment/registry/help/dp_help.cxx
+++ b/desktop/source/deployment/registry/help/dp_help.cxx
@@ -518,7 +518,7 @@ void BackendImpl::implProcessHelp(
{
aErrStr = getResourceString( nErrStrId );
- // Remoce CR/LF
+ // Remove CR/LF
OUString aErrMsg( aErrorInfo.m_aErrorMsg );
sal_Unicode nCR = 13, nLF = 10;
sal_Int32 nSearchCR = aErrMsg.indexOf( nCR );