remove 's' that prevented to compile

This commit is contained in:
liranbg 2014-10-24 03:36:28 +03:00
parent ba13f4324b
commit dbbf562a0e

View file

@ -47,7 +47,7 @@ void calendarSchedule::clearTableItems()
for (i = 0; i < rowCount(); i++)
for (j = 0; j < columnCount(); j++)
if (this->takeItem(i,j) != NULL)
delete this->takeItem(i,j);s
delete this->takeItem(i,j);
this->horizontalHeader()->setSectionResizeMode(QHeaderView::Stretch);
this->resizeRowsToContents();
}