mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Fix sorting of advanced attribute list (#10091)
Sort advanced attribute list using locale aware sort. Fixes #6175
This commit is contained in:
parent
811887e591
commit
8ca90a070a
3 changed files with 19 additions and 2 deletions
|
@ -24,6 +24,7 @@ EntryAttributesModel::EntryAttributesModel(QObject* parent)
|
|||
, m_entryAttributes(nullptr)
|
||||
, m_nextRenameDataChange(false)
|
||||
{
|
||||
m_collator.setNumericMode(true);
|
||||
}
|
||||
|
||||
void EntryAttributesModel::setEntryAttributes(EntryAttributes* entryAttributes)
|
||||
|
@ -150,7 +151,7 @@ void EntryAttributesModel::attributeAboutToAdd(const QString& key)
|
|||
{
|
||||
QList<QString> rows = m_attributes;
|
||||
rows.append(key);
|
||||
std::sort(rows.begin(), rows.end());
|
||||
std::sort(rows.begin(), rows.end(), m_collator);
|
||||
int row = rows.indexOf(key);
|
||||
beginInsertRows(QModelIndex(), row, row);
|
||||
}
|
||||
|
@ -180,7 +181,7 @@ void EntryAttributesModel::attributeAboutToRename(const QString& oldKey, const Q
|
|||
QList<QString> rows = m_attributes;
|
||||
rows.removeOne(oldKey);
|
||||
rows.append(newKey);
|
||||
std::sort(rows.begin(), rows.end());
|
||||
std::sort(rows.begin(), rows.end(), m_collator);
|
||||
int newRow = rows.indexOf(newKey);
|
||||
if (newRow > oldRow) {
|
||||
newRow++;
|
||||
|
@ -232,4 +233,5 @@ void EntryAttributesModel::updateAttributes()
|
|||
m_attributes.append(key);
|
||||
}
|
||||
}
|
||||
std::sort(m_attributes.begin(), m_attributes.end(), m_collator);
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#define KEEPASSX_ENTRYATTRIBUTESMODEL_H
|
||||
|
||||
#include <QAbstractListModel>
|
||||
#include <QCollator>
|
||||
|
||||
class EntryAttributes;
|
||||
|
||||
|
@ -55,6 +56,7 @@ private:
|
|||
EntryAttributes* m_entryAttributes;
|
||||
QList<QString> m_attributes;
|
||||
bool m_nextRenameDataChange;
|
||||
QCollator m_collator;
|
||||
};
|
||||
|
||||
#endif // KEEPASSX_ENTRYATTRIBUTESMODEL_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue