mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 23:27:42 +00:00
LibGUI: Remove unused bool SortingProxyModel::m_sorting
This commit is contained in:
parent
686ee2bf04
commit
5099e76ce6
2 changed files with 0 additions and 2 deletions
|
@ -111,7 +111,6 @@ void SortingProxyModel::set_key_column_and_sort_order(int column, SortOrder sort
|
||||||
|
|
||||||
void SortingProxyModel::resort(unsigned flags)
|
void SortingProxyModel::resort(unsigned flags)
|
||||||
{
|
{
|
||||||
TemporaryChange change(m_sorting, true);
|
|
||||||
auto old_row_mappings = m_row_mappings;
|
auto old_row_mappings = m_row_mappings;
|
||||||
int row_count = source().row_count();
|
int row_count = source().row_count();
|
||||||
m_row_mappings.resize(row_count);
|
m_row_mappings.resize(row_count);
|
||||||
|
|
|
@ -74,7 +74,6 @@ private:
|
||||||
SortOrder m_sort_order { SortOrder::Ascending };
|
SortOrder m_sort_order { SortOrder::Ascending };
|
||||||
Role m_sort_role { Role::Sort };
|
Role m_sort_role { Role::Sort };
|
||||||
bool m_sorting_case_sensitive { false };
|
bool m_sorting_case_sensitive { false };
|
||||||
bool m_sorting { false };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue