summaryrefslogtreecommitdiffstats
path: root/idlc/source/astoperation.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/astoperation.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/astoperation.cxx')
-rw-r--r--idlc/source/astoperation.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/source/astoperation.cxx b/idlc/source/astoperation.cxx
index 7a80f42b0cb6..3ee0bb973e49 100644
--- a/idlc/source/astoperation.cxx
+++ b/idlc/source/astoperation.cxx
@@ -40,7 +40,7 @@ bool AstOperation::isVariadic() const {
&& static_cast< AstParameter const * >(*(--i))->isRest();
}
-sal_Bool AstOperation::dumpBlob(typereg::Writer & rBlob, sal_uInt16 index)
+bool AstOperation::dumpBlob(typereg::Writer & rBlob, sal_uInt16 index)
{
sal_uInt16 nParam = getNodeCount(NT_parameter);
sal_uInt16 nExcep = nExceptions();
@@ -118,7 +118,7 @@ sal_Bool AstOperation::dumpBlob(typereg::Writer & rBlob, sal_uInt16 index)
}
}
- return sal_True;
+ return true;
}
AstDeclaration* AstOperation::addDeclaration(AstDeclaration* pDecl)