summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/propertyvalueset.cxx
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@alta.org.br>2012-01-19 11:51:58 -0200
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-01-19 22:07:58 -0200
commit55b6485978bbfe17c1355909a5e27d8c846a4ee8 (patch)
tree2581d37bd207a65aa062bcff7576a93f99cbafe0 /ucbhelper/source/provider/propertyvalueset.cxx
parent688551303ee5b918841b64ac85f06ab12989b7fc (diff)
Fix for fdo43460 Part XLI getLength() to isEmpty()
Part XLI Modules ucbhelper, unodevtools
Diffstat (limited to 'ucbhelper/source/provider/propertyvalueset.cxx')
-rw-r--r--ucbhelper/source/provider/propertyvalueset.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucbhelper/source/provider/propertyvalueset.cxx b/ucbhelper/source/provider/propertyvalueset.cxx
index 7e89d458a5e7..0ade2fe10a90 100644
--- a/ucbhelper/source/provider/propertyvalueset.cxx
+++ b/ucbhelper/source/provider/propertyvalueset.cxx
@@ -612,7 +612,7 @@ sal_Int32 SAL_CALL PropertyValueSet::findColumn( const OUString& columnName )
{
osl::MutexGuard aGuard( m_aMutex );
- if ( columnName.getLength() )
+ if ( !columnName.isEmpty() )
{
sal_Int32 nCount = m_pValues->size();
for ( sal_Int32 n = 0; n < nCount; ++n )