Skip to content

Commit

Permalink
Fix a signal connection on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Jun 6, 2016
1 parent dce90a4 commit 01bfca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docks/timelinedock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ TimelineDock::TimelineDock(QWidget *parent) :
m_quickView.setResizeMode(QQuickWidget::SizeRootObjectToView);
m_quickView.setClearColor(palette().window().color());

connect(&m_model, &MultitrackModel::modified, this, &TimelineDock::clearSelectionIfInvalid);
connect(&m_model, SIGNAL(modified()), this, SLOT(clearSelectionIfInvalid()));

m_quickView.setFocusPolicy(Qt::StrongFocus);
setWidget(&m_quickView);
Expand Down

0 comments on commit 01bfca3

Please sign in to comment.