summaryrefslogtreecommitdiff
path: root/src/libs/cplusplus/TypePrettyPrinter.cpp
diff options
context:
space:
mode:
authorhjk <qthjk@ovi.com>2012-10-16 12:53:21 +0200
committerhjk <qthjk@ovi.com>2012-10-17 11:20:10 +0200
commit6fb3328dbe4833544cb1bfbe9406f89d624936ce (patch)
tree0ed31bd2bff52d9e23aba6534f46f1fe5d520261 /src/libs/cplusplus/TypePrettyPrinter.cpp
parent2b3058238a6798e5786f8e753c62e63bded0c424 (diff)
downloadqt-creator-6fb3328dbe4833544cb1bfbe9406f89d624936ce.tar.gz
CppEditor: remove operator() overloads from OverView
Feels less obfuscated. Change-Id: Ide0ec1f38762038ddbb1eddb4f70f7d6acdf1ff7 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'src/libs/cplusplus/TypePrettyPrinter.cpp')
-rw-r--r--src/libs/cplusplus/TypePrettyPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/cplusplus/TypePrettyPrinter.cpp b/src/libs/cplusplus/TypePrettyPrinter.cpp
index dc3e0108f9..035a6f6be6 100644
--- a/src/libs/cplusplus/TypePrettyPrinter.cpp
+++ b/src/libs/cplusplus/TypePrettyPrinter.cpp
@@ -345,7 +345,7 @@ void TypePrettyPrinter::visit(Function *type)
if (_overview->showArgumentNames)
name = arg->name();
- _text += argumentText(arg->type(), name);
+ _text += argumentText.prettyType(arg->type(), name);
if (_overview->showDefaultArguments) {
if (const StringLiteral *initializer = arg->initializer()) {