summaryrefslogtreecommitdiffstats
path: root/kcontrol
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-10-13 21:41:23 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-10-13 21:41:23 -0500
commit6fb5669626c58d79beb6e9db048d2783cc2198c5 (patch)
treeb7a93ff27771e812961941576f768e4476babca3 /kcontrol
parent1f79e5310340b895b15ad7594fc5d7afb5a69418 (diff)
downloadtdebase-6fb5669626c58d79beb6e9db048d2783cc2198c5.tar.gz
tdebase-6fb5669626c58d79beb6e9db048d2783cc2198c5.zip
Fix blank optical media labeling
Diffstat (limited to 'kcontrol')
-rw-r--r--kcontrol/hwmanager/devicepropsdlg.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/kcontrol/hwmanager/devicepropsdlg.cpp b/kcontrol/hwmanager/devicepropsdlg.cpp
index b41833210..64e2bcde2 100644
--- a/kcontrol/hwmanager/devicepropsdlg.cpp
+++ b/kcontrol/hwmanager/devicepropsdlg.cpp
@@ -400,6 +400,9 @@ void DevicePropertiesDialog::populateDeviceInformation() {
if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Inserted)) {
status_text += "Inserted<br>";
}
+ if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Blank)) {
+ status_text += "Blank<br>";
+ }
if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::UsedByDevice)) {
status_text += "In use<br>";
}