Commit 05a8d6fe authored by Claudio Valerio's avatar Claudio Valerio

the entries are not stored if are empty strings

parent feac46e0
...@@ -204,13 +204,16 @@ QVector<tIDataStorage*> UBTeacherGuideEditionWidget::save(int pageIndex) ...@@ -204,13 +204,16 @@ QVector<tIDataStorage*> UBTeacherGuideEditionWidget::save(int pageIndex)
data->name = "title"; data->name = "title";
data->type = eElementType_UNIQUE; data->type = eElementType_UNIQUE;
data->attributes.insert("value",mpPageTitle->text()); data->attributes.insert("value",mpPageTitle->text());
result << data; if(mpPageTitle->text().length()){
result << data;
}
data = new tIDataStorage(); data = new tIDataStorage();
data->name = "comment"; data->name = "comment";
data->type = eElementType_UNIQUE; data->type = eElementType_UNIQUE;
data->attributes.insert("value",mpComment->text()); data->attributes.insert("value",mpComment->text());
result << data; if(mpComment->text().length())
result << data;
QList<QTreeWidgetItem*> children = getChildrenList(mpAddAnActionItem); QList<QTreeWidgetItem*> children = getChildrenList(mpAddAnActionItem);
children << getChildrenList(mpAddAMediaItem); children << getChildrenList(mpAddAMediaItem);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment