diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-08-27 14:38:16 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-08-28 16:19:10 +0200 |
commit | b57ed76361da672697eccd219b09bd358a967e0d (patch) | |
tree | f67c57dd03344f3c493056192deadf292bf622eb /desktop/source | |
parent | 6a71408b00b99b3dc841b0a0812b5388f3e0ebed (diff) |
Fix typo in code
To complete commit:
e9fa088735bfbd34bc81f1925438691f746db070
It passed "make check" on Linux
Change-Id: I2772b1ac5d4024bb11f3e09e24afc566b7091fb8
Reviewed-on: https://gerrit.libreoffice.org/59693
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/app/app.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx index 71b83d64f3c3..de11310bc7ca 100644 --- a/desktop/source/app/app.cxx +++ b/desktop/source/app/app.cxx @@ -878,9 +878,9 @@ void Desktop::HandleBootstrapErrors( OUString aDiagnosticMessage; if ( aBootstrapError == BE_USERINSTALL_NOTENOUGHDISKSPACE ) - aDiagnosticMessage = DpResId(STR_BOOSTRAP_ERR_NOTENOUGHDISKSPACE); + aDiagnosticMessage = DpResId(STR_BOOTSTRAP_ERR_NOTENOUGHDISKSPACE); else - aDiagnosticMessage = DpResId(STR_BOOSTRAP_ERR_NOACCESSRIGHTS); + aDiagnosticMessage = DpResId(STR_BOOTSTRAP_ERR_NOACCESSRIGHTS); aDiagnosticMessage += aUserInstallationPath; FatalError(MakeStartupErrorMessage(aDiagnosticMessage)); |