summaryrefslogtreecommitdiffstats
path: root/kxkb
diff options
context:
space:
mode:
authorRoman Savochenko <roman@oscada.org>2023-06-29 20:47:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-06-29 21:06:18 +0900
commitd17e353a028f5cbfc2afc03d7190adb1aea457aa (patch)
tree50e384c4cdacde98b702ddebaa47c4678f7486e8 /kxkb
parent3c23abfd84440d769bc20707e04cb356ddb48c1a (diff)
downloadtdebase-d17e353a028f5cbfc2afc03d7190adb1aea457aa.tar.gz
tdebase-d17e353a028f5cbfc2afc03d7190adb1aea457aa.zip
kxkb: fix unnecessary translations strings.
Signed-off-by: Roman Savochenko <roman@oscada.org> Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kxkb')
-rw-r--r--kxkb/kcmlayout.cpp6
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;