diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-23 16:07:18 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-23 19:17:18 -0200 |
commit | 558112542348bcbd754853847c968e2203abf269 (patch) | |
tree | 26e31cff04d6c8612921b2c469702d59efb90057 /io/source/stm/odata.cxx | |
parent | 4a0af6a0581fc7ac2b6544e996529405276d06bf (diff) |
Fix for fdo43460 Part XLIV getLength() to isEmpty()
Part XLIV
many modules(inc's)
Diffstat (limited to 'io/source/stm/odata.cxx')
-rw-r--r-- | io/source/stm/odata.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx index bb305b8ac692..5583e24b8fe4 100644 --- a/io/source/stm/odata.cxx +++ b/io/source/stm/odata.cxx @@ -1366,7 +1366,7 @@ Reference< XPersistObject > OObjectInputStream::readObject() throw (::com::sun: sal_Bool bLoadSuccesfull = sal_True; if( nId ) { - if( aName.getLength() ) + if( !aName.isEmpty() ) { // load the object Reference< XInterface > x = m_rSMgr->createInstanceWithContext( aName, m_rCxt ); |