mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 08:39:22 +00:00
GSortingProxyModel: Sort case insensitively by default (#441)
This commit is contained in:
parent
b9223e4f04
commit
0faaa1e53a
Notes:
sideshowbarker
2024-07-19 12:44:06 +09:00
Author: https://github.com/ignas-sa 🔰
Commit: 0faaa1e53a
Pull-request: https://github.com/SerenityOS/serenity/pull/441
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