Mercurial > hg > svcore
comparison data/model/SparseOneDimensionalModel.h @ 345:700cd3350391
* Improvements to layer summary dialog (LayerTree, LayerTreeDialog), & rename.
It's still rather unstable though.
author | Chris Cannam |
---|---|
date | Wed, 28 Nov 2007 17:45:37 +0000 |
parents | f14e2f7b24f7 |
children | 7aa1de571880 |
comparison
equal
deleted
inserted
replaced
344:277006c62fea | 345:700cd3350391 |
---|---|
84 j != m_points.end(); ++j, ++i) { | 84 j != m_points.end(); ++j, ++i) { |
85 if (!comparator(*j, point) && !comparator(point, *j)) return i; | 85 if (!comparator(*j, point) && !comparator(point, *j)) return i; |
86 } | 86 } |
87 return -1; | 87 return -1; |
88 } | 88 } |
89 | |
90 QString getTypeName() const { return tr("Sparse 1-D"); } | |
89 }; | 91 }; |
90 | 92 |
91 #endif | 93 #endif |
92 | 94 |
93 | 95 |