From 9201704ede70498a850bee6d15f0340d58f3889c Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Sat, 10 Dec 2011 17:29:21 -0200 Subject: Fix for fdo43460 Part IV getLength to isEmpty Part IV Module basic (small fix per demand from Ivan Timofeev) binaryurp bridges --- binaryurp/source/writer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'binaryurp/source/writer.cxx') diff --git a/binaryurp/source/writer.cxx b/binaryurp/source/writer.cxx index 5aca57b108eb..843f667cfcbd 100644 --- a/binaryurp/source/writer.cxx +++ b/binaryurp/source/writer.cxx @@ -210,7 +210,7 @@ void Writer::sendRequest( std::vector< BinaryAny > const & inArguments, bool currentContextMode, css::uno::UnoInterfaceReference const & currentContext) { - OSL_ASSERT(tid.getLength() != 0 && oid.getLength() != 0 && member.is()); + OSL_ASSERT(tid.getLength() != 0 && !oid.isEmpty() && member.is()); css::uno::TypeDescription t(type); sal_Int32 functionId = 0; bool forceSynchronous = false; -- cgit