From ca449a7f277c6824ee6069b8cdbec4d8c4929b7c Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Fri, 25 May 2018 08:36:02 +0200 Subject: [PATCH] Running astlye --- gui/common.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/common.cpp b/gui/common.cpp index bcbb557ae..ed7c62aea 100644 --- a/gui/common.cpp +++ b/gui/common.cpp @@ -50,7 +50,7 @@ QString toFilterString(const QMap& filters, bool addAllSupporte if (addAllSupported) { entries << QCoreApplication::translate("toFilterString", "All supported files (%1)") - .arg(QStringList(filters.values()).join(" ")); + .arg(QStringList(filters.values()).join(" ")); } if (addAll) { @@ -61,7 +61,7 @@ QString toFilterString(const QMap& filters, bool addAllSupporte // name patterns are our values. The generated filter string list will // thus be sorted alphabetically over the descriptions. 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(";;");