ui: Added sorting feature to error table columns (issue #559)

This commit is contained in:
Eberhard Graether
2018-03-16 20:19:25 +01:00
parent 6acfe0688f
commit 1450f3cd94
7 changed files with 26 additions and 16 deletions
+7 -7
View File
@@ -46,13 +46,13 @@ private slots:
private:
enum COLUMN {
TYPE = 0,
MESSAGE = 1,
FILE = 2,
LINE = 3,
INDEXED = 4,
ID = 5,
COLUMN_MAX = ID
ID = 0,
TYPE = 1,
MESSAGE = 2,
FILE = 3,
LINE = 4,
INDEXED = 5,
COLUMN_MAX = INDEXED
};
void setStyleSheet() const;