diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-12-17 20:19:47 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-12-17 20:19:47 +0000 |
commit | 439d600138515d10b40a00653f8ac51e5ccfc1e5 (patch) | |
tree | eb5be31f81462432141ae9d265a2282f60c3381c /unotools | |
parent | e3420747c2883b56375d9f4e9a1ab675450744a0 (diff) |
32bit compile fix for OString::valueOf usage.
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/misc/fontcvt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/misc/fontcvt.cxx b/unotools/source/misc/fontcvt.cxx index 3d5d30d66d15..96212c0a4f41 100644 --- a/unotools/source/misc/fontcvt.cxx +++ b/unotools/source/misc/fontcvt.cxx @@ -1285,8 +1285,8 @@ sal_Unicode ConvertChar::RecodeChar( sal_Unicode cChar ) const { cRetVal = 0xE12C; SAL_WARN( "unotools", "Forcing a bullet substition from 0x" << - OString::valueOf(cChar, 16) << " to 0x" << - OString::valueOf(cRetVal, 16)); + OString::valueOf((sal_Int32)cChar, 16) << " to 0x" << + OString::valueOf((sal_Int32)cRetVal, 16)); } } } |