"Delete part" button works correctly

Prepared functions for "Split", "MoveUp" & "MoveDown" buttons (update_model function is missing)
This commit is contained in:
YuSanka 2018-06-18 15:26:09 +02:00
parent 99082bfe67
commit 12232f1a6d
4 changed files with 101 additions and 14 deletions

View file

@ -276,7 +276,10 @@ public:
return m_type;
}
const int GetVolumeId(){
void SetVolumeId(const int& volume_id){
m_volume_id = volume_id;
}
const int& GetVolumeId(){
return m_volume_id;
}
};