forked from qt-creator/qt-creator
QtMessageLogHandler: Insert child items in alphabetical order
Change-Id: I644207f5e8b149364e73abf7512240e918260072 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
@@ -1309,7 +1309,7 @@ QtMessageLogItem *QmlEngine::constructLogItemTree(
|
|||||||
QtMessageLogItem *child = constructLogItemTree(item,
|
QtMessageLogItem *child = constructLogItemTree(item,
|
||||||
i.value(), i.key());
|
i.value(), i.key());
|
||||||
if (child)
|
if (child)
|
||||||
item->insertChild(item->childCount(), child);
|
item->insertChildSorted(child);
|
||||||
}
|
}
|
||||||
} else if (result.type() == QVariant::List) {
|
} else if (result.type() == QVariant::List) {
|
||||||
if (key.isEmpty())
|
if (key.isEmpty())
|
||||||
@@ -1321,7 +1321,7 @@ QtMessageLogItem *QmlEngine::constructLogItemTree(
|
|||||||
QtMessageLogItem *child = constructLogItemTree(item, resultList.at(i),
|
QtMessageLogItem *child = constructLogItemTree(item, resultList.at(i),
|
||||||
QString::number(i));
|
QString::number(i));
|
||||||
if (child)
|
if (child)
|
||||||
item->insertChild(item->childCount(), child);
|
item->insertChildSorted(child);
|
||||||
}
|
}
|
||||||
} else if (result.canConvert(QVariant::String)) {
|
} else if (result.canConvert(QVariant::String)) {
|
||||||
item->text = result.toString();
|
item->text = result.toString();
|
||||||
|
@@ -995,7 +995,7 @@ QtMessageLogItem *QmlV8DebuggerClientPrivate::constructLogItemTree(
|
|||||||
QtMessageLogItem *child = constructLogItemTree(
|
QtMessageLogItem *child = constructLogItemTree(
|
||||||
item, extractData(property, refsVal), refsVal);
|
item, extractData(property, refsVal), refsVal);
|
||||||
if (child)
|
if (child)
|
||||||
item->insertChild(item->childCount(), child);
|
item->insertChildSorted(child);
|
||||||
}
|
}
|
||||||
|
|
||||||
return item;
|
return item;
|
||||||
|
@@ -94,6 +94,17 @@ bool QtMessageLogItem::insertChildren(int position, int count)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void QtMessageLogItem::insertChildSorted(QtMessageLogItem *item)
|
||||||
|
{
|
||||||
|
int i = 0;
|
||||||
|
for (; i < m_childItems.count(); i++) {
|
||||||
|
if (item->text < m_childItems[i]->text) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
m_childItems.insert(i, item);
|
||||||
|
}
|
||||||
|
|
||||||
bool QtMessageLogItem::insertChild(int position, QtMessageLogItem *item)
|
bool QtMessageLogItem::insertChild(int position, QtMessageLogItem *item)
|
||||||
{
|
{
|
||||||
if (position < 0 || position > m_childItems.size())
|
if (position < 0 || position > m_childItems.size())
|
||||||
|
@@ -126,6 +126,7 @@ public:
|
|||||||
QtMessageLogItem *child(int number);
|
QtMessageLogItem *child(int number);
|
||||||
int childCount() const;
|
int childCount() const;
|
||||||
bool insertChildren(int position, int count);
|
bool insertChildren(int position, int count);
|
||||||
|
void insertChildSorted(QtMessageLogItem *item);
|
||||||
bool insertChild(int position, QtMessageLogItem *item);
|
bool insertChild(int position, QtMessageLogItem *item);
|
||||||
QtMessageLogItem *parent();
|
QtMessageLogItem *parent();
|
||||||
bool removeChildren(int position, int count);
|
bool removeChildren(int position, int count);
|
||||||
|
Reference in New Issue
Block a user