diff options
| author | Roberto Raggi <[email protected]> | 2010-08-26 16:16:22 +0200 |
|---|---|---|
| committer | Roberto Raggi <[email protected]> | 2010-08-26 16:16:22 +0200 |
| commit | 05f2fd666902e7246b7110187d4964644291e26f (patch) | |
| tree | 26184894891d998e8e88e8826e3c3425ec7a9244 /src/libs/cplusplus/LookupItem.cpp | |
| parent | 688d382ad947df8f4406d10846da0751839d61d1 (diff) | |
Renamed Symbol::scope() to Symbol::enclosingScope().
Diffstat (limited to 'src/libs/cplusplus/LookupItem.cpp')
| -rw-r--r-- | src/libs/cplusplus/LookupItem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/cplusplus/LookupItem.cpp b/src/libs/cplusplus/LookupItem.cpp index 1bc49303a31..d3e7ebef877 100644 --- a/src/libs/cplusplus/LookupItem.cpp +++ b/src/libs/cplusplus/LookupItem.cpp @@ -67,7 +67,7 @@ void LookupItem::setDeclaration(Symbol *declaration) Scope *LookupItem::scope() const { if (! _scope && _declaration) - return _declaration->scope(); + return _declaration->enclosingScope(); return _scope; } |
