diff options
author | Roman Savochenko <roman@oscada.org> | 2023-06-29 20:47:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-06-30 16:18:13 +0900 |
commit | 1206271a073538f11f1096165b454d77a0759650 (patch) | |
tree | ba5d09d2dc10fc4181c0d1ed5a0a048e76ca677d | |
parent | c449ec1768b03e3e43b9c7f6a827b2d59b1e7ea0 (diff) | |
download | tdebase-1206271a073538f11f1096165b454d77a0759650.tar.gz tdebase-1206271a073538f11f1096165b454d77a0759650.zip |
kxkb: fix unnecessary translations strings.
Signed-off-by: Roman Savochenko <roman@oscada.org>
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d17e353a028f5cbfc2afc03d7190adb1aea457aa)
-rw-r--r-- | kxkb/kcmlayout.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kxkb/kcmlayout.cpp b/kxkb/kcmlayout.cpp index 9499d8efc..3744f5a1c 100644 --- a/kxkb/kcmlayout.cpp +++ b/kxkb/kcmlayout.cpp @@ -837,7 +837,7 @@ void LayoutConfig::resolveConflicts(TQListViewItem *lvi) { kdDebug() << "resolveConflicts : " << current->optionName() << endl; if (current->optionName().startsWith("grp:")) { - OptionListItem *grpItem = m_optionGroups[i18n("grp")]; + OptionListItem *grpItem = m_optionGroups["grp"]; if (grpItem == NULL) { kdWarning() << "LayoutConfig: cannot find grp item group" << endl; return; @@ -967,7 +967,7 @@ void LayoutConfig::updateHotkeyCombo() { } void LayoutConfig::updateHotkeyCombo(bool initial) { - OptionListItem *grpItem = m_optionGroups[i18n("grp")]; + OptionListItem *grpItem = m_optionGroups["grp"]; if (grpItem == NULL) { kdWarning() << "LayoutConfig: cannot find grp item group" << endl; return; @@ -1071,7 +1071,7 @@ void LayoutConfig::hotkeyComboChanged() { } } - OptionListItem *grpItem = m_optionGroups[i18n("grp")]; + OptionListItem *grpItem = m_optionGroups["grp"]; if (grpItem == NULL) { kdWarning() << "LayoutConfig: cannot find grp item group" << endl; return; |