diff options
author | sb <sb@openoffice.org> | 2009-08-27 17:46:31 +0200 |
---|---|---|
committer | sb <sb@openoffice.org> | 2009-08-27 17:46:31 +0200 |
commit | 6a2f52be17acb7bb899aff8e6f364c2e722f7328 (patch) | |
tree | 34d08b0ec85e4fcf0c39318f0656a4d489ea3727 /desktop | |
parent | 7d33eec9f7fd70d0a52b9e30668f54e578e2684c (diff) |
#i101955# create the whole user path directory hierarchy (this error was hidden by the old configmgr implementation which always had created the user path directory hierarchy on its own already when this code was reached)
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/userinstall.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/userinstall.cxx b/desktop/source/app/userinstall.cxx index 920da5613382..2fd4c180a361 100644 --- a/desktop/source/app/userinstall.cxx +++ b/desktop/source/app/userinstall.cxx @@ -246,7 +246,7 @@ namespace desktop { return UserInstall::E_InvalidBaseinstall; // create the user directory - FileBase::RC rc = Directory::create(aUserPath); + FileBase::RC rc = Directory::createPath(aUserPath); if ((rc != FileBase::E_None) && (rc != FileBase::E_EXIST)) return UserInstall::E_Creation; // copy data from shared data directory of base installation |