comparison data/model/AlignmentModel.cpp @ 1693:718ce5fb9fec single-point

Merge
author Chris Cannam
date Thu, 25 Apr 2019 11:30:51 +0100
parents d08b560102a1
children 187c76c40c6f
comparison
equal deleted inserted replaced
1692:73077ec5aed6 1693:718ce5fb9fec
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 }