diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-12-24 03:12:29 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-12-24 03:34:46 +0200 |
commit | 69ea6062d280b93d8372f508864aab60dd810917 (patch) | |
tree | 1ce1ad8a50d7fd7be1d1529d769c9be334713aa9 /bridges | |
parent | a639961bb23c05d90a605a618b252160243ef0ed (diff) |
Minor logging change
Change-Id: I2d25c7c196d0386a1c38fa55746370a84c2a2398
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_ios_arm/except.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bridges/source/cpp_uno/gcc3_ios_arm/except.cxx b/bridges/source/cpp_uno/gcc3_ios_arm/except.cxx index 01690d3574fa..71171ff065b4 100644 --- a/bridges/source/cpp_uno/gcc3_ios_arm/except.cxx +++ b/bridges/source/cpp_uno/gcc3_ios_arm/except.cxx @@ -169,7 +169,7 @@ RTTI::RTTI() SAL_THROW(()) // Insert commonly needed type_infos to avoid dlsym() calls // Ideally we should insert all needed ones m_rttis.insert( t_rtti_map::value_type( "com.sun.star.ucb.InteractiveAugmentedIOException", - &typeid( com::sun::star::ucb::InteractiveAugmentedIOException ) ) ); + (std::type_info*) &typeid( com::sun::star::ucb::InteractiveAugmentedIOException ) ) ); #endif } @@ -207,7 +207,7 @@ std::type_info * RTTI::getRTTI( typelib_CompoundTypeDescription *pTypeDescr ) SA if (rtti) { - SAL_INFO( "bridges.ios", "getRTTI: dlsym() found type_info for " << unoName ); + SAL_INFO( "bridges.ios", "getRTTI: dlsym() found type_info for " << unoName << ": " << symName ); std::pair< t_rtti_map::iterator, bool > insertion( m_rttis.insert( t_rtti_map::value_type( unoName, rtti ) ) ); SAL_WARN_IF( !insertion.second, @@ -216,6 +216,8 @@ std::type_info * RTTI::getRTTI( typelib_CompoundTypeDescription *pTypeDescr ) SA } else { + SAL_INFO( "bridges.ios", "getRTTI: dlsym() could NOT find type_info for " << unoName << ": " << symName ); + // try to lookup the symbol in the generated rtti map t_rtti_map::const_iterator iFind2( m_generatedRttis.find( unoName ) ); if (iFind2 == m_generatedRttis.end()) |