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 /registry/inc | |
parent | 4a0af6a0581fc7ac2b6544e996529405276d06bf (diff) |
Fix for fdo43460 Part XLIV getLength() to isEmpty()
Part XLIV
many modules(inc's)
Diffstat (limited to 'registry/inc')
-rw-r--r-- | registry/inc/registry/registry.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/inc/registry/registry.hxx b/registry/inc/registry/registry.hxx index 8845fbdc077b..d3e8b9e9e3f0 100644 --- a/registry/inc/registry/registry.hxx +++ b/registry/inc/registry/registry.hxx @@ -1233,7 +1233,7 @@ inline RegError Registry::close() inline RegError Registry::destroy(const ::rtl::OUString& registryName) { RegError ret = m_pApi->destroyRegistry(m_hImpl, registryName.pData); - if ( !ret && (registryName.getLength() == 0) ) + if ( !ret && registryName.isEmpty() ) m_hImpl = NULL; return ret; } |