LVM support #6

Closed
andrius wants to merge 109 commits from (deleted):lvm-support-rebase into master
1 changed files with 7 additions and 6 deletions
Showing only changes of commit 428116d354 - Show all commits

View File

@ -152,6 +152,13 @@ public:
return m_LastUsable;
}
void setFirstUsableSector(qint64 s) {
m_FirstUsable = s;
}
void setLastUsableSector(qint64 s) {
m_LastUsable = s;
}
void updateUnallocated(const Device& d);
void insertUnallocated(const Device& d, PartitionNode* p, qint64 start) const;
@ -179,12 +186,6 @@ protected:
void setMaxPrimaries(qint32 n) {
m_MaxPrimaries = n;
}
void setFirstUsableSector(qint64 s) {
m_FirstUsable = s;
}
void setLastUsableSector(qint64 s) {
m_LastUsable = s;
}
private:
Partitions m_Children;