Kaydet (Commit) d3c650f6 authored tarafından Eike Rathke's avatar Eike Rathke

Append error number if no message available

"Err:###" instead of just "Err:" in the status bar for default
unspecific message.

Change-Id: Ic1a07e29e1f5eed4ce1ed9300c1f848c7380002e
üst e1c06cd3
......@@ -454,7 +454,7 @@ OUString ScGlobal::GetLongErrorString(FormulaError nErr)
pErrNumber = STR_LONG_ERR_NV;
break;
default:
pErrNumber = STR_ERROR_STR;
return ScResId(STR_ERROR_STR) + OUString::number( static_cast<int>(nErr) );
break;
}
return ScResId(pErrNumber);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment