Kaydet (Commit) caa080ea authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Adapt to true wchar_t in clang-cl

Change-Id: I215b8215108a268f969106db6f01f876bd0dc0a0
üst c091a9f0
...@@ -239,7 +239,11 @@ bool SbxDecimal::setString( OUString* pOUString ) ...@@ -239,7 +239,11 @@ bool SbxDecimal::setString( OUString* pOUString )
bool SbxDecimal::getChar( sal_Unicode& rVal ) bool SbxDecimal::getChar( sal_Unicode& rVal )
{ {
bool bRet = ( VarUI2FromDec( &maDec, &rVal ) == S_OK ); USHORT n;
bool bRet = ( VarUI2FromDec( &maDec, &n ) == S_OK );
if (bRet) {
rVal = n;
}
return bRet; return bRet;
} }
......
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