diff data/model/SparseTimeValueModel.h @ 740:e22b6e89a7f7

Fix conversions from false to pointer type
author Chris Cannam
date Fri, 22 Jun 2012 09:25:32 +0100
parents 1415e35881f6
children fe4772d11386
line wrap: on
line diff
--- a/data/model/SparseTimeValueModel.h	Fri May 25 14:58:21 2012 +0100
+++ b/data/model/SparseTimeValueModel.h	Fri Jun 22 09:25:32 2012 +0100
@@ -147,9 +147,9 @@
                 (row, column, value, role);
         }
 
-        if (role != Qt::EditRole) return false;
+        if (role != Qt::EditRole) return 0;
         PointListConstIterator i = getPointListIteratorForRow(row);
-        if (i == m_points.end()) return false;
+        if (i == m_points.end()) return 0;
         EditCommand *command = new EditCommand(this, tr("Edit Data"));
 
         Point point(*i);