summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-01-09 22:55:28 +0100
committerAshod Nakashian <ashnakash@gmail.com>2016-01-10 14:17:20 +0000
commit64d624b65124ac02d8ee59b135593fd9d8eb9067 (patch)
tree772fc0f308549b9416fbcb06bce2bf0e0f5809cc /desktop
parentd61c16966b017abdbebf5ec0c2131de5a91c67f8 (diff)
Fix typos
Change-Id: I9a5940027423ff0791fa7da0b79b617412ce6b86 Reviewed-on: https://gerrit.libreoffice.org/21209 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/app.cxx8
-rw-r--r--desktop/source/app/cmdlinehelp.cxx2
-rw-r--r--desktop/source/deployment/misc/dp_ucb.cxx2
-rw-r--r--desktop/source/migration/migration.cxx2
-rw-r--r--desktop/source/migration/migration_impl.hxx2
5 files changed, 8 insertions, 8 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index 3927840c44a2..da4f41298125 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -591,7 +591,7 @@ void Desktop::Init()
// this crack with two (if not more) levels of our own
// error codes hiding the actual system error code is
// broken, but that is done all over the code, let's leave
- // re-enginering that to another year.
+ // reengineering that to another year.
SetBootstrapError( BE_PATHINFO_MISSING, OUString() );
#endif
}
@@ -1032,7 +1032,7 @@ bool Desktop::isUIOnSessionShutdownAllowed()
@param bSessionDataExists [boolean ... out!]
there exists some session data.
- Because the user may be logged out last time from it's
+ Because the user may be logged out last time from its
unix session...
*/
void impl_checkRecoveryState(bool& bCrashed ,
@@ -2214,7 +2214,7 @@ void Desktop::OpenClients()
// The reason behind: AutoSave/EmergencySave/AutoRecovery share the same data.
// But the require that all documents, which are saved as backup should exists inside
// memory. May be this mechanism will be inconsistent if the configuration exists...
- // but no document inside memory corrspond to this data.
+ // but no document inside memory corresponds to this data.
// Further it's not acceptable to recover such documents without any UI. It can
// need some time, where the user wont see any results and wait for finishing the office startup...
bool bAllowRecoveryAndSessionManagement = ( !rArgs.IsNoRestore() ) && ( !rArgs.IsHeadless() );
@@ -2788,7 +2788,7 @@ void Desktop::CheckFirstRun( )
m_firstRunTimer.Start();
#ifdef WNT
- // Check if Quckstarter should be started (on Windows only)
+ // Check if Quickstarter should be started (on Windows only)
TCHAR szValue[8192];
DWORD nValueSize = sizeof(szValue);
HKEY hKey;
diff --git a/desktop/source/app/cmdlinehelp.cxx b/desktop/source/app/cmdlinehelp.cxx
index 7f00b9ac4313..8cbcf58b741f 100644
--- a/desktop/source/app/cmdlinehelp.cxx
+++ b/desktop/source/app/cmdlinehelp.cxx
@@ -34,7 +34,7 @@
namespace desktop
{
- // to be able to display the help nicely in a dialog box with propotional font,
+ // to be able to display the help nicely in a dialog box with proportional font,
// we need to split it in chunks...
// ___HEAD___
// LEFT RIGHT
diff --git a/desktop/source/deployment/misc/dp_ucb.cxx b/desktop/source/deployment/misc/dp_ucb.cxx
index ed78ab015988..ba0a9c0f0365 100644
--- a/desktop/source/deployment/misc/dp_ucb.cxx
+++ b/desktop/source/deployment/misc/dp_ucb.cxx
@@ -45,7 +45,7 @@ bool create_ucb_content(
bool throw_exc )
{
try {
- // Existense check...
+ // Existence check...
// content ctor/isFolder() will throw exception in case the resource
// does not exist.
diff --git a/desktop/source/migration/migration.cxx b/desktop/source/migration/migration.cxx
index 7d321d5a4399..5e7f6e1f26d1 100644
--- a/desktop/source/migration/migration.cxx
+++ b/desktop/source/migration/migration.cxx
@@ -337,7 +337,7 @@ bool MigrationImpl::checkMigrationCompleted()
aPropertySet->getPropertyValue("MigrationCompleted") >>= bMigrationCompleted;
if( !bMigrationCompleted && getenv("SAL_DISABLE_USERMIGRATION" ) ) {
- // migration prevented - fake it's success
+ // migration prevented - fake its success
setMigrationCompleted();
bMigrationCompleted = true;
}
diff --git a/desktop/source/migration/migration_impl.hxx b/desktop/source/migration/migration_impl.hxx
index 983d6ac5fe46..329414af18d0 100644
--- a/desktop/source/migration/migration_impl.hxx
+++ b/desktop/source/migration/migration_impl.hxx
@@ -46,7 +46,7 @@ namespace desktop
struct install_info
{
- OUString productname; // human readeable product name
+ OUString productname; // human readable product name
OUString userdata; // file: url for user installation
};