diff data/model/ModelDataTableModel.h @ 426:2386582f67cd

* build fix
author Chris Cannam
date Mon, 16 Jun 2008 07:55:35 +0000
parents 4caa28a0a8a2
children 72ec275e458b
line wrap: on
line diff
--- a/data/model/ModelDataTableModel.h	Fri Jun 13 21:09:43 2008 +0000
+++ b/data/model/ModelDataTableModel.h	Mon Jun 16 07:55:35 2008 +0000
@@ -66,13 +66,13 @@
     int m_sortColumn;
     Qt::SortOrder m_sortOrdering;
     typedef std::vector<int> RowList;
-    RowList m_sort;
-    RowList m_rsort;
-    int getSorted(int row);
-    int getUnsorted(int row);
-    void resort();
-    void resortNumeric();
-    void resortAlphabetical();
+    mutable RowList m_sort;
+    mutable RowList m_rsort;
+    int getSorted(int row) const;
+    int getUnsorted(int row) const;
+    void resort() const;
+    void resortNumeric() const;
+    void resortAlphabetical() const;
 };
 
 #endif