From 8c58ffe60ff9ca8fd6ad1f8bcaabdb054fb1de72 Mon Sep 17 00:00:00 2001 From: Chantara Tith Date: Sat, 6 Aug 2016 22:20:47 +0700 Subject: [PATCH] Fix ResizeVolumeGroupJob Type. This fixes the build warnings. --- src/jobs/resizevolumegroupjob.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jobs/resizevolumegroupjob.h b/src/jobs/resizevolumegroupjob.h index bfdc643..2b5420e 100644 --- a/src/jobs/resizevolumegroupjob.h +++ b/src/jobs/resizevolumegroupjob.h @@ -54,14 +54,14 @@ protected: return m_PartList; } - const Type type() const { + ResizeVolumeGroupJob::Type type() const { return m_Type; } private: LvmDevice& m_Device; const QStringList m_PartList; - const Type m_Type; + ResizeVolumeGroupJob::Type m_Type; }; #endif