summaryrefslogtreecommitdiff
path: root/codemaker/source/codemaker/exceptiontree.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'codemaker/source/codemaker/exceptiontree.cxx')
-rw-r--r--codemaker/source/codemaker/exceptiontree.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/codemaker/source/codemaker/exceptiontree.cxx b/codemaker/source/codemaker/exceptiontree.cxx
index 09c3b87083a4..c3f555c3d8cb 100644
--- a/codemaker/source/codemaker/exceptiontree.cxx
+++ b/codemaker/source/codemaker/exceptiontree.cxx
@@ -51,10 +51,10 @@ void ExceptionTree::add(
rtl::OString const & name, rtl::Reference< TypeManager > const & manager)
{
std::vector< rtl::OString > list;
- bool runtimeException = false;
+ bool bRuntimeException = false;
for (rtl::OString n(name); n != "com.sun.star.uno.Exception";) {
if (n == "com.sun.star.uno.RuntimeException") {
- runtimeException = true;
+ bRuntimeException = true;
break;
}
list.push_back(n);
@@ -67,7 +67,7 @@ void ExceptionTree::add(
getDirectBase());
assert(!n.isEmpty());
}
- if (!runtimeException) {
+ if (!bRuntimeException) {
ExceptionTreeNode * node = &m_root;
for (std::vector< rtl::OString >::reverse_iterator i(list.rbegin());
!node->present; ++i)