Mercurial > hg > svgui
comparison view/Overview.cpp @ 1481:e540aa5d89cd by-id
Update for removal of (public) getId from Model
author | Chris Cannam |
---|---|
date | Fri, 05 Jul 2019 15:34:50 +0100 |
parents | 84c4ddb38415 |
children | a0b2f3b4dd2f |
comparison
equal
deleted
inserted
replaced
1480:232262e38051 | 1481:e540aa5d89cd |
---|---|
40 if (light) m_boxColour = Qt::darkGray; | 40 if (light) m_boxColour = Qt::darkGray; |
41 else m_boxColour = Qt::lightGray; | 41 else m_boxColour = Qt::lightGray; |
42 } | 42 } |
43 | 43 |
44 void | 44 void |
45 Overview::modelChangedWithin(sv_frame_t startFrame, sv_frame_t endFrame) | 45 Overview::modelChangedWithin(ModelId modelId, sv_frame_t startFrame, sv_frame_t endFrame) |
46 { | 46 { |
47 using namespace std::rel_ops; | 47 using namespace std::rel_ops; |
48 | 48 |
49 bool zoomChanged = false; | 49 bool zoomChanged = false; |
50 | 50 |
68 } else { | 68 } else { |
69 m_modelTestTime.restart(); | 69 m_modelTestTime.restart(); |
70 } | 70 } |
71 } | 71 } |
72 | 72 |
73 View::modelChangedWithin(startFrame, endFrame); | 73 View::modelChangedWithin(modelId, startFrame, endFrame); |
74 } | 74 } |
75 | 75 |
76 void | 76 void |
77 Overview::modelReplaced() | 77 Overview::modelReplaced() |
78 { | 78 { |