diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-10 10:14:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-10 10:14:11 +0200 |
commit | de82b32c4a9b5b2ac0dd9dee712da061bc34c2c3 (patch) | |
tree | 3b426a413704bd47f71cbb1b1de0e894b767b7b7 | |
parent | c14ed11d77fcace619b9f63707c6c4dfc3309c6c (diff) |
Clean up uses of SAL_U/SAL_W: cli_ure
Change-Id: I198be4023710206d66135c33fe01e1d9bb859272
-rw-r--r-- | cli_ure/source/climaker/climaker_app.cxx | 3 | ||||
-rw-r--r-- | cli_ure/source/climaker/climaker_share.h | 5 | ||||
-rw-r--r-- | cli_ure/source/native/native_share.h | 5 | ||||
-rw-r--r-- | cli_ure/source/uno_bridge/cli_data.cxx | 17 |
4 files changed, 19 insertions, 11 deletions
diff --git a/cli_ure/source/climaker/climaker_app.cxx b/cli_ure/source/climaker/climaker_app.cxx index 550b99a9d696..eb0cfefbba11 100644 --- a/cli_ure/source/climaker/climaker_app.cxx +++ b/cli_ure/source/climaker/climaker_app.cxx @@ -471,7 +471,8 @@ SAL_IMPLEMENT_MAIN() // setup assembly info: xxx todo set more? e.g. avoid strong versioning AssemblyName ^ assembly_name = gcnew AssemblyName(); assembly_name->CodeBase = output_dir; - assembly_name->Name = gcnew ::System::String(SAL_W(name.getStr())); + assembly_name->Name = gcnew ::System::String( + reinterpret_cast<wchar_t const *>(name.getStr())); if (kp != nullptr) assembly_name->KeyPair= kp; diff --git a/cli_ure/source/climaker/climaker_share.h b/cli_ure/source/climaker/climaker_share.h index ee36c6831d19..ed7ab256a3ad 100644 --- a/cli_ure/source/climaker/climaker_share.h +++ b/cli_ure/source/climaker/climaker_share.h @@ -82,7 +82,8 @@ ref struct Constants inline ::System::String ^ ustring_to_String( OUString const & ustr ) { - return gcnew ::System::String( SAL_W(ustr.getStr()), 0, ustr.getLength() ); + return gcnew ::System::String( + reinterpret_cast<wchar_t const *>(ustr.getStr()), 0, ustr.getLength()); } @@ -90,7 +91,7 @@ inline OUString String_to_ustring( ::System::String ^ str ) { OSL_ASSERT( sizeof (wchar_t) == sizeof (sal_Unicode) ); pin_ptr<const wchar_t> chars = PtrToStringChars( str ); - return OUString( SAL_U(chars), str->Length ); + return OUString(reinterpret_cast<sal_Unicode const *>(chars), str->Length); } /* If the argument type is a typedef for an interface then the interface diff --git a/cli_ure/source/native/native_share.h b/cli_ure/source/native/native_share.h index 5ef576862196..f733d2558c04 100644 --- a/cli_ure/source/native/native_share.h +++ b/cli_ure/source/native/native_share.h @@ -35,14 +35,15 @@ namespace util inline ::System::String ^ ustring_to_String( OUString const & ustr ) { - return gcnew ::System::String( SAL_W(ustr.getStr()), 0, ustr.getLength() ); + return gcnew ::System::String( + reinterpret_cast<wchar_t const *>(ustr.getStr()), 0, ustr.getLength()); } inline OUString String_to_ustring( ::System::String ^ str ) { OSL_ASSERT( sizeof (wchar_t) == sizeof (sal_Unicode) ); pin_ptr<wchar_t const> chars = PtrToStringChars( str ); - return OUString( SAL_U(chars), str->Length ); + return OUString(reinterpret_cast<sal_Unicode const *>(chars), str->Length); } template< typename T > diff --git a/cli_ure/source/uno_bridge/cli_data.cxx b/cli_ure/source/uno_bridge/cli_data.cxx index 24b3753ef61d..c7c027691a08 100644 --- a/cli_ure/source/uno_bridge/cli_data.cxx +++ b/cli_ure/source/uno_bridge/cli_data.cxx @@ -716,9 +716,11 @@ OUString mapCliString(System::String ^ data) if (data != nullptr) { - OSL_ASSERT(sizeof(wchar_t) == sizeof(sal_Unicode)); + static_assert(sizeof(wchar_t) == sizeof(sal_Unicode), "char mismatch"); pin_ptr<wchar_t const> pdata= PtrToStringChars(data); - return OUString(SAL_U(pdata), const_cast<System::String^>(data)->Length); + return OUString( + reinterpret_cast<sal_Unicode const *>(pdata), + const_cast<System::String^>(data)->Length); } else { @@ -818,8 +820,9 @@ void Bridge::map_to_uno(void * uno_data, System::Object^ cli_data, { System::String ^s= safe_cast<System::String^>(cli_data); pin_ptr<const wchar_t> pdata= PtrToStringChars(s); - rtl_uString_newFromStr_WithLength( (rtl_uString**) uno_data, - SAL_U(pdata), s->Length ); + rtl_uString_newFromStr_WithLength( + reinterpret_cast<rtl_uString **>(uno_data), + reinterpret_cast<sal_Unicode const *>(pdata), s->Length); } break; } @@ -1294,8 +1297,10 @@ void Bridge::map_to_uno(void * uno_data, System::Object^ cli_data, rtl_uString** pStr= & ((rtl_uString**) & ((uno_Sequence*) seq.get())->elements)[i]; *pStr= NULL; - rtl_uString_newFromStr_WithLength( pStr, SAL_U(pdata), - arStr[i]->Length); + rtl_uString_newFromStr_WithLength( + pStr, + reinterpret_cast<sal_Unicode const *>(pdata), + arStr[i]->Length); } break; } |