Bug fix: Use sort order asc by default instead of desc

refs 9044735e87

This was SVN commit r27429.
This commit is contained in:
trompetin17
2023-01-12 19:10:28 +00:00
parent 841b2dd5dc
commit 5e2ae82d9e
+1 -1
View File
@@ -30,7 +30,7 @@ class COListColumn
public:
COListColumn(IGUIObject* owner, const CStr& cid)
: m_Id(cid), m_Width(0), m_Heading(owner, "heading_" + cid), m_List(owner, "list_" + cid),
m_Hidden(owner, "hidden_" + cid, false), m_SortOrder(owner, " sort_order_" + cid, -1)
m_Hidden(owner, "hidden_" + cid, false), m_SortOrder(owner, " sort_order_" + cid, 1)
{}
// Avoid copying the strings.
NONCOPYABLE(COListColumn);