summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Symbol.h
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2010-05-10 10:11:05 +0200
committerRoberto Raggi <roberto.raggi@nokia.com>2010-05-10 10:11:05 +0200
commit702909372d33ca269422d011e9156982d0e6f0e5 (patch)
treeba8dddd9cf8a8f26f6c10dacfa27a193845a532e /src/shared/cplusplus/Symbol.h
parent2e9f94c4b98af75b27652c5c1b16cc49f2227681 (diff)
downloadqt-creator-702909372d33ca269422d011e9156982d0e6f0e5.tar.gz
Store the Control.
It seems that storing the TranslationUnit together with the Symbol was a bad idea. Unfortunately, we release TranslationUnit(s) as soon as we can, but we keep the Control around. So using the Control is definitely safer.
Diffstat (limited to 'src/shared/cplusplus/Symbol.h')
-rw-r--r--src/shared/cplusplus/Symbol.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/shared/cplusplus/Symbol.h b/src/shared/cplusplus/Symbol.h
index f45ce88c0c..628261b4b9 100644
--- a/src/shared/cplusplus/Symbol.h
+++ b/src/shared/cplusplus/Symbol.h
@@ -87,9 +87,6 @@ public:
/// Destroy this Symbol.
virtual ~Symbol();
- /// Returns this Symbol's Control object.
- Control *control() const;
-
/// Returns this Symbol's source location.
unsigned sourceLocation() const;
@@ -323,10 +320,14 @@ public:
protected:
virtual void visitSymbol0(SymbolVisitor *visitor) = 0;
+ /// Returns this Symbol's Control object.
+ Control *control() const;
+
+ /// Returns this Symbol's TranslationUnit.
TranslationUnit *translationUnit() const;
private:
- TranslationUnit *_translationUnit;
+ Control *_control;
unsigned _sourceLocation;
unsigned _sourceOffset;
unsigned _startOffset;