From 3252800255e59562f401ad0df2cf37cd50d0b1a4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Sep 2016 18:39:22 -0500 Subject: [PATCH] Fix prior commit --- kcontrol/hwmanager/devicepropsdlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcontrol/hwmanager/devicepropsdlg.cpp b/kcontrol/hwmanager/devicepropsdlg.cpp index 60dc86477..885dc7a7a 100644 --- a/kcontrol/hwmanager/devicepropsdlg.cpp +++ b/kcontrol/hwmanager/devicepropsdlg.cpp @@ -392,7 +392,7 @@ void DevicePropertiesDialog::populateDeviceInformation() { base->labelSerialNumber->setText(formatDisplayString((m_device->serialNumber().isNull())?i18n(""):m_device->serialNumber())); if (m_device->subsystem() == "pci") { - base->labelBusID->setText(m_device->busID()); + base->labelBusID->setText(formatDisplayString(m_device->busID())); base->labelBusID->show(); base->stocklabelBusID->show(); }