From b57ed76361da672697eccd219b09bd358a967e0d Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Mon, 27 Aug 2018 14:38:16 +0200 Subject: 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 Tested-by: Jenkins --- desktop/source/app/app.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/source') 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)); -- cgit