mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 22:17:39 +03:00
Allow colon in tags and sort alphabetically
* Fix #7489 - allow colon and period in tag names * Fix #7490 - sort tags alphabetically
This commit is contained in:
parent
4cc5850c86
commit
cf5429a39b
1 changed files with 4 additions and 2 deletions
|
@ -192,8 +192,10 @@ QString Entry::tags() const
|
||||||
|
|
||||||
QStringList Entry::tagList() const
|
QStringList Entry::tagList() const
|
||||||
{
|
{
|
||||||
static QRegExp rx("(\\ |\\,|\\.|\\:|\\t|\\;)");
|
static QRegExp rx("(\\ |\\,|\\t|\\;)");
|
||||||
return tags().split(rx, QString::SkipEmptyParts);
|
auto taglist = tags().split(rx, QString::SkipEmptyParts);
|
||||||
|
std::sort(taglist.begin(), taglist.end());
|
||||||
|
return taglist;
|
||||||
}
|
}
|
||||||
|
|
||||||
const TimeInfo& Entry::timeInfo() const
|
const TimeInfo& Entry::timeInfo() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue