Skip to content

Commit

Permalink
GEMSE: convert to new connect signal/slot mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
codeling committed Apr 27, 2020
1 parent ef79da6 commit 5107171
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/GEMSe/iADetailView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ iADetailView::iADetailView(
// prevWdgt->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);

connect(resetResultFilterButton, SIGNAL(clicked()), this, SLOT(ResetResultFilter()));
connect(m_pbLike, SIGNAL(clicked()), this, SIGNAL(Like()));
connect(m_pbHate, SIGNAL(clicked()), this, SIGNAL(Hate()));
connect(m_pbGoto, SIGNAL(clicked()), this, SIGNAL(GoToCluster()));
connect(m_pbLike, &QPushButton::clicked, this, &iADetailView::Like);
connect(m_pbHate, &QPushButton::clicked, this, &iADetailView::Hate);
connect(m_pbGoto, &QPushButton::clicked, this, &iADetailView::GoToCluster);
connect(m_compareWidget, SIGNAL(updated()), this, SIGNAL(ViewUpdated()));
connect(m_previewWidget, SIGNAL(updated()), this, SIGNAL(ViewUpdated()));

Expand Down

0 comments on commit 5107171

Please sign in to comment.