fix out of bound crash when edit or remove a board, add board config dialog, fix glibc version in about dialog

This commit is contained in:
Aurelie Delhaie
2023-02-20 16:51:21 +01:00
parent 93026b1373
commit 22ebe6eded
11 changed files with 364 additions and 69 deletions

View File

@@ -96,6 +96,18 @@ void Board::setDescription(const QString description)
this->description = description;
}
void Board::setDirtyStatus(Status s)
{
this->autoStatus = false;
this->statusUUID = s.getUUID();
}
void Board::removeDirtyStatus()
{
this->autoStatus = true;
this->statusUUID = "";
}
void Board::add(Task t)
{
tasks.append(new Task(t));