Mercurial > hg > svcore
diff data/model/SparseTimeValueModel.h @ 606:1415e35881f6
* Some (incomplete) Solaris build bobs
| author | Chris Cannam | 
|---|---|
| date | Thu, 10 Sep 2009 14:17:59 +0000 | 
| parents | e43368ec5ff0 | 
| children | e22b6e89a7f7 | 
line wrap: on
 line diff
--- a/data/model/SparseTimeValueModel.h Tue Sep 08 16:53:32 2009 +0000 +++ b/data/model/SparseTimeValueModel.h Thu Sep 10 14:17:59 2009 +0000 @@ -128,7 +128,7 @@ (row, column, role); } - PointListIterator i = getPointListIteratorForRow(row); + PointListConstIterator i = getPointListIteratorForRow(row); if (i == m_points.end()) return QVariant(); switch (column) { @@ -148,7 +148,7 @@ } if (role != Qt::EditRole) return false; - PointListIterator i = getPointListIteratorForRow(row); + PointListConstIterator i = getPointListIteratorForRow(row); if (i == m_points.end()) return false; EditCommand *command = new EditCommand(this, tr("Edit Data"));
