Fix ResizeVolumeGroupJob Type. This fixes the build warnings.

This commit is contained in:
Chantara Tith 2016-08-06 22:20:47 +07:00 committed by Andrius Štikonas
parent 5447768a76
commit 8c58ffe60f
1 changed files with 2 additions and 2 deletions

View File

@ -54,14 +54,14 @@ protected:
return m_PartList; return m_PartList;
} }
const Type type() const { ResizeVolumeGroupJob::Type type() const {
return m_Type; return m_Type;
} }
private: private:
LvmDevice& m_Device; LvmDevice& m_Device;
const QStringList m_PartList; const QStringList m_PartList;
const Type m_Type; ResizeVolumeGroupJob::Type m_Type;
}; };
#endif #endif