From 25de88fe61262dccbbbcf41d95f578e6176952ca Mon Sep 17 00:00:00 2001
From: Roberto Raggi <qtc-committer@nokia.com>
Date: Mon, 9 Feb 2009 21:00:03 +0100
Subject: [PATCH] Fixes: Removed dynamic_cast from Scope.

---
 src/shared/cplusplus/Scope.cpp | 30 ++++++++++++++++++++++++------
 1 file changed, 24 insertions(+), 6 deletions(-)

diff --git a/src/shared/cplusplus/Scope.cpp b/src/shared/cplusplus/Scope.cpp
index db05d1bdc93..efb6a369aec 100644
--- a/src/shared/cplusplus/Scope.cpp
+++ b/src/shared/cplusplus/Scope.cpp
@@ -148,27 +148,45 @@ Scope *Scope::enclosingBlockScope() const
 }
 
 bool Scope::isNamespaceScope() const
-{ return dynamic_cast<const Namespace *>(_owner) != 0; }
+{
+    if (_owner)
+        return _owner->isNamespace();
+    return false;
+}
 
 bool Scope::isClassScope() const
-{ return dynamic_cast<const Class *>(_owner) != 0; }
+{
+    if (_owner)
+        return _owner->isClass();
+    return false;
+}
 
 bool Scope::isEnumScope() const
-{ return dynamic_cast<const Enum *>(_owner) != 0; }
+{
+    if (_owner)
+        return _owner->isEnum();
+    return false;
+}
 
 bool Scope::isBlockScope() const
-{ return dynamic_cast<const Block *>(_owner) != 0; }
+{
+    if (_owner)
+        return _owner->isBlock();
+    return false;
+}
 
 bool Scope::isPrototypeScope() const
 {
-    if (const Function *f = dynamic_cast<const Function *>(_owner))
+    Function *f = 0;
+    if (_owner && 0 != (f = _owner->asFunction()))
         return f->arguments() == this;
     return false;
 }
 
 bool Scope::isFunctionScope() const
 {
-    if (const Function *f = dynamic_cast<const Function *>(_owner))
+    Function *f = 0;
+    if (_owner && 0 != (f = _owner->asFunction()))
         return f->arguments() != this;
     return false;
 }
-- 
GitLab