1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:37:34 +00:00

GSortingProxyModel: Sort case insensitively by default (#441)

This commit is contained in:
ignas-sa 2019-08-11 19:11:25 +03:00 committed by Andreas Kling
parent b9223e4f04
commit 0faaa1e53a
2 changed files with 9 additions and 1 deletions

View file

@ -29,8 +29,12 @@ private:
void resort();
void set_sorting_case_sensitive(bool b) { m_sorting_case_sensitive = b; }
bool is_sorting_case_sensitive() { return m_sorting_case_sensitive; }
NonnullRefPtr<GModel> m_target;
Vector<int> m_row_mappings;
int m_key_column { -1 };
GSortOrder m_sort_order { GSortOrder::Ascending };
bool m_sorting_case_sensitive { false };
};