aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/accordion_frame.cpp
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2021-10-10 11:42:51 -0700
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-10-11 16:32:49 +0000
commite5bcf6b40223c3cfd13438861d4fb88bbd4b5934 (patch)
tree08c0d1fd310b656cbeaa39443e817c57bcd9e82d /ui/qt/accordion_frame.cpp
parent7f9b8874b5bd4bc3c1b6683a8191bdd41de1adb7 (diff)
Qt: Use new-style signals+slots in more places.
Diffstat (limited to 'ui/qt/accordion_frame.cpp')
-rw-r--r--ui/qt/accordion_frame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/accordion_frame.cpp b/ui/qt/accordion_frame.cpp
index 988bccd566..e62209861d 100644
--- a/ui/qt/accordion_frame.cpp
+++ b/ui/qt/accordion_frame.cpp
@@ -38,7 +38,7 @@ AccordionFrame::AccordionFrame(QWidget *parent) :
animation_ = new QPropertyAnimation(this, "maximumHeight", this);
animation_->setDuration(duration_);
animation_->setEasingCurve(QEasingCurve::InOutQuad);
- connect(animation_, SIGNAL(finished()), this, SLOT(animationFinished()));
+ connect(animation_, &QPropertyAnimation::finished, this, &AccordionFrame::animationFinished);
}
void AccordionFrame::animatedShow()