summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-31 17:43:43 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-03-31 17:45:27 +0200
commit96f5b780f083ff97af5f570836267565d963e742 (patch)
tree036a18cfa6fa3bd63bec797088c76ef3db5c7758 /cppu
parentb89681bef2e492bccb9502079e042ff495b40c39 (diff)
Use OUString::unacquired
found with git grep -E '\* *\<reinterpret_cast\>[^>]+\<OUString\>' Change-Id: I9306d4ad8e3b1664f54cb7df86f2d79bfd3c6cb9
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/typelib/typelib.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index f0a31d29f94c..4ae195745b41 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -1957,7 +1957,7 @@ extern "C" void SAL_CALL typelib_typedescription_getByName(
if (0 == *ppRet)
{
// check for sequence
- OUString const & name = *reinterpret_cast< OUString const * >( &pName );
+ OUString const & name = OUString::unacquired( &pName );
if (2 < name.getLength() && '[' == name[ 0 ])
{
OUString element_name( name.copy( 2 ) );