summaryrefslogtreecommitdiffstats
path: root/kcontrol/hwmanager/devicepropsdlg.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-10-11 11:05:21 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-10-11 11:05:21 -0500
commit670343f4365dd72eb4f3493c2bb3e93884aaf0db (patch)
treedc66ed898aeacbc124bbe3d48057e2b79c5e7cce /kcontrol/hwmanager/devicepropsdlg.cpp
parent24432263d73ca896e2df061dc65524747f6f06eb (diff)
downloadtdebase-670343f4365dd72eb4f3493c2bb3e93884aaf0db.tar.gz
tdebase-670343f4365dd72eb4f3493c2bb3e93884aaf0db.zip
Fix minor inconsistent CPU info dialog text
Diffstat (limited to 'kcontrol/hwmanager/devicepropsdlg.cpp')
-rw-r--r--kcontrol/hwmanager/devicepropsdlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kcontrol/hwmanager/devicepropsdlg.cpp b/kcontrol/hwmanager/devicepropsdlg.cpp
index ee5ee5981..b41833210 100644
--- a/kcontrol/hwmanager/devicepropsdlg.cpp
+++ b/kcontrol/hwmanager/devicepropsdlg.cpp
@@ -435,7 +435,7 @@ void DevicePropertiesDialog::populateDeviceInformation() {
// Show information
base->labelCPUVendor->setText(cdevice->vendorEncoded());
base->labelCPUFrequency->setText((cdevice->frequency()<0)?i18n("<unsupported>"):TQString("%1 MHz").arg(cdevice->frequency()));
- base->labelMinCPUFrequency->setText((cdevice->minFrequency()<0)?i18n("<unknown>"):TQString("%1 MHz").arg(cdevice->minFrequency()));
+ base->labelMinCPUFrequency->setText((cdevice->minFrequency()<0)?i18n("<unsupported>"):TQString("%1 MHz").arg(cdevice->minFrequency()));
base->labelMaxCPUFrequency->setText((cdevice->maxFrequency()<0)?i18n("<unsupported>"):TQString("%1 MHz").arg(cdevice->maxFrequency()));
base->labelScalingDriver->setText((cdevice->scalingDriver().isNull())?i18n("<none>"):cdevice->scalingDriver());
TQStringList scalingfreqs = cdevice->availableFrequencies();