summaryrefslogtreecommitdiff
path: root/ucb/source/cacher/contentresultsetwrapper.cxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2012-01-18 23:47:02 -0200
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-01-18 23:48:47 -0200
commit80fb2e397a60550de72b378215c2e305b29257a9 (patch)
treebefc5cc4cd89e129597247dd0e3d80a7fb8cc35f /ucb/source/cacher/contentresultsetwrapper.cxx
parent3e04e08d371532960917afbcd59307fbd6c1f313 (diff)
Fix for fdo43460 Part L getLength() to isEmpty()
Part L Modules ucb
Diffstat (limited to 'ucb/source/cacher/contentresultsetwrapper.cxx')
-rw-r--r--ucb/source/cacher/contentresultsetwrapper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/cacher/contentresultsetwrapper.cxx b/ucb/source/cacher/contentresultsetwrapper.cxx
index c720ef3ab068..d6cbbfc02377 100644
--- a/ucb/source/cacher/contentresultsetwrapper.cxx
+++ b/ucb/source/cacher/contentresultsetwrapper.cxx
@@ -585,7 +585,7 @@ void SAL_CALL ContentResultSetWrapper
throw UnknownPropertyException();
}
- if( aPropertyName.getLength() )
+ if( !aPropertyName.isEmpty() )
{
m_xPropertySetInfo->getPropertyByName( aPropertyName );
//throws UnknownPropertyException, if so
@@ -636,7 +636,7 @@ void SAL_CALL ContentResultSetWrapper
OSL_FAIL( "broadcaster was disposed already" );
throw UnknownPropertyException();
}
- if( rPropertyName.getLength() )
+ if( !rPropertyName.isEmpty() )
{
m_xPropertySetInfo->getPropertyByName( rPropertyName );
//throws UnknownPropertyException, if so
@@ -693,7 +693,7 @@ void SAL_CALL ContentResultSetWrapper
if( !pContainer )
{
- if( rPropertyName.getLength() )
+ if( !rPropertyName.isEmpty() )
{
if( !getPropertySetInfo().is() )
throw UnknownPropertyException();
@@ -752,7 +752,7 @@ void SAL_CALL ContentResultSetWrapper
if( !pContainer )
{
- if( rPropertyName.getLength() )
+ if( !rPropertyName.isEmpty() )
{
if( !getPropertySetInfo().is() )
throw UnknownPropertyException();