Mercurial > hg > svcore
diff data/model/AlignmentModel.cpp @ 947:cd42620e3f40
Fix some errant signals (the modelChanged with args are now modelChangedWithin)
author | Chris Cannam |
---|---|
date | Thu, 17 Jul 2014 14:50:31 +0100 |
parents | 59e7fe1b1003 |
children | 13f53ecc8bb5 |
line wrap: on
line diff
--- a/data/model/AlignmentModel.cpp Fri Jul 04 11:08:05 2014 +0100 +++ b/data/model/AlignmentModel.cpp Thu Jul 17 14:50:31 2014 +0100 @@ -37,8 +37,8 @@ connect(m_rawPath, SIGNAL(modelChanged()), this, SLOT(pathChanged())); - connect(m_rawPath, SIGNAL(modelChanged(int, int)), - this, SLOT(pathChanged(int, int))); + connect(m_rawPath, SIGNAL(modelChangedWithin(int, int)), + this, SLOT(pathChangedWithin(int, int))); connect(m_rawPath, SIGNAL(completionChanged()), this, SLOT(pathCompletionChanged())); @@ -175,7 +175,7 @@ } void -AlignmentModel::pathChanged(int, int) +AlignmentModel::pathChangedWithin(int, int) { if (!m_pathComplete) return; constructPath();