Skip to content

Commit

Permalink
Fix remaining debug assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Mar 7, 2020
1 parent 3d22ac7 commit 234ff0a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/track/cue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,6 @@ QString Cue::getLabel() const {
}

void Cue::setLabel(const QString label) {
//qDebug() << "setLabel()" << m_label << "-" << label;
DEBUG_ASSERT(!label.isNull());
QMutexLocker lock(&m_mutex);
m_label = label;
m_bDirty = true;
Expand Down
1 change: 0 additions & 1 deletion src/track/cueinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ QString CueInfo::getLabel() const {
}

void CueInfo::setLabel(QString label) {
DEBUG_ASSERT(!label.isNull());
m_label = label;
}

Expand Down

0 comments on commit 234ff0a

Please sign in to comment.