summaryrefslogtreecommitdiff
path: root/cli_ure/source/native/native_share.h
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-04-10 10:14:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-04-10 10:14:11 +0200
commitde82b32c4a9b5b2ac0dd9dee712da061bc34c2c3 (patch)
tree3b426a413704bd47f71cbb1b1de0e894b767b7b7 /cli_ure/source/native/native_share.h
parentc14ed11d77fcace619b9f63707c6c4dfc3309c6c (diff)
Clean up uses of SAL_U/SAL_W: cli_ure
Change-Id: I198be4023710206d66135c33fe01e1d9bb859272
Diffstat (limited to 'cli_ure/source/native/native_share.h')
-rw-r--r--cli_ure/source/native/native_share.h5
1 files changed, 3 insertions, 2 deletions
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 >