summaryrefslogtreecommitdiffstats
path: root/idlc/source/fehelper.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-15 15:24:27 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-17 17:55:17 +0100
commit361774e9107aac3f412ce546892a4b0e55c10dfb (patch)
tree4558fb6362cd1767c0a5ca00a80584171f7106b8 /idlc/source/fehelper.cxx
parentregistry: sal_Bool -> bool (diff)
downloadcore-361774e9107aac3f412ce546892a4b0e55c10dfb.tar.gz
core-361774e9107aac3f412ce546892a4b0e55c10dfb.zip
idlc: sal_Bool -> bool
Change-Id: Ibeed903d73eb8b3fce7b8c6021c9107437a8c813
Diffstat (limited to 'idlc/source/fehelper.cxx')
-rw-r--r--idlc/source/fehelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/source/fehelper.cxx b/idlc/source/fehelper.cxx
index 053473a2deb4..12636e1ef6a6 100644
--- a/idlc/source/fehelper.cxx
+++ b/idlc/source/fehelper.cxx
@@ -34,7 +34,7 @@ FeDeclarator::~FeDeclarator()
{
}
-sal_Bool FeDeclarator::checkType(AstDeclaration const * type)
+bool FeDeclarator::checkType(AstDeclaration const * type)
{
OString tmp(m_name);
sal_Int32 count = m_name.lastIndexOf( ':' );
@@ -42,9 +42,9 @@ sal_Bool FeDeclarator::checkType(AstDeclaration const * type)
tmp = m_name.copy( count+1 );
if (tmp == type->getLocalName())
- return sal_False;
+ return false;
else
- return sal_True;
+ return true;
}
AstType const * FeDeclarator::compose(AstDeclaration const * pDecl)