diff options
Diffstat (limited to 'ucb/source/cacher/contentresultsetwrapper.cxx')
-rw-r--r-- | ucb/source/cacher/contentresultsetwrapper.cxx | 8 |
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(); |