From 348ad276ac7497b0a013aa98dc075f1eabb0261e Mon Sep 17 00:00:00 2001 From: Alexander Potashev Date: Sun, 15 Oct 2017 18:35:10 +0300 Subject: [PATCH] kcmkwinrules: Change file filter to "KWin Rules (*.kwinrule)" --- kcmkwin/kwinrules/ruleslist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kcmkwin/kwinrules/ruleslist.cpp b/kcmkwin/kwinrules/ruleslist.cpp index 1695e2ad35..82f6e45a90 100644 --- a/kcmkwin/kwinrules/ruleslist.cpp +++ b/kcmkwin/kwinrules/ruleslist.cpp @@ -151,7 +151,7 @@ void KCMRulesList::exportClicked() int pos = rules_listbox->currentRow(); assert(pos != -1); QString path = QFileDialog::getSaveFileName(this, i18n("Export Rule"), QDir::home().absolutePath(), - i18n("KWin Rule (*.kwinrule)")); + i18n("KWin Rules (*.kwinrule)")); if (path.isEmpty()) return; KConfig config(path, KConfig::SimpleConfig); @@ -163,7 +163,7 @@ void KCMRulesList::exportClicked() void KCMRulesList::importClicked() { QString path = QFileDialog::getOpenFileName(this, i18n("Import Rules"), QDir::home().absolutePath(), - i18n("KWin Rule (*.kwinrule)")); + i18n("KWin Rules (*.kwinrule)")); if (path.isEmpty()) return; KConfig config(path, KConfig::SimpleConfig);