diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-12 17:01:19 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-12 19:15:08 -0200 |
commit | 71dc235aba9597c3485a791a319a34e4258138db (patch) | |
tree | 7a6e5ab99469ee3fd292c435198cb62c58950394 /stoc/source/loader | |
parent | 14359c82eb91b69212cbf0f743e819776a8f6d3a (diff) |
Fix for fdo43460 Part XXXV getLength() to isEmpty()
Part XXXV
Modules
stoc
Diffstat (limited to 'stoc/source/loader')
-rw-r--r-- | stoc/source/loader/dllcomponentloader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/loader/dllcomponentloader.cxx b/stoc/source/loader/dllcomponentloader.cxx index 5b0b7217f1b9..cd690a23e563 100644 --- a/stoc/source/loader/dllcomponentloader.cxx +++ b/stoc/source/loader/dllcomponentloader.cxx @@ -212,7 +212,7 @@ Reference<XInterface> SAL_CALL DllComponentLoader::activate( if( xPrefixKey.is() && xPrefixKey->getValueType() == RegistryValueType_ASCII ) { aPrefix = xPrefixKey->getAsciiValue(); - if( aPrefix.getLength() != 0 ) + if( !aPrefix.isEmpty() ) aPrefix = aPrefix + OUSTR("_"); } } |