diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-15 15:24:27 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:17 +0100 |
commit | 361774e9107aac3f412ce546892a4b0e55c10dfb (patch) | |
tree | 4558fb6362cd1767c0a5ca00a80584171f7106b8 /idlc/source/aststruct.cxx | |
parent | 20726ae6644236481cd15e2156935ba842cf88fd (diff) |
idlc: sal_Bool -> bool
Change-Id: Ibeed903d73eb8b3fce7b8c6021c9107437a8c813
Diffstat (limited to 'idlc/source/aststruct.cxx')
-rw-r--r-- | idlc/source/aststruct.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/idlc/source/aststruct.cxx b/idlc/source/aststruct.cxx index d60026a22b24..3938d4de0036 100644 --- a/idlc/source/aststruct.cxx +++ b/idlc/source/aststruct.cxx @@ -77,7 +77,7 @@ bool AstStruct::isType() const { ? getTypeParameterCount() == 0 : AstDeclaration::isType(); } -sal_Bool AstStruct::dump(RegistryKey& rKey) +bool AstStruct::dump(RegistryKey& rKey) { RegistryKey localKey; if (rKey.createKey( OStringToOUString(getFullName(), RTL_TEXTENCODING_UTF8 ), localKey)) @@ -85,7 +85,7 @@ sal_Bool AstStruct::dump(RegistryKey& rKey) fprintf(stderr, "%s: warning, could not create key '%s' in '%s'\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString(rKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); - return sal_False; + return false; } if (m_typeParameters.size() > SAL_MAX_UINT16) { @@ -170,10 +170,10 @@ sal_Bool AstStruct::dump(RegistryKey& rKey) fprintf(stderr, "%s: warning, could not set value of key \"%s\" in %s\n", idlc()->getOptions()->getProgramName().getStr(), getFullName().getStr(), OUStringToOString(localKey.getRegistryName(), RTL_TEXTENCODING_UTF8).getStr()); - return sal_False; + return false; } - return sal_True; + return true; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |