code cleanup: replace use of toStdVector()

Frankly, I find the old API easier...

Also, replace toList() with values()

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2020-01-06 12:47:53 -08:00
parent daf3821fcc
commit e9dcac7514
3 changed files with 5 additions and 5 deletions

View file

@ -36,7 +36,7 @@
set.insert(value.trimmed()); \
} \
} \
QStringList setList = set.toList(); \
QStringList setList = set.values(); \
std::sort(setList.begin(), setList.end()); \
setStringList(setList); \
}