Running astlye
This commit is contained in:
parent
1914d5e630
commit
ca449a7f27
|
@ -50,7 +50,7 @@ QString toFilterString(const QMap<QString,QString>& filters, bool addAllSupporte
|
||||||
|
|
||||||
if (addAllSupported) {
|
if (addAllSupported) {
|
||||||
entries << QCoreApplication::translate("toFilterString", "All supported files (%1)")
|
entries << QCoreApplication::translate("toFilterString", "All supported files (%1)")
|
||||||
.arg(QStringList(filters.values()).join(" "));
|
.arg(QStringList(filters.values()).join(" "));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (addAll) {
|
if (addAll) {
|
||||||
|
@ -61,7 +61,7 @@ QString toFilterString(const QMap<QString,QString>& filters, bool addAllSupporte
|
||||||
// name patterns are our values. The generated filter string list will
|
// name patterns are our values. The generated filter string list will
|
||||||
// thus be sorted alphabetically over the descriptions.
|
// thus be sorted alphabetically over the descriptions.
|
||||||
for (auto k: filters.keys()) {
|
for (auto k: filters.keys()) {
|
||||||
entries << QString("%1 (%2)").arg(k).arg(filters.value(k));
|
entries << QString("%1 (%2)").arg(k).arg(filters.value(k));
|
||||||
}
|
}
|
||||||
|
|
||||||
return entries.join(";;");
|
return entries.join(";;");
|
||||||
|
|
Loading…
Reference in New Issue