From 05e6ea82a3d2f802079ed89e6fc794f57316ddc9 Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Thu, 8 Sep 2016 18:11:04 +0200 Subject: [PATCH] Make copy constructor public. --- 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 03a57f8..4c24410 100644 --- a/src/core/device.h +++ b/src/core/device.h @@ -55,9 +55,9 @@ public: protected: explicit Device(const QString& name, const QString& deviceNode, const qint32 logicalSize, const qint64 totalLogical, const QString& iconName = QString(), Device::Type type = Device::Disk_Device); - explicit Device(const Device& other); public: + explicit Device(const Device& other); virtual ~Device(); public: