Make copy constructor public.

This commit is contained in:
Teo Mrnjavac 2016-09-08 18:11:04 +02:00
parent 70a9a0dd9a
commit 05e6ea82a3
1 changed files with 1 additions and 1 deletions

View File

@ -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: