From fe96a029605420ea8fceb4bec55d2a68099e8379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Wed, 14 Mar 2012 08:48:51 +0100 Subject: [PATCH] align special application settings dialog title BUG: 288586 FIXED-IN: 4.9 REVIEW: 104279 --- kcmkwin/kwinrules/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kcmkwin/kwinrules/main.cpp b/kcmkwin/kwinrules/main.cpp index 598bd3f7d1..194349c86d 100644 --- a/kcmkwin/kwinrules/main.cpp +++ b/kcmkwin/kwinrules/main.cpp @@ -208,6 +208,8 @@ static int edit(Window wid, bool whole_app) loadRules(rules); Rules* orig_rule = findRule(rules, wid, whole_app); RulesDialog dlg; + if (whole_app) + dlg.setWindowTitle(i18nc("Window caption for the application wide rules dialog", "Edit Application-Specific Settings")); // dlg.edit() creates new Rules instance if edited Rules* edited_rule = dlg.edit(orig_rule, wid, true); if (edited_rule == NULL || edited_rule->isEmpty()) {