fix of validate crash and validate dialogues and personnages
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user