summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-27 12:52:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-27 12:52:32 +0100
commita39d07e13495cd06df7169b7778c8d07018794c5 (patch)
treedde67f05acf71fcf181f90bce8dbcc1103e6d400 /bridges
parentd8565bd266939b4ae4231f5b2c7d6260bee404e9 (diff)
Unwind occurrences of deprecated sal_sChar, sal_uChar
Change-Id: I76be464200d486efef9c8a7e957c310c9adae3b8
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
index 325d70e31849..cb3134c74fa5 100644
--- a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx
@@ -456,7 +456,7 @@ struct ExceptionType
sal_uInt32 _pCopyCtor; // copyctor
inline ExceptionType(
- sal_uChar * pCode,
+ unsigned char * pCode,
sal_uInt64 pCodeBase,
typelib_TypeDescription * pTD ) throw ()
: _n0( 0 )
@@ -506,7 +506,7 @@ struct RaiseInfo
// Additional fields
typelib_TypeDescription * _pTD;
- sal_uChar * _code;
+ unsigned char * _code;
sal_uInt64 _codeBase;
RaiseInfo( typelib_TypeDescription * pTD ) throw ();
@@ -533,7 +533,7 @@ RaiseInfo::RaiseInfo( typelib_TypeDescription * pTD )throw ()
codeSize += codeSnippetSize;
}
- sal_uChar * pCode = _code = (sal_uChar *)::rtl_allocateMemory( codeSize );
+ unsigned char * pCode = _code = (unsigned char *)::rtl_allocateMemory( codeSize );
_codeBase = (sal_uInt64)pCode & ~(ExceptionInfos::allocationGranularity-1);