fix: initialize FileSystemModel::m_sortReverse
m_sortReverse was not initialized, causing undefined behavior when used in compareEntries().
This commit is contained in:
parent
d5c6e98126
commit
598e6d91fd
1 changed files with 1 additions and 1 deletions
|
|
@ -132,7 +132,7 @@ private:
|
||||||
bool m_recursive;
|
bool m_recursive;
|
||||||
bool m_watchChanges;
|
bool m_watchChanges;
|
||||||
bool m_showHidden;
|
bool m_showHidden;
|
||||||
bool m_sortReverse;
|
bool m_sortReverse = false;
|
||||||
Filter m_filter;
|
Filter m_filter;
|
||||||
QStringList m_nameFilters;
|
QStringList m_nameFilters;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue