diff options
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 b127cf936c06..cc0812664181 100644 --- a/idlc/source/astscope.cxx +++ b/idlc/source/astscope.cxx @@ -134,11 +134,11 @@ AstDeclaration* AstScope::lookupByName(const OString& scopedName) // Look up in the local scope and start with the first scope sal_Int32 nIndex = scopedName.indexOf(':'); OString firstScope = nIndex > 0 ? scopedName.copy(0, nIndex) : scopedName; - sal_Bool bFindFirstScope = sal_True; + bool bFindFirstScope = true; pDecl = lookupByNameLocal(firstScope); if ( !pDecl ) { - bFindFirstScope = sal_False; + bFindFirstScope = false; // OK, not found. Go down parent scope chain pDecl = scopeAsDecl(this); |