diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-10 13:15:13 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-10 14:03:39 +0200 |
commit | afba998a9a4a9759768c09722c31ca2b78204a82 (patch) | |
tree | 0ceda02e0b5ef194de3a035cc790828c410f6e85 /dtrans | |
parent | e862e147391d09681b0419f1d41335eb6c97cf99 (diff) |
mingw64: sal_Int32 cannot hold pointer
Change-Id: Ib2578cd94c74f171b58f3478d758221593ee5523
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/misc/ImplHelper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/win32/misc/ImplHelper.cxx b/dtrans/source/win32/misc/ImplHelper.cxx index ccc81d88b73c..982d33f067b5 100644 --- a/dtrans/source/win32/misc/ImplHelper.cxx +++ b/dtrans/source/win32/misc/ImplHelper.cxx @@ -63,7 +63,7 @@ sal_uInt32 SAL_CALL getWinCPFromMimeCharset( const OUString& charset ) rtl_TextEncoding txtEnc = rtl_getTextEncodingFromMimeCharset( osCharset.getStr( ) ); - sal_uInt32 winChrs = rtl_getBestWindowsCharsetFromTextEncoding( txtEnc ); + sal_uIntPtr winChrs = rtl_getBestWindowsCharsetFromTextEncoding( txtEnc ); CHARSETINFO chrsInf; sal_Bool bRet = TranslateCharsetInfo( (DWORD*)winChrs, &chrsInf, TCI_SRCCHARSET ) ? |