conversion operator gone

This commit is contained in:
Caolán McNamara
2011-10-05 09:01:40 +01:00
parent 253576484f
commit b540dc49a6
2 changed files with 2 additions and 2 deletions

View File

@@ -187,7 +187,7 @@ namespace comphelper {
sMessage += "\nin function:\n";
sMessage += BOOST_CURRENT_FUNCTION;
sMessage += "\n";
OSL_FAIL( sMessage );
OSL_FAIL( sMessage.getStr() );
}
return sTitle;

View File

@@ -211,7 +211,7 @@ namespace comphelper
::rtl::OStringBuffer message;
message.append( "NamedValueCollection::impl_assign: encountered a value type which I cannot handle:\n" );
message.append( ::rtl::OUStringToOString( pArgument->getValueTypeName(), RTL_TEXTENCODING_ASCII_US ) );
OSL_FAIL( message.makeStringAndClear() );
OSL_FAIL( message.getStr() );
}
#endif
}