Kaydet (Commit) b540dc49 authored tarafından Caolán McNamara's avatar Caolán McNamara

conversion operator gone

üst 25357648
...@@ -187,7 +187,7 @@ namespace comphelper { ...@@ -187,7 +187,7 @@ namespace comphelper {
sMessage += "\nin function:\n"; sMessage += "\nin function:\n";
sMessage += BOOST_CURRENT_FUNCTION; sMessage += BOOST_CURRENT_FUNCTION;
sMessage += "\n"; sMessage += "\n";
OSL_FAIL( sMessage ); OSL_FAIL( sMessage.getStr() );
} }
return sTitle; return sTitle;
......
...@@ -211,7 +211,7 @@ namespace comphelper ...@@ -211,7 +211,7 @@ namespace comphelper
::rtl::OStringBuffer message; ::rtl::OStringBuffer message;
message.append( "NamedValueCollection::impl_assign: encountered a value type which I cannot handle:\n" ); message.append( "NamedValueCollection::impl_assign: encountered a value type which I cannot handle:\n" );
message.append( ::rtl::OUStringToOString( pArgument->getValueTypeName(), RTL_TEXTENCODING_ASCII_US ) ); message.append( ::rtl::OUStringToOString( pArgument->getValueTypeName(), RTL_TEXTENCODING_ASCII_US ) );
OSL_FAIL( message.makeStringAndClear() ); OSL_FAIL( message.getStr() );
} }
#endif #endif
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment