diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-09-26 20:38:31 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-09-26 20:39:07 +0200 |
commit | cbee6e53e6345080dc52c75c98cfe0eb1c60e52e (patch) | |
tree | 36ecda5f788ddfad106f0917c10faba3979e6ffd /vcl/source | |
parent | 0f64ec11a3c80308075b8786fb0a2757a2d7efe8 (diff) |
vcl: restore that cast for MSVC
Change-Id: I8a8b4b16811660290c881f82b3cf9b910d054215
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/cvtsvm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/cvtsvm.cxx b/vcl/source/gdi/cvtsvm.cxx index 2b1ae14a0dc5..24fed3716190 100644 --- a/vcl/source/gdi/cvtsvm.cxx +++ b/vcl/source/gdi/cvtsvm.cxx @@ -2435,7 +2435,7 @@ sal_uLong SVMConverter::ImplWriteActions( SvStream& rOStm, GDIMetaFile& rMtf, default: { OStringBuffer aStr("Missing implementation for Action#: "); - aStr.append(pAction->GetType()); + aStr.append(static_cast<sal_Int32>(pAction->GetType())); aStr.append('!'); OSL_FAIL(aStr.getStr()); } |