summaryrefslogtreecommitdiff
path: root/desktop/source
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source')
-rw-r--r--desktop/source/app/app.cxx4
-rw-r--r--desktop/source/migration/migration.cxx6
2 files changed, 5 insertions, 5 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index e9437fe5fbd8..de0e7b544131 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -2607,11 +2607,11 @@ String GetURL_Impl(
return rName;
}
- // Add path seperator to these directory and make given URL (rName) absolute by using of current working directory
+ // Add path separator to these directory and make given URL (rName) absolute by using of current working directory
// Attention: "setFinalSlash()" is necessary for calling "smartRel2Abs()"!!!
// Otherwhise last part will be ignored and wrong result will be returned!!!
// "smartRel2Abs()" interpret given URL as file not as path. So he truncate last element to get the base path ...
- // But if we add a seperator - he doesn't do it anymore.
+ // But if we add a separator - he doesn't do it anymore.
INetURLObject aObj;
if (cwdUrl) {
aObj.SetURL(*cwdUrl);
diff --git a/desktop/source/migration/migration.cxx b/desktop/source/migration/migration.cxx
index f8460aae8362..2b361135da8d 100644
--- a/desktop/source/migration/migration.cxx
+++ b/desktop/source/migration/migration.cxx
@@ -1073,7 +1073,7 @@ void MigrationImpl::compareOldAndNewConfig(const OUString& sParent,
const uno::Reference< container::XIndexContainer >& xIndexNew,
const OUString& sResourceURL)
{
- const OUString MENU_SEPERATOR(" | ");
+ const OUString MENU_SEPARATOR(" | ");
::std::vector< MigrationItem > vOldItems;
::std::vector< MigrationItem > vNewItems;
@@ -1127,7 +1127,7 @@ void MigrationImpl::compareOldAndNewConfig(const OUString& sParent,
{
OUString sName;
if (!sParent.isEmpty())
- sName = sParent + MENU_SEPERATOR + it->m_sCommandURL;
+ sName = sParent + MENU_SEPARATOR + it->m_sCommandURL;
else
sName = it->m_sCommandURL;
compareOldAndNewConfig(sName, it->m_xPopupMenu, pFound->m_xPopupMenu, sResourceURL);
@@ -1159,7 +1159,7 @@ void MigrationImpl::compareOldAndNewConfig(const OUString& sParent,
{
OUString sName;
if (!sParent.isEmpty())
- sName = sParent + MENU_SEPERATOR + it->m_sCommandURL;
+ sName = sParent + MENU_SEPARATOR + it->m_sCommandURL;
else
sName = it->m_sCommandURL;
compareOldAndNewConfig(sName, pFound->m_xPopupMenu, it->m_xPopupMenu, sResourceURL);