Skip to content

Commit

Permalink
Merge pull request #704 from mikfire/bugs/brewnotesignal
Browse files Browse the repository at this point in the history
closes #703 - brewnote signal not found
  • Loading branch information
matty0ung committed Jan 1, 2023
2 parents 40fc2af + 643f922 commit 2c1a315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BtTreeModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,7 @@ void BtTreeModel::observeElement(NamedEntity * d) {
}

if (qobject_cast<BrewNote *>(d)) {
connect(d, SIGNAL(brewDateChanged(QDateTime)), this, SLOT(elementChanged()));
connect(d, SIGNAL(brewDateChanged(const QDate &)), this, SLOT(elementChanged()));
} else {
connect(d, SIGNAL(changedName(QString)), this, SLOT(elementChanged()));
connect(d, SIGNAL(changedFolder(QString)), this, SLOT(folderChanged(QString)));
Expand Down

0 comments on commit 2c1a315

Please sign in to comment.