diff options
author | Nikolai Kosjar <nikolai.kosjar@digia.com> | 2012-10-23 10:50:38 +0200 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-10-23 12:26:47 +0200 |
commit | 5d730be06e4e4138ecda9df09efe3736294baf73 (patch) | |
tree | 520ae203ddf2b5770057d780e14667ab025e24bb /src/libs/cplusplus/LookupContext.cpp | |
parent | 1da50de19cc785e12dee8b2b0bcda6d8845fedd8 (diff) | |
download | qt-creator-5d730be06e4e4138ecda9df09efe3736294baf73.tar.gz |
C++: Compile fixes in tests and tools.
After some refactorings not all usages, especially in tests and tools,
were adapted.
Change-Id: I7ed24bb1c8e55e55ed74eda3a8fd7610e725f4cb
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/libs/cplusplus/LookupContext.cpp')
-rw-r--r-- | src/libs/cplusplus/LookupContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/cplusplus/LookupContext.cpp b/src/libs/cplusplus/LookupContext.cpp index 65b87de765..50d9655b23 100644 --- a/src/libs/cplusplus/LookupContext.cpp +++ b/src/libs/cplusplus/LookupContext.cpp @@ -779,7 +779,7 @@ ClassOrNamespace *ClassOrNamespace::nestedType(const Name *name, ClassOrNamespac Symbol *clone = cloner.symbol(s, &subst); instantiation->_symbols.append(clone); #ifdef DEBUG_LOOKUP - Overview oo;oo.setShowFunctionSignatures(true);oo.setShowReturnTypes(true);oo.setShowTemplateParameters(true); + Overview oo;oo.showFunctionSignatures = true;oo.showReturnTypes = true; oo.showTemplateParameters = true; qDebug()<<"cloned"<<oo(clone->type()); #endif // DEBUG_LOOKUP } |