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:
parent
b9223e4f04
commit
0faaa1e53a
2 changed files with 9 additions and 1 deletions
|
@ -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 };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue