diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2011-12-26 17:19:24 -0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-12-30 11:52:45 +0100 |
commit | a17fb882569046cd9f6940cf2e87435200bb666b (patch) | |
tree | 36c9a0bff1d5dd5490c03f36553f5ae7b0f4bdf1 /idlc/source/astscope.cxx | |
parent | 6cfae09e5dafa477db210272949e253d4fb24349 (diff) |
Fix for fdo43460 Part XXI getLength() to isEmpty()
Part XXI
Modules
i18npool, idl, idlc, io, javaunohelper, jvmaccess
Diffstat (limited to 'idlc/source/astscope.cxx')
-rw-r--r-- | idlc/source/astscope.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/source/astscope.cxx b/idlc/source/astscope.cxx index 49bd39a43637..a6b2ccb903ef 100644 --- a/idlc/source/astscope.cxx +++ b/idlc/source/astscope.cxx @@ -36,7 +36,7 @@ using namespace ::rtl; sal_Bool isGlobal(const OString& scopedName) { - if ((scopedName.getLength() == 0) || (scopedName.indexOf(':') == 0)) + if (scopedName.isEmpty() || (scopedName.indexOf(':') == 0)) { return sal_True; } @@ -124,7 +124,7 @@ AstDeclaration* AstScope::lookupByName(const OString& scopedName) { AstDeclaration* pDecl = NULL; AstScope* pScope = NULL; - if (scopedName.getLength() == 0) + if (scopedName.isEmpty()) return NULL; // If name starts with "::" start look up in global scope |