|
|
|
@ -3096,8 +3096,6 @@ TDEDiskDeviceType::TDEDiskDeviceType classifyDiskType(udev_device* dev, const TQ
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_BD_R_DL")) == "1")
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_BD_PLUS_R")) == "1")
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_BD_MINUS_R")) == "1")
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_DVD_PLUS_R_DL")) == "1")
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_DVD_MINUS_R_DL")) == "1")
|
|
|
|
|
) {
|
|
|
|
|
disktype = disktype | TDEDiskDeviceType::BDRW; // FIXME
|
|
|
|
|
disktype = disktype & ~TDEDiskDeviceType::BDROM;
|
|
|
|
@ -3106,8 +3104,6 @@ TDEDiskDeviceType::TDEDiskDeviceType classifyDiskType(udev_device* dev, const TQ
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_BD_RW_DL")) == "1")
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_BD_PLUS_RW")) == "1")
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_BD_MINUS_RW")) == "1")
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_DVD_PLUS_RW_DL")) == "1")
|
|
|
|
|
|| (TQString(udev_device_get_property_value(dev, "ID_CDROM_MEDIA_DVD_MINUS_RW_DL")) == "1")
|
|
|
|
|
) {
|
|
|
|
|
disktype = disktype | TDEDiskDeviceType::BDRW;
|
|
|
|
|
disktype = disktype & ~TDEDiskDeviceType::BDROM;
|
|
|
|
|