summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-03 10:52:09 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-03 10:52:09 +0200
commitc82672717b5f355bc406f0b5d78b5d6c5b9dd621 (patch)
tree558c2a14b398e8c69bbcf9b7cd518cbc2438c328 /desktop
parent7289f291fe6a43487c7edeb2b14169cc3a0d6694 (diff)
typo in prev. commit
Change-Id: Ib23aeca54ddb61bb2ac49677d6ccaab6529cbae7
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/migration/migration.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/migration/migration.cxx b/desktop/source/migration/migration.cxx
index 2b0a794e5bee..53a5e312a9de 100644
--- a/desktop/source/migration/migration.cxx
+++ b/desktop/source/migration/migration.cxx
@@ -534,7 +534,7 @@ OUString MigrationImpl::preXDGConfigDir(const OUString& rConfigDir)
// our user profiles, however *all* previous libreoffice and openoffice.org
// configurations will be in the 'old' config directory and that's where we need
// to search - we convert the returned config dir to the 'old' dir
- if ( !pXDGCfgHome && rConfigDir.endsWit( XDG_CONFIG_PART ) )
+ if ( !pXDGCfgHome && rConfigDir.endsWith( XDG_CONFIG_PART ) )
// remove trailing '.config/' but leave the terminating '/'
aPreXDGConfigPath = rConfigDir.copy( 0, rConfigDir.getLength() - sizeof( XDG_CONFIG_PART ) + 2 );
else