By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1708
Collapse All | Expand All

(-)b/tdecore/tdehw/tdehardwaredevices.cpp (-1 / +1 lines)
Lines 2269-2275 Link Here
2269
			TQString devicebus(udev_device_get_property_value(dev, "ID_BUS"));
2269
			TQString devicebus(udev_device_get_property_value(dev, "ID_BUS"));
2270
	
2270
	
2271
			// Get disk specific info
2271
			// Get disk specific info
2272
			TQString disklabel(udev_device_get_property_value(dev, "ID_FS_LABEL"));
2272
			TQString disklabel(TQString::fromLocal8Bit(udev_device_get_property_value(dev, "ID_FS_LABEL")));
2273
			TQString diskuuid(udev_device_get_property_value(dev, "ID_FS_UUID"));
2273
			TQString diskuuid(udev_device_get_property_value(dev, "ID_FS_UUID"));
2274
			TQString filesystemtype(udev_device_get_property_value(dev, "ID_FS_TYPE"));
2274
			TQString filesystemtype(udev_device_get_property_value(dev, "ID_FS_TYPE"));
2275
			TQString filesystemusage(udev_device_get_property_value(dev, "ID_FS_USAGE"));
2275
			TQString filesystemusage(udev_device_get_property_value(dev, "ID_FS_USAGE"));

Return to bug 1708