From ab7def5e7d932b0df67823bd194ceeaf8ad05a88 Mon Sep 17 00:00:00 2001 From: Caio Carvalho Date: Wed, 11 Jul 2018 11:57:56 -0300 Subject: [PATCH] Changing HardwareRAID_Device to FakeRAID_Device. --- src/core/device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/device.h b/src/core/device.h index 7efe179..68c40e3 100644 --- a/src/core/device.h +++ b/src/core/device.h @@ -55,7 +55,7 @@ public: Disk_Device, LVM_Device, /* VG */ SoftwareRAID_Device, /* software RAID device, i.e. mdraid */ - HardwareRAID_Device, /* hardware RAID device (or fake raid), i.e. dmraid */ + FakeRAID_Device, /* fake RAID device, i.e. dmraid */ }; explicit Device(std::shared_ptr d_ptr, const QString& name, const QString& deviceNode, const qint64 logicalSectorSize, const qint64 totalLogicalSectors, const QString& iconName = QString(), Device::Type type = Device::Type::Disk_Device);