Allow overriding the order in which patches are applied
This commit is contained in:
parent
6d9819cccf
commit
53069205fa
7 changed files with 240 additions and 0 deletions
|
@ -81,6 +81,15 @@ bool OneSixVersion::canRemove(const int index) const
|
|||
return false;
|
||||
}
|
||||
|
||||
QString OneSixVersion::versionFileId(const int index) const
|
||||
{
|
||||
if (index < 0 || index >= versionFiles.size())
|
||||
{
|
||||
return QString();
|
||||
}
|
||||
return versionFiles.at(index).id;
|
||||
}
|
||||
|
||||
bool OneSixVersion::remove(const int index)
|
||||
{
|
||||
if (canRemove(index))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue