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/registry_tdprovider/tdef.cxx | |
parent | 14359c82eb91b69212cbf0f743e819776a8f6d3a (diff) |
Fix for fdo43460 Part XXXV getLength() to isEmpty()
Part XXXV
Modules
stoc
Diffstat (limited to 'stoc/source/registry_tdprovider/tdef.cxx')
-rw-r--r-- | stoc/source/registry_tdprovider/tdef.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/registry_tdprovider/tdef.cxx b/stoc/source/registry_tdprovider/tdef.cxx index 40b432d2d19c..6445191ded60 100644 --- a/stoc/source/registry_tdprovider/tdef.cxx +++ b/stoc/source/registry_tdprovider/tdef.cxx @@ -54,7 +54,7 @@ OUString TypedefTypeDescriptionImpl::getName() Reference< XTypeDescription > TypedefTypeDescriptionImpl::getReferencedType() throw(::com::sun::star::uno::RuntimeException) { - if (!_xRefTD.is() && _aRefName.getLength()) + if (!_xRefTD.is() && !_aRefName.isEmpty()) { try { |