summaryrefslogtreecommitdiff
path: root/idlc/source/astconstant.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/astconstant.cxx
parent20726ae6644236481cd15e2156935ba842cf88fd (diff)
idlc: sal_Bool -> bool
Change-Id: Ibeed903d73eb8b3fce7b8c6021c9107437a8c813
Diffstat (limited to 'idlc/source/astconstant.cxx')
-rw-r--r--idlc/source/astconstant.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/source/astconstant.cxx b/idlc/source/astconstant.cxx
index dae0e2d414c3..e72a28f7b27e 100644
--- a/idlc/source/astconstant.cxx
+++ b/idlc/source/astconstant.cxx
@@ -50,7 +50,7 @@ AstConstant::~AstConstant()
}
-sal_Bool AstConstant::dumpBlob(
+bool AstConstant::dumpBlob(
typereg::Writer & rBlob, sal_uInt16 index, bool published)
{
RTConstValue aConst;
@@ -102,7 +102,7 @@ sal_Bool AstConstant::dumpBlob(
{
fprintf(stderr, "%s: exprtype to const type: cannot convert ExprType\n",
idlc()->getOptions()->getProgramName().getStr());
- return sal_False;
+ return false;
}
}
@@ -119,7 +119,7 @@ sal_Bool AstConstant::dumpBlob(
RT_ACCESS_CONST | (published ? RT_ACCESS_PUBLISHED : 0),
OStringToOUString(name, RTL_TEXTENCODING_UTF8), type, aConst);
- return sal_True;
+ return true;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */