From f2c40fb506bc14646903257e244d01d94e42a815 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Fri, 1 Apr 2011 10:05:53 +0100 Subject: [PATCH] Sort state in ascending order by default. --- gui/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 6ba7f40..12d46ef 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -29,6 +29,7 @@ MainWindow::MainWindow() m_jsonParser(new QJson::Parser()) { m_ui.setupUi(this); + m_ui.stateTreeWidget->sortByColumn(0, Qt::AscendingOrder); m_trace = new ApiTrace(); connect(m_trace, SIGNAL(startedLoadingTrace()), -- 2.45.2