summaryrefslogtreecommitdiff
path: root/idlc/source/astdeclaration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/source/astdeclaration.cxx')
-rw-r--r--idlc/source/astdeclaration.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/source/astdeclaration.cxx b/idlc/source/astdeclaration.cxx
index 5e4dcdd6382d..87eda045a9e2 100644
--- a/idlc/source/astdeclaration.cxx
+++ b/idlc/source/astdeclaration.cxx
@@ -41,7 +41,7 @@ static OString convertName(const OString& name)
do
{
OString token( name.getToken( 0, ':', nIndex ) );
- if( token.getLength() )
+ if( !token.isEmpty() )
{
nameBuffer.append('/');
nameBuffer.append( token );
@@ -65,7 +65,7 @@ AstDeclaration::AstDeclaration(NodeType type, const OString& name, AstScope* pSc
if (pDecl)
{
m_scopedName = pDecl->getScopedName();
- if (m_scopedName.getLength() > 0)
+ if (!m_scopedName.isEmpty())
m_scopedName += sGlobal;
m_scopedName += m_localName;
}