fix of validate crash and validate dialogues and personnages

This commit is contained in:
Giovanni JOSSERAND
2025-06-21 12:28:21 +02:00
parent 2f1b9b2097
commit 04fcf40798
7 changed files with 80 additions and 146 deletions
+16
View File
@@ -37,6 +37,22 @@ QList<QString> Step::getTexte() const
return texte;
}
void Step::addPersonnage(const QString& pers) {
personnage.append(pers);
}
void Step::addTexte(const QString& txt) {
texte.append(txt);
}
void Step::clearPersonnages() {
personnage.clear();
}
void Step::clearTextes() {
texte.clear();
}
void Step::setTitle(const QString &newTitle)
{
title = newTitle;