summaryrefslogtreecommitdiffstats
path: root/src/configuredialog.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-02-16 11:41:12 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-02-16 11:41:12 -0600
commitbc5f7885f33854441e4cdd977b3411f9d458bf75 (patch)
tree554f6b4be2f4e5c324b4e2afd20ec16e7fe2de53 /src/configuredialog.cpp
parent1fe39d6cf3161c1bde5c02ba08ec6fe36560215a (diff)
downloadkpowersave-bc5f7885f33854441e4cdd977b3411f9d458bf75.tar.gz
kpowersave-bc5f7885f33854441e4cdd977b3411f9d458bf75.zip
Fix unintended renaming
Diffstat (limited to 'src/configuredialog.cpp')
-rw-r--r--src/configuredialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/configuredialog.cpp b/src/configuredialog.cpp
index 6932fc5..d4902b1 100644
--- a/src/configuredialog.cpp
+++ b/src/configuredialog.cpp
@@ -1785,13 +1785,13 @@ TQString ConfigureDialog::mapActionToDescription( TQString action ) {
} else if (action.startsWith("SUSPEND2RAM")) {
if (actions.contains("Suspend to RAM"))
ret = i18n("Suspend to RAM");
- } else if (action.startsWith("CPUFRETQ_POWERSAVE")) {
+ } else if (action.startsWith("CPUFREQ_POWERSAVE")) {
if (hwinfo->supportCPUFreq())
ret = i18n("CPU Powersave policy");
- } else if (action.startsWith("CPUFRETQ_DYNAMIC")) {
+ } else if (action.startsWith("CPUFREQ_DYNAMIC")) {
if (hwinfo->supportCPUFreq())
ret = i18n("CPU Dynamic policy");
- } else if (action.startsWith("CPUFRETQ_PERFORMANCE")) {
+ } else if (action.startsWith("CPUFREQ_PERFORMANCE")) {
if (hwinfo->supportCPUFreq())
ret = i18n("CPU Performance policy");
} else if (action.startsWith("BRIGHTNESS")) {
@@ -1826,13 +1826,13 @@ TQString ConfigureDialog::mapDescriptionToAction( TQString description ) {
ret = "SUSPEND2RAM";
} else if (description.startsWith("CPU Powersave policy") ||
description.startsWith(i18n("CPU Powersave policy"))) {
- ret = "CPUFRETQ_POWERSAVE";
+ ret = "CPUFREQ_POWERSAVE";
} else if (description.startsWith("CPU Dynamic policy") ||
description.startsWith(i18n("CPU Dynamic policy"))) {
- ret = "CPUFRETQ_DYNAMIC";
+ ret = "CPUFREQ_DYNAMIC";
} else if (description.startsWith("CPU Performance policy") ||
description.startsWith(i18n("CPU Performance policy"))) {
- ret = "CPUFRETQ_PERFORMANCE";
+ ret = "CPUFREQ_PERFORMANCE";
} else if (description.startsWith("Set Brightness to") ||
description.startsWith(i18n("Set Brightness to"))) {
ret = "BRIGHTNESS";