From 80fb2e397a60550de72b378215c2e305b29257a9 Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Wed, 18 Jan 2012 23:47:02 -0200 Subject: Fix for fdo43460 Part L getLength() to isEmpty() Part L Modules ucb --- ucb/source/ucp/inc/urihelper.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ucb/source/ucp/inc') diff --git a/ucb/source/ucp/inc/urihelper.hxx b/ucb/source/ucp/inc/urihelper.hxx index 5e86ccab97ea..ea317b90a44c 100644 --- a/ucb/source/ucp/inc/urihelper.hxx +++ b/ucb/source/ucp/inc/urihelper.hxx @@ -104,13 +104,13 @@ namespace ucb_impl { namespace urihelper { } while ( nIndex >= 0 ); - if ( aParams.getLength() > 0 ) + if ( !aParams.isEmpty() ) { aResult.append( sal_Unicode( '?' ) ); aResult.append( aParams ); } - if ( aFragment.getLength() > 0 ) + if ( !aFragment.isEmpty() ) { aResult.append( sal_Unicode( '#' ) ); aResult.append( aFragment ); -- cgit