forked from qt-creator/qt-creator
Fixes for valgrind-callgrind feedback by Nokia
Most changes include style fixes and UI changes for better usability. Merge-request: 324 Reviewed-by: hjk <qtc-committer@nokia.com>
This commit is contained in:
@@ -137,7 +137,7 @@ bool DataProxyModel::filterAcceptsRow(int source_row, const QModelIndex &source_
|
||||
// check if the function from this index is a child of (called by) the filter function
|
||||
if (func && m_function) {
|
||||
bool isValid = false;
|
||||
foreach(const FunctionCall *call, func->incomingCalls()) {
|
||||
foreach (const FunctionCall *call, func->incomingCalls()) {
|
||||
if (call->caller() == m_function) {
|
||||
isValid = true;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user