summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vcl/source/window/errinf.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/errinf.cxx b/vcl/source/window/errinf.cxx
index af9a68010de8..55f2cfe58f26 100644
--- a/vcl/source/window/errinf.cxx
+++ b/vcl/source/window/errinf.cxx
@@ -285,7 +285,7 @@ ErrorHandlerFlags ErrorHandler::HandleError_Impl(
{
OStringBuffer aStr("Action: ");
aStr.append(OUStringToOString(aAction, RTL_TEXTENCODING_ASCII_US));
- aStr.append("\nFehler: ");
+ aStr.append("\nError: ");
aStr.append(OUStringToOString(aErr, RTL_TEXTENCODING_ASCII_US));
OSL_FAIL(aStr.getStr());
}
@@ -308,7 +308,7 @@ ErrorHandlerFlags ErrorHandler::HandleError_Impl(
}
}
OSL_FAIL("Error not handled");
- // Error 1 is General Error in the Sfx
+ // Error 1 is classified as a General Error in sfx
if(pInfo->GetErrorCode()!=1)
{
HandleError_Impl(1, ErrorHandlerFlags::MAX, bJustCreateString, rError);