Mercurial > hg > svcore
comparison data/model/AlignmentModel.cpp @ 1691:d08b560102a1 single-point
Merge from default branch
author | Chris Cannam |
---|---|
date | Wed, 24 Apr 2019 11:44:32 +0100 |
parents | e73baeead27f 901f37d32060 |
children | 187c76c40c6f |
comparison
equal
deleted
inserted
replaced
1689:d7b04b0ed056 | 1691:d08b560102a1 |
---|---|
50 } | 50 } |
51 } | 51 } |
52 | 52 |
53 AlignmentModel::~AlignmentModel() | 53 AlignmentModel::~AlignmentModel() |
54 { | 54 { |
55 SVDEBUG << "AlignmentModel(" << this << ")::~AlignmentModel()" << endl; | 55 #ifdef DEBUG_ALIGNMENT_MODEL |
56 SVCERR << "AlignmentModel(" << this << ")::~AlignmentModel()" << endl; | |
57 #endif | |
56 | 58 |
57 if (m_rawPath) m_rawPath->aboutToDelete(); | 59 if (m_rawPath) m_rawPath->aboutToDelete(); |
58 delete m_rawPath; | 60 delete m_rawPath; |
59 | 61 |
60 if (m_path) m_path->aboutToDelete(); | 62 if (m_path) m_path->aboutToDelete(); |
207 if (m_pathComplete) { | 209 if (m_pathComplete) { |
208 | 210 |
209 constructPath(); | 211 constructPath(); |
210 constructReversePath(); | 212 constructReversePath(); |
211 | 213 |
212 SVDEBUG << "AlignmentModel: path complete" << endl; | 214 #ifdef DEBUG_ALIGNMENT_MODEL |
215 SVCERR << "AlignmentModel: path complete" << endl; | |
216 #endif | |
213 } | 217 } |
214 } | 218 } |
215 | 219 |
216 emit completionChanged(); | 220 emit completionChanged(); |
217 } | 221 } |