From a2fd10fe193dbf8369e43d7df9a59503c8853b2b Mon Sep 17 00:00:00 2001 From: Roberto Raggi <qtc-committer@nokia.com> Date: Mon, 9 Feb 2009 17:55:40 +0100 Subject: [PATCH] Fixes: Possible crash in OverviewModel. --- src/libs/cplusplus/OverviewModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/cplusplus/OverviewModel.cpp b/src/libs/cplusplus/OverviewModel.cpp index 1bef20f36d3..0855bcbd8f6 100644 --- a/src/libs/cplusplus/OverviewModel.cpp +++ b/src/libs/cplusplus/OverviewModel.cpp @@ -171,7 +171,7 @@ QVariant OverviewModel::data(const QModelIndex &index, int role) const if (! symbol->isScopedSymbol() || symbol->isFunction()) { QString type = _overview.prettyType(symbol->type()); if (! type.isEmpty()) { - if (! symbol->type()->isFunctionType()) + if (symbol->type() && ! symbol->type()->isFunctionType()) name += QLatin1String(": "); name += type; } -- GitLab