diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-21 09:43:23 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-21 09:43:23 +0200 |
commit | 5f2b7007fd501025afa4a3ec62c4435bc8eaa18f (patch) | |
tree | 3c856a249c929c367c7b37a138036a829156c1a1 /editeng | |
parent | 002697221215e009cdf20fd5c12b50350b8a2128 (diff) |
improve error message
Change-Id: Id1408cb1d8f04b36ffab65b684a94b14db9d9c50
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/uno/unoipset.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/uno/unoipset.cxx b/editeng/source/uno/unoipset.cxx index 3fd6de0310ab..f325079d6eba 100644 --- a/editeng/source/uno/unoipset.cxx +++ b/editeng/source/uno/unoipset.cxx @@ -302,7 +302,7 @@ void SvxUnoConvertToMM( const SfxMapUnit eSourceMapUnit, uno::Any & rMetric ) th rMetric <<= (sal_uInt32)(TWIPS_TO_MM(*o3tl::forceAccess<sal_uInt32>(rMetric))); break; default: - OSL_FAIL("AW: Missing unit translation to 100th mm!"); + OSL_FAIL(OString("AW: Missing unit translation to 100th mm, " + OString::number(rMetric.getValueTypeClass())).getStr()); } break; } |