diff options
author | Slávek Banko <[email protected]> | 2013-09-22 14:57:26 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-09-22 14:57:26 +0200 |
commit | 7d335195a06f3453de82ee870c699652a55a2bfd (patch) | |
tree | be80ab7c4b5531439947e939bf0070377d3365ec /kcontrol/hwmanager/devicepropsdlg.cpp | |
parent | 19b918348907ac2f8bf0307d601bea26e774e6c0 (diff) | |
download | tdebase-7d335195a06f3453de82ee870c699652a55a2bfd.tar.gz tdebase-7d335195a06f3453de82ee870c699652a55a2bfd.zip |
Add support for freeze suspend state
Diffstat (limited to 'kcontrol/hwmanager/devicepropsdlg.cpp')
-rw-r--r-- | kcontrol/hwmanager/devicepropsdlg.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kcontrol/hwmanager/devicepropsdlg.cpp b/kcontrol/hwmanager/devicepropsdlg.cpp index a4849af54..30778dac2 100644 --- a/kcontrol/hwmanager/devicepropsdlg.cpp +++ b/kcontrol/hwmanager/devicepropsdlg.cpp @@ -714,6 +714,7 @@ void DevicePropertiesDialog::populateDeviceInformation() { base->comboSystemHibernationMethod->setCurrentItem(m_hibernationComboMap[rdevice->hibernationMethod()]); base->labelSystemUserCanStandby->setText((rdevice->canStandby())?i18n("Yes"):i18n("No")); + base->labelSystemUserCanFreeze->setText((rdevice->canFreeze())?i18n("Yes"):i18n("No")); base->labelSystemUserCanSuspend->setText((rdevice->canSuspend())?i18n("Yes"):i18n("No")); base->labelSystemUserCanHibernate->setText((rdevice->canHibernate())?i18n("Yes"):i18n("No")); base->labelSystemUserCanPowerOff->setText((rdevice->canPowerOff())?i18n("Yes"):i18n("No")); |