fix crash on close, some code cleanup

This commit is contained in:
2017-09-09 19:45:47 +02:00
parent c963cc37ac
commit 032e354152
3 changed files with 12 additions and 31 deletions

View File

@@ -113,7 +113,7 @@ QVariant TimeModel::data(const QModelIndex &index, int role) const
bool TimeModel::insertRows(int row, int count, const QModelIndex &parent)
{
std::cout << "insert triggert" << std::endl;
//std::cout << "insert triggert" << std::endl;
beginInsertRows(parent, row, row + count - 1);
// FIXME: Implement me!
endInsertRows();