summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2003-09-04 09:49:54 +0000
committerOliver Bolte <obo@openoffice.org>2003-09-04 09:49:54 +0000
commitd18cf9c145510f7cc919280a11a44166649bfaaf (patch)
tree092e43427cddee99a9b2bb914690b9693fb64aed /bridges
parentbf5f73dfe7ba020bf042f7c2256068df7a5efac6 (diff)
INTEGRATION: CWS cliuno01 (1.11.10); FILE MERGED
2003/06/05 12:23:58 dbo 1.11.10.1: #i14581# avoiding reinterpret_cast<>
Diffstat (limited to 'bridges')
-rw-r--r--bridges/source/jni_uno/jni_bridge.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/bridges/source/jni_uno/jni_bridge.cxx b/bridges/source/jni_uno/jni_bridge.cxx
index fa9b8fab9976..4a44ab9715ab 100644
--- a/bridges/source/jni_uno/jni_bridge.cxx
+++ b/bridges/source/jni_uno/jni_bridge.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: jni_bridge.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2003-04-23 16:33:00 $
+ * last change: $Author: obo $ $Date: 2003-09-04 10:49:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -494,9 +494,9 @@ void SAL_CALL uno_ext_getMapping(
(sizeof (jlong) == sizeof (sal_Int64)))
{
OUString const & from_env_typename =
- *reinterpret_cast< OUString const * >( &pFrom->pTypeName );
+ OUString::unacquired( &pFrom->pTypeName );
OUString const & to_env_typename =
- *reinterpret_cast< OUString const * >( &pTo->pTypeName );
+ OUString::unacquired( &pTo->pTypeName );
uno_Mapping * mapping = 0;